acecalisto3 commited on
Commit
3505da6
·
verified ·
1 Parent(s): 825301b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -365,7 +365,7 @@ gr.ChatInterface(
365
  title="""Fragmixt: Autonomous Agents With Agents...Surf With a Purpose!""",
366
  examples=examples,
367
  concurrency_limit=20,
368
- from gr.Blocks() as ifacea:
369
  gr.HTML("""TEST""")
370
  with gr.Blocks() as iface:
371
  chatbot=gr.Chatbot(show_label=False, show_share_button=False, show_copy_button=True, likeable=True, layout="panel"),
@@ -376,4 +376,5 @@ with gr.Blocks() as iface:
376
  clear = gr.ClearButton([msg, chatbot])
377
  submit_b.click(run, [msg,chatbot],[msg,chatbot])
378
  msg.submit(run, [msg, chatbot], [msg, chatbot])
379
- iface.launch()
 
 
365
  title="""Fragmixt: Autonomous Agents With Agents...Surf With a Purpose!""",
366
  examples=examples,
367
  concurrency_limit=20,
368
+ with gr.Blocks() as ifacea:
369
  gr.HTML("""TEST""")
370
  with gr.Blocks() as iface:
371
  chatbot=gr.Chatbot(show_label=False, show_share_button=False, show_copy_button=True, likeable=True, layout="panel"),
 
376
  clear = gr.ClearButton([msg, chatbot])
377
  submit_b.click(run, [msg,chatbot],[msg,chatbot])
378
  msg.submit(run, [msg, chatbot], [msg, chatbot])
379
+ iface.launch()
380
+ )