Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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 |
-
|
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 |
+
)
|