Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -478,6 +478,19 @@ examples=[["What are the biggest news stories today?", None, None, None, None, N
|
|
478 |
["What are some unique features of Rust that make it stand out compared to other systems programming languages like C++?", None, None, None, None, None,],
|
479 |
]
|
480 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
481 |
with gr.Blocks() as iface:
|
482 |
#chatbot=gr.Chatbot(show_label=False, show_share_button=False, show_copy_button=True, likeable=True, layout="panel"),
|
483 |
chatbot=gr.Chatbot()
|
@@ -486,7 +499,6 @@ with gr.Blocks() as iface:
|
|
486 |
msg.submit(run, [msg, chatbot], [msg, chatbot])
|
487 |
iface.launch()
|
488 |
|
489 |
-
'''
|
490 |
gr.ChatInterface(
|
491 |
fn=run,
|
492 |
chatbot=gr.Chatbot(show_label=False, show_share_button=False, show_copy_button=True, likeable=True, layout="panel"),
|
|
|
478 |
["What are some unique features of Rust that make it stand out compared to other systems programming languages like C++?", None, None, None, None, None,],
|
479 |
]
|
480 |
|
481 |
+
|
482 |
+
with gr.Blocks() as iface:
|
483 |
+
gr.HTML("""TEST""")
|
484 |
+
gr.ChatInterface(
|
485 |
+
fn=run,
|
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:
|
495 |
#chatbot=gr.Chatbot(show_label=False, show_share_button=False, show_copy_button=True, likeable=True, layout="panel"),
|
496 |
chatbot=gr.Chatbot()
|
|
|
499 |
msg.submit(run, [msg, chatbot], [msg, chatbot])
|
500 |
iface.launch()
|
501 |
|
|
|
502 |
gr.ChatInterface(
|
503 |
fn=run,
|
504 |
chatbot=gr.Chatbot(show_label=False, show_share_button=False, show_copy_button=True, likeable=True, layout="panel"),
|