venkat-natchi commited on
Commit
af6afed
·
verified ·
1 Parent(s): 06f3c77

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -147,8 +147,10 @@ with gr.Blocks() as demo:
147
  with gr.Row():
148
  submit_button = gr.Button("Submit")
149
  submit_button.click(generate_response,
150
- inputs=[text_input, response_count,
151
- image_input, audio_input],
 
 
152
  outputs=response)
153
 
154
 
 
147
  with gr.Row():
148
  submit_button = gr.Button("Submit")
149
  submit_button.click(generate_response,
150
+ inputs=[
151
+ image_input, audio_input,
152
+ text_input, response_count
153
+ ],
154
  outputs=response)
155
 
156