Spaces:
Sleeping
Sleeping
Merge branch 'main' of https://huggingface.co/spaces/Siddhant/Voice_Assistant_Demo
Browse files- README.md +1 -1
- app.py +3 -3
- requirements.txt +2 -2
README.md
CHANGED
@@ -4,7 +4,7 @@ emoji: 📊
|
|
4 |
colorFrom: blue
|
5 |
colorTo: pink
|
6 |
sdk: gradio
|
7 |
-
sdk_version:
|
8 |
app_file: app.py
|
9 |
pinned: false
|
10 |
---
|
|
|
4 |
colorFrom: blue
|
5 |
colorTo: pink
|
6 |
sdk: gradio
|
7 |
+
sdk_version: 4.43.0
|
8 |
app_file: app.py
|
9 |
pinned: false
|
10 |
---
|
app.py
CHANGED
@@ -453,10 +453,10 @@ with gr.Blocks(
|
|
453 |
value= "Completely Irrelevant", visible=False, interactive=False, scale=1
|
454 |
)
|
455 |
with gr.Column(scale=1):
|
456 |
-
output_audio = gr.Audio(label="Output", autoplay=True, visible=True)
|
457 |
output_audio1 = gr.Audio(label="Output1", autoplay=False, visible=False)
|
458 |
-
output_asr_text = gr.Textbox(label="ASR output")
|
459 |
-
output_text = gr.Textbox(label="LLM output")
|
460 |
eval_radio = gr.Radio(
|
461 |
choices=["Latency", "TTS Intelligibility", "TTS Speech Quality", "ASR WER","Text Dialog Metrics"],
|
462 |
label="Choose Evaluation metrics:",
|
|
|
453 |
value= "Completely Irrelevant", visible=False, interactive=False, scale=1
|
454 |
)
|
455 |
with gr.Column(scale=1):
|
456 |
+
output_audio = gr.Audio(label="Output", interactive=False, autoplay=True, visible=True)
|
457 |
output_audio1 = gr.Audio(label="Output1", autoplay=False, visible=False)
|
458 |
+
output_asr_text = gr.Textbox(label="ASR output", interactive=False)
|
459 |
+
output_text = gr.Textbox(label="LLM output", interactive=False)
|
460 |
eval_radio = gr.Radio(
|
461 |
choices=["Latency", "TTS Intelligibility", "TTS Speech Quality", "ASR WER","Text Dialog Metrics"],
|
462 |
label="Choose Evaluation metrics:",
|
requirements.txt
CHANGED
@@ -11,8 +11,8 @@ librosa
|
|
11 |
sounddevice==0.5.0
|
12 |
webrtcvad-wheels
|
13 |
webrtcvad==2.0.10
|
14 |
-
gradio==4.43.0
|
15 |
ChatTTS
|
16 |
evaluate
|
17 |
snac==1.2.0
|
18 |
-
litgpt==0.4.3
|
|
|
|
11 |
sounddevice==0.5.0
|
12 |
webrtcvad-wheels
|
13 |
webrtcvad==2.0.10
|
|
|
14 |
ChatTTS
|
15 |
evaluate
|
16 |
snac==1.2.0
|
17 |
+
litgpt==0.4.3
|
18 |
+
gradio==4.43.0
|