diff options
Diffstat (limited to 'config.example.toml')
| -rw-r--r-- | config.example.toml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/config.example.toml b/config.example.toml index 39a730b..f74d986 100644 --- a/config.example.toml +++ b/config.example.toml @@ -13,6 +13,9 @@ OpenRouterChatAPI = "https://openrouter.ai/api/v1/chat/completions" # embeddings EmbedURL = "http://localhost:8082/v1/embeddings" HFToken = "" +EmbedModelPath = "onnx/embedgemma/model_q4.onnx" +EmbedTokenizerPath = "onnx/embedgemma/tokenizer.json" +EmbedDims = 768 # ShowSys = true LogFile = "log.txt" @@ -24,9 +27,9 @@ ChunkLimit = 100000 AutoScrollEnabled = true AutoCleanToolCallsFromCtx = false # rag settings -RAGEnabled = false RAGBatchSize = 1 -RAGWordLimit = 80 +RAGWordLimit = 250 +RAGOverlapWords = 25 RAGDir = "ragimport" # extra tts TTS_ENABLED = false |
