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 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
 
@@ -80,7 +80,7 @@ services:
80
80
  # - 13B model: ~8GB
81
81
  # - 30B model: ~16GB
82
82
  # - 70B model: ~40GB
83
- - ./models:/root/.ollama
83
+ - ~/.loclaude/models:/root/.ollama
84
84
 
85
85
  ports:
86
86
  # Ollama API port - access at http://localhost:11434
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "loclaude",
3
- "version": "0.0.5",
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.4"
84
+ "@loclaude-internal/cli": "^0.0.5"
85
85
  },
86
86
  "peerDependencies": {
87
87
  "typescript": "^5"