summaryrefslogtreecommitdiff
path: root/config/config.go
diff options
context:
space:
mode:
authorGrail Finder <wohilas@gmail.com>2025-05-19 09:42:47 +0300
committerGrail Finder <wohilas@gmail.com>2025-05-19 09:42:47 +0300
commita7e7da6f9965624e4667ecedd23f2eb073ac2f56 (patch)
tree2046f8ed77ccf0d47fe0a074691f8138f8419d51 /config/config.go
parent2e5755c28a86c525041cb952764425ad82411ec7 (diff)
Feat: stop audio [WIP]
Diffstat (limited to 'config/config.go')
-rw-r--r--config/config.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/config/config.go b/config/config.go
index ccae96d..e612aa7 100644
--- a/config/config.go
+++ b/config/config.go
@@ -40,8 +40,9 @@ type Config struct {
DeepSeekModel string `toml:"DeepSeekModel"`
ApiLinks []string
// TTS
- TTS_URL string `toml:"TTS_URL"`
- TTS_ENABLED bool `toml:"TTS_ENABLED"`
+ TTS_URL string `toml:"TTS_URL"`
+ TTS_ENABLED bool `toml:"TTS_ENABLED"`
+ TTS_SPEED float32 `toml:"TTS_SPEED"`
// STT
STT_URL string `toml:"STT_URL"`
STT_ENABLED bool `toml:"STT_ENABLED"`