KingNish commited on
Commit
2c9a374
1 Parent(s): 1ad9f62

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -1
app.py CHANGED
@@ -226,6 +226,11 @@ def respond(
226
  output += response.token.text
227
  yield output
228
 
229
- demo = gr.ChatInterface(fn=respond, title="OpenGPT 4o mini", textbox=gr.MultimodalTextbox(), multimodal=True)
 
 
 
 
 
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()