nickmuchi commited on
Commit
9bf9a47
1 Parent(s): 713fc75

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -106,7 +106,11 @@ with demo:
106
 
107
 
108
  with gr.Row():
109
- query = gr.Audio(source='microphone',type='filepath',label='Describe the Netflix show or movie you would like to watch..')
 
 
 
 
110
 
111
  with gr.Row():
112
 
 
106
 
107
 
108
  with gr.Row():
109
+ audio = gr.Audio(source='microphone',type='filepath',label='Audio Input: Describe the Netflix show you would like to watch..')
110
+
111
+ with gr.Row():
112
+ query = gr.Textbox(label='Transcribed Text')
113
+ audio.Change(asr,audio,query)
114
 
115
  with gr.Row():
116