diff options
author | Grail Finder <wohilas@gmail.com> | 2025-02-02 17:58:07 +0300 |
---|---|---|
committer | Grail Finder <wohilas@gmail.com> | 2025-02-02 17:58:07 +0300 |
commit | eb53b13381b6f86e8b0584b8bdc980414dbf92df (patch) | |
tree | 956e166e45a8f13d79846b604eb04fb8cd979079 /config/config.go | |
parent | 7ca188dcdc9e98e3222a05a160006c76c1b84862 (diff) |
Refactor: remove icons
Diffstat (limited to 'config/config.go')
-rw-r--r-- | config/config.go | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/config/config.go b/config/config.go index 2e48f34..ddb0d91 100644 --- a/config/config.go +++ b/config/config.go @@ -18,9 +18,6 @@ type Config struct { ToolRole string `toml:"ToolRole"` ToolUse bool `toml:"ToolUse"` AssistantRole string `toml:"AssistantRole"` - AssistantIcon string `toml:"AssistantIcon"` - UserIcon string `toml:"UserIcon"` - ToolIcon string `toml:"ToolIcon"` SysDir string `toml:"SysDir"` ChunkLimit uint32 `toml:"ChunkLimit"` // embeddings @@ -47,9 +44,6 @@ func LoadConfigOrDefault(fn string) *Config { config.UserRole = "user" config.ToolRole = "tool" config.AssistantRole = "assistant" - config.AssistantIcon = "<assistant>: " - config.UserIcon = "<user>: " - config.UserIcon = "<tool>: " config.SysDir = "sysprompts" config.ChunkLimit = 8192 } |