summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
Diffstat (limited to 'config')
-rw-r--r--config/config.go8
1 files changed, 5 insertions, 3 deletions
diff --git a/config/config.go b/config/config.go
index 1454b4c..dc769d3 100644
--- a/config/config.go
+++ b/config/config.go
@@ -48,9 +48,11 @@ type Config struct {
OpenRouterToken string `toml:"OpenRouterToken"`
OpenRouterModel string `toml:"OpenRouterModel"`
// TTS
- TTS_URL string `toml:"TTS_URL"`
- TTS_ENABLED bool `toml:"TTS_ENABLED"`
- TTS_SPEED float32 `toml:"TTS_SPEED"`
+ TTS_URL string `toml:"TTS_URL"`
+ TTS_ENABLED bool `toml:"TTS_ENABLED"`
+ TTS_SPEED float32 `toml:"TTS_SPEED"`
+ TTS_PROVIDER string `toml:"TTS_PROVIDER"`
+ TTS_LANGUAGE string `toml:"TTS_LANGUAGE"`
// STT
STT_TYPE string `toml:"STT_TYPE"` // WHISPER_SERVER, WHISPER_BINARY
STT_URL string `toml:"STT_URL"`