inoid commited on
Commit
dc884c4
1 Parent(s): 85e8973

Update all changes

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -228,14 +228,16 @@ with gr.Blocks() as demo:
228
  with gr.Row():
229
  with gr.Column():
230
  #Answer for Contemplando y Proclamando questions
231
- text1 = gr.Textbox( visible = False )
232
 
233
  text_output_guia = gr.Textbox(label="Respuesta", lines=10)
234
 
235
- text2 = gr.Textbox( visible = False )
236
  with gr.Column(scale = 3):
 
237
  #Button for calling AI Help
238
  text_button = gr.Button("Buscar m谩s informaci贸n (IA)")
 
239
  with gr.Column():
240
  text_output_aiAnswer= gr.Textbox(label="Ayuda a mi respuesta", lines=10)
241
 
 
228
  with gr.Row():
229
  with gr.Column():
230
  #Answer for Contemplando y Proclamando questions
231
+
232
 
233
  text_output_guia = gr.Textbox(label="Respuesta", lines=10)
234
 
235
+
236
  with gr.Column(scale = 3):
237
+ text1 = gr.Textbox(visible = False)
238
  #Button for calling AI Help
239
  text_button = gr.Button("Buscar m谩s informaci贸n (IA)")
240
+ text2 = gr.Textbox(visible = False)
241
  with gr.Column():
242
  text_output_aiAnswer= gr.Textbox(label="Ayuda a mi respuesta", lines=10)
243