We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cfa129b commit 80a9208Copy full SHA for 80a9208
1 file changed
README.md
@@ -87,7 +87,7 @@
87
PORT = 5008
88
89
# System prompt sets up the character of the chatbot; change it if you want
90
- chatbot_character = '''You are a AI assistant'''
+ system_prompt = '''You are a AI assistant'''
91
92
# Set maximum conversation exchanges or idle time gap to start a new conversatoin
93
max_conversation_length = 20
@@ -104,7 +104,7 @@
104
105
106
# 若要使用翻译功能,此处改为 True,并且需要申请一个DeepL的 api key:https://www.deepl.com/docs-api
107
- tranlsate_to_chinese = False # True or False;
+ translate_to_chinese = False # True or False;
108
# if True, the bot will send chinese translation for any non-chinese gpt response
109
# 如果设置为 True,必须提供下面的 dl_key,否则会报错
110
dl_key = None # the translation uses the DeepL api; hence an deepl api key is required;
0 commit comments