diff options
| author | Grail Finder <wohilas@gmail.com> | 2026-01-05 09:04:32 +0300 |
|---|---|---|
| committer | Grail Finder <wohilas@gmail.com> | 2026-01-05 09:04:32 +0300 |
| commit | 0ed6b240d9725223a093d71b18dcb8eeee6960f2 (patch) | |
| tree | 497685815a1262779b890e8a8c7ffaf7b2db9c92 /config | |
| parent | e52daa8f97d15c1f3efc8b3434684fa958dc52a3 (diff) | |
Doc: config
Diffstat (limited to 'config')
| -rw-r--r-- | config/config.go | 20 |
1 files changed, 7 insertions, 13 deletions
diff --git a/config/config.go b/config/config.go index ff428c9..1454b4c 100644 --- a/config/config.go +++ b/config/config.go @@ -7,18 +7,12 @@ import ( ) type Config struct { - EnableCluedo bool `toml:"EnableCluedo"` // Cluedo game mode toggle - CluedoRole2 string `toml:"CluedoRole2"` // Secondary AI role name - ChatAPI string `toml:"ChatAPI"` - CompletionAPI string `toml:"CompletionAPI"` - CurrentAPI string - CurrentModel string `toml:"CurrentModel"` - APIMap map[string]string - FetchModelNameAPI string `toml:"FetchModelNameAPI"` - // ToolsAPI list? - SearchAPI string `toml:"SearchAPI"` - SearchDescribe string `toml:"SearchDescribe"` - // + ChatAPI string `toml:"ChatAPI"` + CompletionAPI string `toml:"CompletionAPI"` + CurrentAPI string + CurrentModel string `toml:"CurrentModel"` + APIMap map[string]string + FetchModelNameAPI string `toml:"FetchModelNameAPI"` ShowSys bool `toml:"ShowSys"` LogFile string `toml:"LogFile"` UserRole string `toml:"UserRole"` @@ -32,7 +26,7 @@ type Config struct { WriteNextMsgAs string WriteNextMsgAsCompletionAgent string SkipLLMResp bool - AutoCleanToolCallsFromCtx bool `toml:"AutoCleanToolCallsFromCtx"` + AutoCleanToolCallsFromCtx bool `toml:"AutoCleanToolCallsFromCtx"` // embeddings RAGEnabled bool `toml:"RAGEnabled"` EmbedURL string `toml:"EmbedURL"` |
