Update
Browse files
app.py
CHANGED
|
@@ -151,7 +151,7 @@ with gr.Blocks(css="style.css") as demo:
|
|
| 151 |
caption_button = gr.Button("Caption it!")
|
| 152 |
caption_output = gr.Textbox(label="Caption Output", show_label=False, container=False)
|
| 153 |
with gr.Tab(label="Visual Question Answering"):
|
| 154 |
-
chatbot = gr.Chatbot(label="VQA Chat")
|
| 155 |
history_orig = gr.State(value=[])
|
| 156 |
history_qa = gr.State(value=[])
|
| 157 |
vqa_input = gr.Text(label="Chat Input", show_label=False, max_lines=1, container=False)
|
|
|
|
| 151 |
caption_button = gr.Button("Caption it!")
|
| 152 |
caption_output = gr.Textbox(label="Caption Output", show_label=False, container=False)
|
| 153 |
with gr.Tab(label="Visual Question Answering"):
|
| 154 |
+
chatbot = gr.Chatbot(label="VQA Chat", show_label=False)
|
| 155 |
history_orig = gr.State(value=[])
|
| 156 |
history_qa = gr.State(value=[])
|
| 157 |
vqa_input = gr.Text(label="Chat Input", show_label=False, max_lines=1, container=False)
|