cogcorp commited on
Commit
ae48204
·
1 Parent(s): b522f05

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -256,8 +256,9 @@ with gr.Blocks() as demo:
256
  btn.style(full_width=False)
257
 
258
  with gr.Group():
259
- answer = gr.Textbox(label='The answer to your question is :')
260
  gr.Image("logo.jpg")
 
 
261
  btn.click(main_loop, inputs=[url, file, question], outputs=[answer])
262
 
263
 
 
256
  btn.style(full_width=False)
257
 
258
  with gr.Group():
 
259
  gr.Image("logo.jpg")
260
+ answer = gr.Textbox(label='The answer to your question is :')
261
+
262
  btn.click(main_loop, inputs=[url, file, question], outputs=[answer])
263
 
264