Fix prompt in cli demo

This commit is contained in:
duzx16 2023-06-26 16:49:56 +08:00
parent 9d439304d4
commit 385040e6c7

View File

@ -14,7 +14,7 @@ stop_stream = False
def build_prompt(history):
prompt = "欢迎使用 ChatGLM-6B 模型输入内容即可进行对话clear 清空对话历史stop 终止程序"
prompt = "欢迎使用 ChatGLM2-6B 模型输入内容即可进行对话clear 清空对话历史stop 终止程序"
for query, response in history:
prompt += f"\n\n用户:{query}"
prompt += f"\n\nChatGLM-6B{response}"