SreyanG-NVIDIA commited on
Commit
31f5b5d
·
verified ·
1 Parent(s): e6023f9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
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=8)
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=8)
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=8)
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