We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ebdb08 commit 1929987Copy full SHA for 1929987
.gitignore
@@ -158,3 +158,4 @@ cython_debug/
158
# and can be added to the global gitignore or merged into this file. For a more nuclear
159
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
160
#.idea/
161
+temp/
main.py
@@ -46,7 +46,7 @@ def main(ui, config):
46
llm = Llm(params=llm_params)
47
ap = Ap(params=ap_params, ui=ui)
48
tts = Tts(params=tts_params, ap=ap)
49
- mic = Mic(params=mic_params, ui=ui, vad_params=vad_params)
+ mic = Mic(params=mic_params, ui=ui, vad=vad)
50
51
mic_muted = False
52
mic_last_chunk = None
0 commit comments