Skip to content

Commit 5be0e02

Browse files
authored
Merge pull request #31 from iambenkay/project-restructure
chore: restructure project into sub domains and move llm crates
2 parents 6f7c34d + 2738eae commit 5be0e02

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

85 files changed

+385
-1115
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ jobs:
137137
- name: Build and test Ollama integration
138138
run: |
139139
set -e
140-
cargo make build-ollama
140+
cargo make --cwd llm build-ollama
141141
cd test
142142
golem-cli app build -b ollama-debug
143143
golem-cli app deploy -b ollama-debug

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
openapi
44
target
55
tmp
6-
components
6+
components

Cargo.toml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
resolver = "2"
33

44
members = [
5-
"llm",
6-
"llm-anthropic",
7-
"llm-grok",
8-
"llm-ollama",
9-
"llm-openai",
10-
"llm-openrouter",
5+
"llm/llm",
6+
"llm/anthropic",
7+
"llm/grok",
8+
"llm/ollama",
9+
"llm/openai",
10+
"llm/openrouter",
1111
]
1212

1313
[profile.release]
@@ -18,6 +18,7 @@ opt-level = 's'
1818
[workspace.dependencies]
1919
golem-rust = "1.6.0"
2020
log = "0.4.27"
21+
golem-llm = { path = "llm/llm", version = "0.0.0", default-features = false }
2122
reqwest = { git = "https://github.com/golemcloud/reqwest", branch = "update-may-2025", features = [
2223
"json",
2324
] }

0 commit comments

Comments
 (0)