You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,14 +25,14 @@ CodeGraph now writes Ollama/LM Studio embeddings directly into SurrealDB’s ded
25
25
26
26
```bash
27
27
export CODEGRAPH_EMBEDDING_PROVIDER=ollama
28
-
export CODEGRAPH_EMBEDDING_MODEL=qwen3-embedding:0.6b # or all-mini-llm, qwen3-embedding:4b, etc.
29
-
export CODEGRAPH_EMBEDDING_DIMENSION=1024 # 384, 1024, 2048, or 4096
28
+
export CODEGRAPH_EMBEDDING_MODEL=qwen3-embedding:0.6b # or all-mini-llm, qwen3-embedding:4b, embeddinggemma etc.
29
+
export CODEGRAPH_EMBEDDING_DIMENSION=1024 # 384, 768, 1024, 2048, or 4096
30
30
31
31
# Optional local reranking (LM Studio exposes an OpenAI-compatible reranker endpoint)
32
32
export CODEGRAPH_RERANKING_PROVIDER=lmstudio
33
33
```
34
34
35
-
We automatically route embeddings to `embedding_384`, `embedding_1024`, `embedding_2048`, or `embedding_4096` and keep reranking disabled unless a provider is configured. No FAISS/RocksDB plumbing is needed for MCP anymore.
35
+
We automatically route embeddings to `embedding_384`, `embedding_768`, `embedding_1024`, `embedding_2048`, or `embedding_4096` and keep reranking disabled unless a provider is configured. No FAISS/RocksDB plumbing is needed for MCP anymore.
36
36
37
37
---
38
38
@@ -752,7 +752,7 @@ CodeGraph uses feature flags to enable only the components you need. Build with
752
752
| Feature | Provider | Models/Notes |
753
753
|---------|----------|--------------|
754
754
|`embeddings-local`| ONNX Runtime | Local CPU/GPU embeddings (all-MiniLM-L6-v2, etc.) |
755
-
|`embeddings-ollama`| Ollama | Local embeddings (qwen3-embedding, all-mini-llm, etc.) |
755
+
|`embeddings-ollama`| Ollama | Local embeddings (qwen3-embedding, all-mini-llm, embeddinggemma etc.) |
0 commit comments