Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -226,6 +226,11 @@ def respond(
|
|
226 |
output += response.token.text
|
227 |
yield output
|
228 |
|
229 |
-
demo = gr.ChatInterface(fn=respond,
|
|
|
|
|
|
|
|
|
|
|
230 |
|
231 |
demo.launch()
|
|
|
226 |
output += response.token.text
|
227 |
yield output
|
228 |
|
229 |
+
demo = gr.ChatInterface(fn=respond,
|
230 |
+
chatbot=gr.Chatbot(show_copy_button=True, likeable=True, layout="panel"),
|
231 |
+
title="OpenGPT 4o mini",
|
232 |
+
textbox=gr.MultimodalTextbox(),
|
233 |
+
multimodal=True,
|
234 |
+
concurrency_limit=20)
|
235 |
|
236 |
demo.launch()
|