From ac8c8bb0558a00cf0d025ab8522aaa57b8cba7de Mon Sep 17 00:00:00 2001 From: Grail Finder Date: Thu, 5 Mar 2026 19:20:21 +0300 Subject: Enha: onnx config vars --- config.example.toml | 3 +++ 1 file changed, 3 insertions(+) (limited to 'config.example.toml') diff --git a/config.example.toml b/config.example.toml index 39a730b..f5820da 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" -- cgit v1.2.3 From e1f2a8cd7be487a3b4284ca70cc5a2a64b50f5d1 Mon Sep 17 00:00:00 2001 From: Grail Finder Date: Fri, 6 Mar 2026 07:46:15 +0300 Subject: Chore: remove unused RagEnabled var --- config.example.toml | 1 - 1 file changed, 1 deletion(-) (limited to 'config.example.toml') diff --git a/config.example.toml b/config.example.toml index f5820da..15c8ca6 100644 --- a/config.example.toml +++ b/config.example.toml @@ -27,7 +27,6 @@ ChunkLimit = 100000 AutoScrollEnabled = true AutoCleanToolCallsFromCtx = false # rag settings -RAGEnabled = false RAGBatchSize = 1 RAGWordLimit = 80 RAGDir = "ragimport" -- cgit v1.2.3 From f9866bcf5a7369e28246d51b951e81b5b2a8489f Mon Sep 17 00:00:00 2001 From: Grail Finder Date: Fri, 6 Mar 2026 11:20:50 +0300 Subject: Feat (rag): hybrid search attempt --- config.example.toml | 1 + 1 file changed, 1 insertion(+) (limited to 'config.example.toml') diff --git a/config.example.toml b/config.example.toml index 15c8ca6..1698189 100644 --- a/config.example.toml +++ b/config.example.toml @@ -29,6 +29,7 @@ AutoCleanToolCallsFromCtx = false # rag settings RAGBatchSize = 1 RAGWordLimit = 80 +RAGOverlapWords = 16 RAGDir = "ragimport" # extra tts TTS_ENABLED = false -- cgit v1.2.3 From b6e802c12e37aeaf19bd449cf2877df5ae04d389 Mon Sep 17 00:00:00 2001 From: Grail Finder Date: Sun, 8 Mar 2026 11:38:56 +0300 Subject: Enha (rag): bigger default batch --- config.example.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'config.example.toml') diff --git a/config.example.toml b/config.example.toml index 1698189..f74d986 100644 --- a/config.example.toml +++ b/config.example.toml @@ -28,8 +28,8 @@ AutoScrollEnabled = true AutoCleanToolCallsFromCtx = false # rag settings RAGBatchSize = 1 -RAGWordLimit = 80 -RAGOverlapWords = 16 +RAGWordLimit = 250 +RAGOverlapWords = 25 RAGDir = "ragimport" # extra tts TTS_ENABLED = false -- cgit v1.2.3