Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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=[
|
151 |
-
|
|
|
|
|
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 |
|