Skip to content

Commit 37ba250

Browse files
authored
Update config.toml
1 parent fe1fcf6 commit 37ba250

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

examples/gaia/chat/config.toml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,24 @@
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+
# Requires a local Whisper API server at port 9092: https://llamaedge.com/docs/ai-models/speech-to-text/quick-start-whisper
911
[asr]
1012
url = "http://localhost:9092/v1/audio/transcriptions"
1113
lang = "auto"
12-
# vad_url = "http://localhost:8000/v1/audio/vad"
13-
14-
# if you want to open server_vad in realtime mode, you can uncomment the following line
15-
# vad_realtime_url = "ws://localhost:8000/v1/audio/realtime_vad"
16-
14+
# 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"
1716

17+
# Requires a local LlamaEdge API server at port 9091: https://llamaedge.com/docs/ai-models/llm/quick-start-llm
1818
[llm]
1919
llm_chat_url = "http://localhost:9091/v1/chat/completions"
2020
api_key = "Bearer gaia-1234"
21+
model = "default"
2122
history = 5
2223

2324
[[llm.sys_prompts]]

0 commit comments

Comments
 (0)