Spaces:
Running
on
A100
Running
on
A100
Update app.py
Browse files
app.py
CHANGED
@@ -167,7 +167,7 @@ with gr.Blocks(css="""
|
|
167 |
)
|
168 |
|
169 |
with gr.Column():
|
170 |
-
output_single = gr.Textbox(label="Model Response", lines=
|
171 |
|
172 |
btn_single.click(fn=single_turn_infer, inputs=[audio_input_single, prompt_input_single], outputs=output_single)
|
173 |
with gr.Tab("🤔 Think / Long"):
|
@@ -188,7 +188,7 @@ with gr.Blocks(css="""
|
|
188 |
)
|
189 |
|
190 |
with gr.Column():
|
191 |
-
output_think = gr.Textbox(label="Model Response", lines=
|
192 |
|
193 |
btn_think.click(fn=think_infer, inputs=[audio_input_think, prompt_input_think], outputs=output_think)
|
194 |
# ---------------- MULTI-TURN CHAT ----------------
|
@@ -231,7 +231,7 @@ with gr.Blocks(css="""
|
|
231 |
label="🧪 Try Examples"
|
232 |
)
|
233 |
with gr.Column():
|
234 |
-
response_box = gr.Textbox(label="Model Response", lines=
|
235 |
|
236 |
btn_speech.click(fn=speech_prompt_infer, inputs=speech_input, outputs=response_box)
|
237 |
|
|
|
167 |
)
|
168 |
|
169 |
with gr.Column():
|
170 |
+
output_single = gr.Textbox(label="Model Response", lines=15)
|
171 |
|
172 |
btn_single.click(fn=single_turn_infer, inputs=[audio_input_single, prompt_input_single], outputs=output_single)
|
173 |
with gr.Tab("🤔 Think / Long"):
|
|
|
188 |
)
|
189 |
|
190 |
with gr.Column():
|
191 |
+
output_think = gr.Textbox(label="Model Response", lines=15)
|
192 |
|
193 |
btn_think.click(fn=think_infer, inputs=[audio_input_think, prompt_input_think], outputs=output_think)
|
194 |
# ---------------- MULTI-TURN CHAT ----------------
|
|
|
231 |
label="🧪 Try Examples"
|
232 |
)
|
233 |
with gr.Column():
|
234 |
+
response_box = gr.Textbox(label="Model Response", lines=15)
|
235 |
|
236 |
btn_speech.click(fn=speech_prompt_infer, inputs=speech_input, outputs=response_box)
|
237 |
|