diff options
Diffstat (limited to 'config/config.go')
-rw-r--r-- | config/config.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/config/config.go b/config/config.go index 0561d51..074bfda 100644 --- a/config/config.go +++ b/config/config.go @@ -34,8 +34,12 @@ 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 } + // if any value is empty fill with default return config } |