SathvikGanta commited on
Commit
82f8ac0
·
verified ·
1 Parent(s): 0b6870a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -68,7 +68,7 @@ with gr.Blocks() as jarvis_app:
68
  gr.Markdown("A voice-based assistant application built with Gradio SDK.")
69
 
70
  with gr.Row():
71
- audio_input = gr.Audio(source="microphone", type="filepath", label="Speak Your Query")
72
  text_output = gr.Textbox(label="Response")
73
  audio_output = gr.Audio(label="Voice Response")
74
 
 
68
  gr.Markdown("A voice-based assistant application built with Gradio SDK.")
69
 
70
  with gr.Row():
71
+ audio_input = gr.Audio(type="filepath", label="Speak Your Query") # Removed 'source' argument
72
  text_output = gr.Textbox(label="Response")
73
  audio_output = gr.Audio(label="Voice Response")
74