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