Skip to content

Commit 525c644

Browse files
committed
Move example files
Signed-off-by: Michael Yuan <[email protected]>
1 parent 37ba250 commit 525c644

File tree

2 files changed

+14
-6
lines changed

2 files changed

+14
-6
lines changed
Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,30 @@
11
addr = "0.0.0.0:9090"
22
hello_wav = "hello.wav"
33

4+
# Requires a local gsv_tts server at port 9094: https://github.com/second-state/gsv_tts
45
[tts]
56
platform = "StreamGSV"
67
url = "http://localhost:9094/v1/audio/stream_speech"
78
speaker = "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
1318
vad_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]]
2129
server = "http://localhost:8000/mcp"
2230
type = "http_streamable"

0 commit comments

Comments
 (0)