summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorGrail Finder <wohilas@gmail.com>2026-01-08 09:28:16 +0300
committerGrail Finder <wohilas@gmail.com>2026-01-08 09:28:16 +0300
commit51916895789fc2b166af752c14cd4696d6517bec (patch)
tree584d8612449a8a2e4185211ba9a9581e358d8386 /config
parent5f0de6f3112d2bbda6af408cc5d6e51c0a752f88 (diff)
Feat: google-translate-tts support
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"`