Update app.py
Browse files
app.py
CHANGED
@@ -81,6 +81,6 @@ def chat(message, history):
|
|
81 |
# stop.click(fn=None, inputs=None, outputs=None, cancels=[
|
82 |
# submit_event, submit_click_event], queue=False)
|
83 |
# clear.click(lambda: None, None, [chatbot], queue=False)
|
84 |
-
demo = gr.ChatInterface(fn=
|
85 |
demo.queue(max_size=32, concurrency_count=2)
|
86 |
demo.launch()
|
|
|
81 |
# stop.click(fn=None, inputs=None, outputs=None, cancels=[
|
82 |
# submit_event, submit_click_event], queue=False)
|
83 |
# clear.click(lambda: None, None, [chatbot], queue=False)
|
84 |
+
demo = gr.ChatInterface(fn=chat, examples=["hello", "hola", "merhaba"], title="Stable LM 2 Zephyr 1.6b")
|
85 |
demo.queue(max_size=32, concurrency_count=2)
|
86 |
demo.launch()
|