diff options
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 110cd75..76d7519 100644 --- a/config/config.go +++ b/config/config.go @@ -53,6 +53,7 @@ type Config struct { // STT STT_URL string `toml:"STT_URL"` STT_ENABLED bool `toml:"STT_ENABLED"` + DBPATH string `toml:"DBPATH"` } func LoadConfigOrDefault(fn string) *Config { @@ -78,6 +79,7 @@ func LoadConfigOrDefault(fn string) *Config { config.AssistantRole = "assistant" config.SysDir = "sysprompts" config.ChunkLimit = 8192 + config.DBPATH = "gflt.db" // config.RAGBatchSize = 100 config.RAGWordLimit = 80 |