summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
Diffstat (limited to 'config')
-rw-r--r--config/config.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/config/config.go b/config/config.go
index 10e43da..c5f63a9 100644
--- a/config/config.go
+++ b/config/config.go
@@ -36,11 +36,11 @@ type Config struct {
ImagePreview bool `toml:"ImagePreview"`
EnableMouse bool `toml:"EnableMouse"`
// embeddings
- RAGEnabled bool `toml:"RAGEnabled"`
- EmbedURL string `toml:"EmbedURL"`
- HFToken string `toml:"HFToken"`
- RAGDir string `toml:"RAGDir"`
+ EmbedURL string `toml:"EmbedURL"`
+ HFToken string `toml:"HFToken"`
// rag settings
+ RAGEnabled bool `toml:"RAGEnabled"`
+ RAGDir string `toml:"RAGDir"`
RAGWorkers uint32 `toml:"RAGWorkers"`
RAGBatchSize int `toml:"RAGBatchSize"`
RAGWordLimit uint32 `toml:"RAGWordLimit"`