Spaces:
Runtime error
Runtime error
update chat
Browse files
app.py
CHANGED
@@ -212,7 +212,7 @@ def upload_img(gr_img, text_input, chat_state,chatbot):
|
|
212 |
return None, None, gr.update(interactive=True), chat_state, None
|
213 |
chat_state = []
|
214 |
img_list = []
|
215 |
-
chatbot = chatbot + [[gr_img, None]]
|
216 |
llm_message = chat.upload_img(gr_img, chat_state, img_list)
|
217 |
return gr.update(interactive=False), gr.update(interactive=True, placeholder='Type and press Enter'), gr.update(
|
218 |
value="Start Chatting", interactive=False), chat_state, img_list
|
|
|
212 |
return None, None, gr.update(interactive=True), chat_state, None
|
213 |
chat_state = []
|
214 |
img_list = []
|
215 |
+
chatbot = chatbot + [[(gr_img,), None]]
|
216 |
llm_message = chat.upload_img(gr_img, chat_state, img_list)
|
217 |
return gr.update(interactive=False), gr.update(interactive=True, placeholder='Type and press Enter'), gr.update(
|
218 |
value="Start Chatting", interactive=False), chat_state, img_list
|