svjack commited on
Commit
5fe3d75
1 Parent(s): c4eb248

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -41,8 +41,12 @@ def predict(message, history):
41
  yield partial_message
42
 
43
  gr.ChatInterface(predict,
44
- examples=["你听说过马克思吗?", "如何进行经济建设?", "明朝内阁制度的特点是什么?",
 
45
  "请解释下面的emoji符号描述的情景👨👩🔥❄️",
 
 
 
46
  ],
47
  cache_examples=False,
48
  ).launch(enable_queue=True)
 
41
  yield partial_message
42
 
43
  gr.ChatInterface(predict,
44
+ examples=[
45
+ "What's the relationship between Harry Potter and Hermione ?",
46
  "请解释下面的emoji符号描述的情景👨👩🔥❄️",
47
+ "明朝内阁制度的特点是什么?",
48
+ "如何进行经济建设?",
49
+ "你听说过马克思吗?",
50
  ],
51
  cache_examples=False,
52
  ).launch(enable_queue=True)