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/config.go | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'config/config.go') diff --git a/config/config.go b/config/config.go index 412eaaa..84ec480 100644 --- a/config/config.go +++ b/config/config.go @@ -34,8 +34,11 @@ type Config struct { ImagePreview bool `toml:"ImagePreview"` EnableMouse bool `toml:"EnableMouse"` // embeddings - EmbedURL string `toml:"EmbedURL"` - HFToken string `toml:"HFToken"` + EmbedURL string `toml:"EmbedURL"` + HFToken string `toml:"HFToken"` + EmbedModelPath string `toml:"EmbedModelPath"` + EmbedTokenizerPath string `toml:"EmbedTokenizerPath"` + EmbedDims int `toml:"EmbedDims"` // rag settings RAGEnabled bool `toml:"RAGEnabled"` RAGDir string `toml:"RAGDir"` -- 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/config.go | 1 - 1 file changed, 1 deletion(-) (limited to 'config/config.go') diff --git a/config/config.go b/config/config.go index 84ec480..29d5744 100644 --- a/config/config.go +++ b/config/config.go @@ -40,7 +40,6 @@ type Config struct { EmbedTokenizerPath string `toml:"EmbedTokenizerPath"` EmbedDims int `toml:"EmbedDims"` // rag settings - RAGEnabled bool `toml:"RAGEnabled"` RAGDir string `toml:"RAGDir"` RAGBatchSize int `toml:"RAGBatchSize"` RAGWordLimit uint32 `toml:"RAGWordLimit"` -- 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/config.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'config/config.go') diff --git a/config/config.go b/config/config.go index 29d5744..fab3237 100644 --- a/config/config.go +++ b/config/config.go @@ -40,9 +40,10 @@ type Config struct { EmbedTokenizerPath string `toml:"EmbedTokenizerPath"` EmbedDims int `toml:"EmbedDims"` // rag settings - RAGDir string `toml:"RAGDir"` - RAGBatchSize int `toml:"RAGBatchSize"` - RAGWordLimit uint32 `toml:"RAGWordLimit"` + RAGDir string `toml:"RAGDir"` + RAGBatchSize int `toml:"RAGBatchSize"` + RAGWordLimit uint32 `toml:"RAGWordLimit"` + RAGOverlapWords uint32 `toml:"RAGOverlapWords"` // deepseek DeepSeekChatAPI string `toml:"DeepSeekChatAPI"` DeepSeekCompletionAPI string `toml:"DeepSeekCompletionAPI"` -- cgit v1.2.3 From 23cb8f2578540e698f590bed35f973a22a8c2f90 Mon Sep 17 00:00:00 2001 From: Grail Finder Date: Sun, 8 Mar 2026 06:45:51 +0300 Subject: Chore: remove AutoCleanToolCallsFromCtx, atomic model color --- config/config.go | 1 - 1 file changed, 1 deletion(-) (limited to 'config/config.go') diff --git a/config/config.go b/config/config.go index fab3237..e8c2687 100644 --- a/config/config.go +++ b/config/config.go @@ -27,7 +27,6 @@ type Config struct { WriteNextMsgAs string WriteNextMsgAsCompletionAgent string SkipLLMResp bool - AutoCleanToolCallsFromCtx bool `toml:"AutoCleanToolCallsFromCtx"` DBPATH string `toml:"DBPATH"` FilePickerDir string `toml:"FilePickerDir"` FilePickerExts string `toml:"FilePickerExts"` -- cgit v1.2.3