Update app.py
Browse files
app.py
CHANGED
@@ -196,7 +196,7 @@ chatbot_batch = gr.Chatbot(avatar_images=('user1.png', 'bot1.png'),bubble_full_w
|
|
196 |
chat_interface_stream = gr.ChatInterface(predict,
|
197 |
title=title,
|
198 |
description=description,
|
199 |
-
textbox=gr.Textbox(
|
200 |
chatbot=chatbot_stream,
|
201 |
css=css,
|
202 |
examples=examples,
|
@@ -205,7 +205,7 @@ chat_interface_stream = gr.ChatInterface(predict,
|
|
205 |
chat_interface_batch=gr.ChatInterface(predict_batch,
|
206 |
title=title,
|
207 |
description=description,
|
208 |
-
textbox=gr.Textbox(
|
209 |
chatbot=chatbot_batch,
|
210 |
css=css,
|
211 |
examples=examples,
|
|
|
196 |
chat_interface_stream = gr.ChatInterface(predict,
|
197 |
title=title,
|
198 |
description=description,
|
199 |
+
textbox=gr.Textbox(),
|
200 |
chatbot=chatbot_stream,
|
201 |
css=css,
|
202 |
examples=examples,
|
|
|
205 |
chat_interface_batch=gr.ChatInterface(predict_batch,
|
206 |
title=title,
|
207 |
description=description,
|
208 |
+
textbox=gr.Textbox(),
|
209 |
chatbot=chatbot_batch,
|
210 |
css=css,
|
211 |
examples=examples,
|