From 7c4d0579943365dd363b659135e7db8c9fca474e Mon Sep 17 00:00:00 2001 From: Grail Finder Date: Sat, 7 Dec 2024 12:53:35 +0300 Subject: Fix: resolve points on the fixlist --- config/config.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'config') diff --git a/config/config.go b/config/config.go index 0c62e76..0561d51 100644 --- a/config/config.go +++ b/config/config.go @@ -16,8 +16,8 @@ type Config struct { AssistantIcon string `toml:"AssistantIcon"` UserIcon string `toml:"UserIcon"` ToolIcon string `toml:"ToolIcon"` - ChunkLimit uint32 `toml:"ChunkLimit"` SysDir string `toml:"SysDir"` + ChunkLimit uint32 `toml:"ChunkLimit"` } func LoadConfigOrDefault(fn string) *Config { @@ -34,8 +34,8 @@ func LoadConfigOrDefault(fn string) *Config { config.UserRole = "user" config.ToolRole = "tool" config.AssistantRole = "assistant" - config.ChunkLimit = 8192 config.SysDir = "sysprompts" + config.ChunkLimit = 8192 } return config } -- cgit v1.2.3