Spaces:
Runtime error
Runtime error
Commit
·
4f8237a
1
Parent(s):
b71d279
Update app.py
Browse files
app.py
CHANGED
@@ -66,4 +66,8 @@ def response(msg: str, history: list):
|
|
66 |
return response
|
67 |
|
68 |
|
69 |
-
gr.ChatInterface(response
|
|
|
|
|
|
|
|
|
|
66 |
return response
|
67 |
|
68 |
|
69 |
+
app = gr.ChatInterface(fn=response, examples=["hello",
|
70 |
+
"bonjour",
|
71 |
+
"xin chao"],
|
72 |
+
title="Llama 2 Chat")
|
73 |
+
app.launch(share=True)
|