Skip to content

Commit 1f320ad

Browse files
committed
Use the correct VAD service
Signed-off-by: Michael Yuan <[email protected]>
1 parent dfa2beb commit 1f320ad

File tree

5 files changed

+10
-6
lines changed

5 files changed

+10
-6
lines changed

config.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ speaker = "speaker2"
2323
# lang = "zh"
2424
# api_key = "gsk_xxx"
2525
# model = "whisper-large-v3-turbo"
26+
# vad_url = "http://localhost:9093/v1/audio/vad"
2627
# vad_realtime_url = "ws://localhost:9093/v1/audio/realtime_vad"
2728

2829
[asr]
2930
url = "https://whisper.gaia.domains/v1/audio/transcriptions"
3031
lang = "auto"
3132
prompt = "Hello\n你好\n(noise)\n(bgm)\n(silence)\n"
32-
# vad_url = "http://localhost:9093/v1/audio/vad"
33-
vad_realtime_url = "ws://localhost:9093/v1/audio/realtime_vad"
33+
vad_url = "http://localhost:9093/v1/audio/vad"
3434

3535
# [llm]
3636
# llm_chat_url = "https://api.groq.com/openai/v1/chat/completions"

docker/server-vad/config.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ lang = "en"
1515
prompt = "Hello\n你好\n(noise)\n(bgm)\n(silence)\n"
1616
# Requires a local Silero VAD server: https://github.com/second-state/silero_vad_server
1717
# Default port is 8000, but some setups may use 9093. Update the port below if needed.
18-
vad_realtime_url = "ws://localhost:8000/v1/audio/realtime_vad"
18+
vad_url = "http://localhost:8000/v1/audio/vad"
19+
# vad_realtime_url = "ws://localhost:8000/v1/audio/realtime_vad"
1920

2021
[llm]
2122
llm_chat_url = "https://api.groq.com/openai/v1/chat/completions"

examples/gaia/config.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ speaker = "cooper"
1212
url = "http://localhost:9092/v1/audio/transcriptions"
1313
lang = "auto"
1414
# Requires a local Silero VAD server at port 9093: https://github.com/second-state/silero_vad_server
15-
vad_realtime_url = "ws://localhost:9093/v1/audio/realtime_vad"
15+
vad_url = "http://localhost:9093/v1/audio/vad"
16+
# vad_realtime_url = "ws://localhost:9093/v1/audio/realtime_vad"
1617

1718
# Requires a local LlamaEdge API server at port 9091: https://llamaedge.com/docs/ai-models/llm/quick-start-llm
1819
[llm]

examples/groq/config.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ model = "whisper-large-v3"
1414
lang = "en"
1515
prompt = "Hello\n你好\n(noise)\n(bgm)\n(silence)\n"
1616
# Requires a local Silero VAD server: https://github.com/second-state/silero_vad_server
17-
vad_realtime_url = "ws://localhost:9093/v1/audio/realtime_vad"
17+
vad_url = "http://localhost:9093/v1/audio/vad"
18+
# vad_realtime_url = "ws://localhost:9093/v1/audio/realtime_vad"
1819

1920
[llm]
2021
llm_chat_url = "https://api.groq.com/openai/v1/chat/completions"

examples/mcp/config.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ model = "whisper-large-v3"
1515
lang = "en"
1616
prompt = "Hello\n你好\n(noise)\n(bgm)\n(silence)\n"
1717
# Requires a local Silero VAD server at port 9093: https://github.com/second-state/silero_vad_server
18-
vad_realtime_url = "ws://localhost:9093/v1/audio/realtime_vad"
18+
vad_url = "http://localhost:9093/v1/audio/vad"
19+
# vad_realtime_url = "ws://localhost:9093/v1/audio/realtime_vad"
1920

2021
# Use Groq for fast LLM here
2122
[llm]

0 commit comments

Comments
 (0)