Xinyu Wang
commited on
Commit
·
1816df7
1
Parent(s):
346a47e
add title and description.
Browse files
app.py
CHANGED
@@ -14,5 +14,12 @@ def response(message, history):
|
|
14 |
|
15 |
return response_text
|
16 |
|
17 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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()
|