diff options
author | Grail Finder <wohilas@gmail.com> | 2024-12-02 19:58:03 +0300 |
---|---|---|
committer | Grail Finder <wohilas@gmail.com> | 2024-12-02 19:58:03 +0300 |
commit | a5ab816c9434022159548ac0d1872160b3c8908d (patch) | |
tree | a4e68c334f2a514f02afd65a1bb70eff415fb8cd /config/config.go | |
parent | 8d3997baff25f28c23441699be7692f853cf1f0f (diff) |
Feat: add character card support
Diffstat (limited to 'config/config.go')
-rw-r--r-- | config/config.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/config/config.go b/config/config.go index 7b6cfc0..0c62e76 100644 --- a/config/config.go +++ b/config/config.go @@ -17,6 +17,7 @@ type Config struct { UserIcon string `toml:"UserIcon"` ToolIcon string `toml:"ToolIcon"` ChunkLimit uint32 `toml:"ChunkLimit"` + SysDir string `toml:"SysDir"` } func LoadConfigOrDefault(fn string) *Config { @@ -34,6 +35,7 @@ func LoadConfigOrDefault(fn string) *Config { config.ToolRole = "tool" config.AssistantRole = "assistant" config.ChunkLimit = 8192 + config.SysDir = "sysprompts" } return config } |