Skip to content

Commit 4a2b665

Browse files
jkyberneeesclaude
andcommitted
chore(docker): make embeddings + searxng integration settings explicit
Both bundled configs already wired memory.embedding -> the llama.cpp sidecar and web_search -> the SearXNG sidecar; make those integration settings explicit and more robust: - memory.embedding: pin dims: 768 (nomic-embed-text-v1.5's output) so the HTTPEmbedder validates every response length and the index fingerprint is dimension-aware — a silent model dim change forces an explicit rebuild instead of self-healing to no-context. Add explicit timeout_seconds: 10. - web_search: add explicit timeout_seconds: 15 (the SearXNG query ceiling), so it is visible and tunable rather than relying on the implicit default. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
1 parent 9d824f9 commit 4a2b665

2 files changed

Lines changed: 10 additions & 4 deletions

File tree

docker/config.godmode.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818
},
1919
"web_search": {
2020
"base_url": "http://searxng:8080",
21-
"max_results": 10
21+
"max_results": 10,
22+
"timeout_seconds": 15
2223
},
2324
"memory": {
2425
"enabled": true,
@@ -36,7 +37,9 @@
3637
"embedding": {
3738
"provider": "http",
3839
"base_url": "http://llama-embeddings:8080/v1",
39-
"model": "nomic-embed-text-v1.5"
40+
"model": "nomic-embed-text-v1.5",
41+
"dims": 768,
42+
"timeout_seconds": 10
4043
}
4144
},
4245
"dangerous": {

docker/config.restricted.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818
},
1919
"web_search": {
2020
"base_url": "http://searxng:8080",
21-
"max_results": 10
21+
"max_results": 10,
22+
"timeout_seconds": 15
2223
},
2324
"memory": {
2425
"enabled": true,
@@ -36,7 +37,9 @@
3637
"embedding": {
3738
"provider": "http",
3839
"base_url": "http://llama-embeddings:8080/v1",
39-
"model": "nomic-embed-text-v1.5"
40+
"model": "nomic-embed-text-v1.5",
41+
"dims": 768,
42+
"timeout_seconds": 10
4043
}
4144
},
4245
"dangerous": {

0 commit comments

Comments
 (0)