From b072adf2d7878baf1d88e65913a128358405628f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sun, 12 Apr 2026 17:13:25 +0200 Subject: [PATCH] fix(config): add groq whisper example for voice transcription Shows correct model entry format (openai/ prefix + api_base override) needed to route Groq Whisper requests properly. Co-Authored-By: Claude Sonnet 4.6 --- config/config.example.json | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/config/config.example.json b/config/config.example.json index fdb1bf8eb..bef0b2f5b 100644 --- a/config/config.example.json +++ b/config/config.example.json @@ -85,6 +85,12 @@ "model": "openai/gpt-5.4", "api_key": "sk-key2", "api_base": "https://api2.example.com/v1" + }, + { + "model_name": "groq-whisper", + "model": "openai/whisper-large-v3-turbo", + "api_key": "your-groq-api-key", + "api_base": "https://api.groq.com/openai/v1" } ], "channels": { @@ -490,7 +496,7 @@ "monitor_usb": true }, "voice": { - "model_name": "", + "model_name": "groq-whisper", "echo_transcription": false }, "hooks": {