From eb53b13381b6f86e8b0584b8bdc980414dbf92df Mon Sep 17 00:00:00 2001 From: Grail Finder Date: Sun, 2 Feb 2025 17:58:07 +0300 Subject: Refactor: remove icons --- config/config.go | 6 ------ 1 file changed, 6 deletions(-) (limited to 'config/config.go') 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 = ": " - config.UserIcon = ": " - config.UserIcon = ": " config.SysDir = "sysprompts" config.ChunkLimit = 8192 } -- cgit v1.2.3