TuringsSolutions commited on
Commit
402a272
·
verified ·
1 Parent(s): 94cfbe9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -69,7 +69,7 @@ def start_recording_user(state: AppState):
69
  with gr.Blocks() as demo:
70
  with gr.Row():
71
  with gr.Column():
72
- input_audio = gr.Audio(label="Input Audio", source="microphone", type="numpy")
73
  text_input = gr.Textbox(label="Text Input", placeholder="Type your message here...")
74
  with gr.Column():
75
  chatbot = gr.Chatbot(label="Conversation", type="messages")
 
69
  with gr.Blocks() as demo:
70
  with gr.Row():
71
  with gr.Column():
72
+ input_audio = gr.Audio(label="Input Audio", type="numpy") # No 'source' argument
73
  text_input = gr.Textbox(label="Text Input", placeholder="Type your message here...")
74
  with gr.Column():
75
  chatbot = gr.Chatbot(label="Conversation", type="messages")