summaryrefslogtreecommitdiff
path: root/config/config.go
diff options
context:
space:
mode:
authorGrail Finder <wohilas@gmail.com>2025-08-20 22:45:41 +0300
committerGrail Finder <wohilas@gmail.com>2025-08-20 22:45:41 +0300
commiteee5e83d329fa9a19cf04ba290102ea650aca580 (patch)
tree79b20b29dd6db0f1c4c2ace8a1a3bbebd1378d94 /config/config.go
parent6955a5bc3a89e982f0b05d1e8e6f109e3b79d9ca (diff)
Feat: bot to write for any char in chat (completion only)
Diffstat (limited to 'config/config.go')
-rw-r--r--config/config.go23
1 files changed, 12 insertions, 11 deletions
diff --git a/config/config.go b/config/config.go
index 76d7519..cc6e0de 100644
--- a/config/config.go
+++ b/config/config.go
@@ -15,17 +15,18 @@ type Config struct {
CurrentProvider string
APIMap map[string]string
//
- ShowSys bool `toml:"ShowSys"`
- LogFile string `toml:"LogFile"`
- UserRole string `toml:"UserRole"`
- ToolRole string `toml:"ToolRole"`
- ToolUse bool `toml:"ToolUse"`
- ThinkUse bool `toml:"ThinkUse"`
- AssistantRole string `toml:"AssistantRole"`
- SysDir string `toml:"SysDir"`
- ChunkLimit uint32 `toml:"ChunkLimit"`
- WriteNextMsgAs string
- SkipLLMResp bool
+ ShowSys bool `toml:"ShowSys"`
+ LogFile string `toml:"LogFile"`
+ UserRole string `toml:"UserRole"`
+ ToolRole string `toml:"ToolRole"`
+ ToolUse bool `toml:"ToolUse"`
+ ThinkUse bool `toml:"ThinkUse"`
+ AssistantRole string `toml:"AssistantRole"`
+ SysDir string `toml:"SysDir"`
+ ChunkLimit uint32 `toml:"ChunkLimit"`
+ WriteNextMsgAs string
+ WriteNextMsgAsCompletionAgent string
+ SkipLLMResp bool
// embeddings
RAGEnabled bool `toml:"RAGEnabled"`
EmbedURL string `toml:"EmbedURL"`