loclaude 0.0.5 → 0.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/README.md +4 -0
- package/docker/docker-compose.yml +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.0.6] - 2025-02-18
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- Default docker volume directory changed from `{{cwd}}/models` to `$HOME/.loclaude/models` to allow for cross-workspace model caching
|
|
15
|
+
|
|
16
|
+
### Added
|
|
17
|
+
|
|
18
|
+
- Adds `models#path` configuration options to `.loclaude/config.json`
|
|
19
|
+
- Adds support for setting `models#path` via environment variable `LOCLAUDE_MODELS_PATH`
|
|
20
|
+
|
|
10
21
|
## [0.0.5] - 2025-01-22
|
|
11
22
|
|
|
12
23
|
### Added
|
package/README.md
CHANGED
|
@@ -212,6 +212,9 @@ Example config:
|
|
|
212
212
|
"url": "http://localhost:11434",
|
|
213
213
|
"defaultModel": "qwen3-coder:30b"
|
|
214
214
|
},
|
|
215
|
+
"models": {
|
|
216
|
+
"path": "./models"
|
|
217
|
+
},
|
|
215
218
|
"docker": {
|
|
216
219
|
"composeFile": "./docker-compose.yml",
|
|
217
220
|
"gpu": true
|
|
@@ -230,6 +233,7 @@ Example config:
|
|
|
230
233
|
| `OLLAMA_MODEL` | Default model name | `qwen3-coder:30b` |
|
|
231
234
|
| `LOCLAUDE_COMPOSE_FILE` | Path to docker-compose.yml | `./docker-compose.yml` |
|
|
232
235
|
| `LOCLAUDE_GPU` | Enable GPU (`true`/`false`) | `true` |
|
|
236
|
+
| `LOCLAUDE_MODELS_PATH` | Path to ollama models docker volume | `$HOME/.loclaude/models` |
|
|
233
237
|
|
|
234
238
|
### Priority
|
|
235
239
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "loclaude",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6",
|
|
4
4
|
"description": "Claude Code with local Ollama LLMs - Zero API costs, no rate limits, complete privacy",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "./LICENSE",
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
"postrelease": "export LOCLAUDE_RELEASE_VERSION=\"$(jq -r .version package.json)\" && ./scripts/release-commit.sh $LOCLAUDE_RELEASE_VERSION && ./scripts/tag.sh $LOCLAUDE_RELEASE_VERSION"
|
|
82
82
|
},
|
|
83
83
|
"dependencies": {
|
|
84
|
-
"@loclaude-internal/cli": "^0.0.
|
|
84
|
+
"@loclaude-internal/cli": "^0.0.5"
|
|
85
85
|
},
|
|
86
86
|
"peerDependencies": {
|
|
87
87
|
"typescript": "^5"
|