wanglettes commited on
Commit
6896b07
·
1 Parent(s): eab5c6e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -41,7 +41,7 @@ def chat(
41
  history_messages = state
42
  if history_messages == None:
43
  history_messages = []
44
- history_messages.append({"role": "system", "content":"A helpful assistant."})
45
 
46
  history_messages.append({"role": "user", "content": message})
47
  # We have no content for the assistant's response yet but we will update this:
 
41
  history_messages = state
42
  if history_messages == None:
43
  history_messages = []
44
+ history_messages.append({"role": "system", "content":"用中文回答问题"})
45
 
46
  history_messages.append({"role": "user", "content": message})
47
  # We have no content for the assistant's response yet but we will update this: