File tree Expand file tree Collapse file tree 2 files changed +14
-6
lines changed
Expand file tree Collapse file tree 2 files changed +14
-6
lines changed File renamed without changes.
Original file line number Diff line number Diff line change 11addr = " 0.0.0.0:9090"
22hello_wav = " hello.wav"
33
4+ # Requires a local gsv_tts server at port 9094: https://github.com/second-state/gsv_tts
45[tts ]
56platform = " StreamGSV"
67url = " http://localhost:9094/v1/audio/stream_speech"
78speaker = " cooper"
89
10+ # Use Groq for fast ASR here
911[asr ]
10- url = " http://localhost:9092/v1/audio/transcriptions"
11- lang = " auto"
12- # vad_url = "http://localhost:9093/v1/audio/vad"
12+ url = " https://api.groq.com/openai/v1/audio/transcriptions"
13+ api_key = " gsk_ABCD"
14+ model = " whisper-large-v3"
15+ lang = " en"
16+ prompt = " Hello\n 你好\n (noise)\n (bgm)\n (silence)\n "
17+ # Requires a local Silero VAD server at port 9093: https://github.com/second-state/silero_vad_server
1318vad_realtime_url = " ws://localhost:9093/v1/audio/realtime_vad"
1419
20+ # Use Groq for fast LLM here
1521[llm ]
16- llm_chat_url = " http://localhost:9091/v1/chat/completions"
17- api_key = " Bearer gaia-1234"
18- history = 5
22+ llm_chat_url = " https://api.groq.com/openai/v1/chat/completions"
23+ api_key = " gsk_ABCD"
24+ model = " openai/gpt-oss-20b"
25+ history = 10
1926
27+ # Requires an MCP server running at port 8000
2028[[llm .mcp_server ]]
2129server = " http://localhost:8000/mcp"
2230type = " http_streamable"
You can’t perform that action at this time.
0 commit comments