Xinyu Wang commited on
Commit
1816df7
·
1 Parent(s): 346a47e

add title and description.

Browse files
Files changed (1) hide show
  1. app.py +8 -1
app.py CHANGED
@@ -14,5 +14,12 @@ def response(message, history):
14
 
15
  return response_text
16
 
17
- demo = gr.ChatInterface(response)
 
 
 
 
 
 
 
18
  demo.launch()
 
14
 
15
  return response_text
16
 
17
+
18
+
19
+
20
+ demo = gr.ChatInterface(
21
+ response,
22
+ title="Please Ask Me",
23
+ description="Only the Yes-no question with 吗?, can I give u certain answer!",
24
+ )
25
  demo.launch()