mirror of https://github.com/THUDM/ChatGLM-6B
chore(cli_demo): strip the query input for `stop` or `clear` command
Remove the query space to determine whether it is a stop command or a clear commandpull/322/head
parent
ff3761fc1a
commit
6dd6f7c7b5
|
@ -31,9 +31,9 @@ def main():
|
||||||
print("欢迎使用 ChatGLM-6B 模型,输入内容即可进行对话,clear 清空对话历史,stop 终止程序")
|
print("欢迎使用 ChatGLM-6B 模型,输入内容即可进行对话,clear 清空对话历史,stop 终止程序")
|
||||||
while True:
|
while True:
|
||||||
query = input("\n用户:")
|
query = input("\n用户:")
|
||||||
if query == "stop":
|
if query.strip() == "stop":
|
||||||
break
|
break
|
||||||
if query == "clear":
|
if query.strip() == "clear":
|
||||||
history = []
|
history = []
|
||||||
os.system(clear_command)
|
os.system(clear_command)
|
||||||
print("欢迎使用 ChatGLM-6B 模型,输入内容即可进行对话,clear 清空对话历史,stop 终止程序")
|
print("欢迎使用 ChatGLM-6B 模型,输入内容即可进行对话,clear 清空对话历史,stop 终止程序")
|
||||||
|
|
Loading…
Reference in New Issue