Update app.py
Browse files
app.py
CHANGED
@@ -182,7 +182,7 @@ with gr.Blocks() as demo:
|
|
182 |
audio_button = gr.Button("Ask", elem_id="ask_button")
|
183 |
|
184 |
with gr.Tab("Voice(Record) Chat"):
|
185 |
-
audio_record = gr.Audio(source="microphone", type="binary", label="Record your voice")
|
186 |
audio_record_query = gr.Textbox(label="Ask about the transcription")
|
187 |
audio_record_output = gr.Textbox(label="Response", interactive=False)
|
188 |
audio_record_button = gr.Button("Ask", elem_id="ask_button")
|
|
|
182 |
audio_button = gr.Button("Ask", elem_id="ask_button")
|
183 |
|
184 |
with gr.Tab("Voice(Record) Chat"):
|
185 |
+
audio_record = gr.Audio(source="microphone", type="binary", label="Record your voice") # Fix here!
|
186 |
audio_record_query = gr.Textbox(label="Ask about the transcription")
|
187 |
audio_record_output = gr.Textbox(label="Response", interactive=False)
|
188 |
audio_record_button = gr.Button("Ask", elem_id="ask_button")
|