Rachel1809 commited on
Commit
4f8237a
·
1 Parent(s): b71d279

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -66,4 +66,8 @@ def response(msg: str, history: list):
66
  return response
67
 
68
 
69
- gr.ChatInterface(response).launch()
 
 
 
 
 
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)