Omnibus commited on
Commit
58fbd07
·
verified ·
1 Parent(s): 355bf36

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -10
app.py CHANGED
@@ -375,16 +375,15 @@ examples =[
375
  "Teach me to fly a helicopter"
376
  ]
377
 
378
- with gr.Blocks() as app:
379
- gr.ChatInterface(
380
- fn=run,
381
- chatbot=gr.Chatbot(show_label=False, show_share_button=True, show_copy_button=True, likeable=True, layout="panel", height="800px"),
382
- title="Mixtral 46.7B Powered <br> Search",
383
- examples=examples,
384
- concurrency_limit=20,
385
- ).launch()
386
- btn=gr.Button()
387
- app.launch()
388
 
389
  '''
390
  with gr.Blocks() as app:
 
375
  "Teach me to fly a helicopter"
376
  ]
377
 
378
+
379
+ gr.ChatInterface(
380
+ fn=run,
381
+ chatbot=gr.Chatbot(show_label=False, show_share_button=True, show_copy_button=True, likeable=True, layout="panel", height="800px"),
382
+ title="Mixtral 46.7B Powered <br> Search",
383
+ examples=examples,
384
+ concurrency_limit=20,
385
+ ).launch()
386
+ btn=gr.Button()
 
387
 
388
  '''
389
  with gr.Blocks() as app: