Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -479,16 +479,16 @@ examples=[["What are the biggest news stories today?", None, None, None, None, N
|
|
479 |
]
|
480 |
|
481 |
|
482 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
483 |
gr.HTML("""TEST""")
|
484 |
-
|
485 |
-
|
486 |
-
chatbot=gr.Chatbot(show_label=False, show_share_button=False, show_copy_button=True, likeable=True, layout="panel"),
|
487 |
-
title="Mixtral 46.7B\nMicro-Agent\nInternet Search <br> development test",
|
488 |
-
examples=examples,
|
489 |
-
concurrency_limit=20,
|
490 |
-
)
|
491 |
-
iface.launch()
|
492 |
|
493 |
'''
|
494 |
with gr.Blocks() as iface:
|
|
|
479 |
]
|
480 |
|
481 |
|
482 |
+
gr.ChatInterface(
|
483 |
+
fn=run,
|
484 |
+
chatbot=gr.Chatbot(show_label=False, show_share_button=False, show_copy_button=True, likeable=True, layout="panel"),
|
485 |
+
title="Mixtral 46.7B\nMicro-Agent\nInternet Search <br> development test",
|
486 |
+
examples=examples,
|
487 |
+
concurrency_limit=20,
|
488 |
+
with gr.Blocks():
|
489 |
gr.HTML("""TEST""")
|
490 |
+
|
491 |
+
).launch()
|
|
|
|
|
|
|
|
|
|
|
|
|
492 |
|
493 |
'''
|
494 |
with gr.Blocks() as iface:
|