You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ChatGLM-6B/cli_demo.py

25 lines
909 B

2 years ago
import os
import platform
2 years ago
from transformers import AutoTokenizer, AutoModel
2 years ago
tokenizer = AutoTokenizer.from_pretrained("THUDM/chatglm-6b", trust_remote_code=True)
model = AutoModel.from_pretrained("THUDM/chatglm-6b", trust_remote_code=True).half().cuda()
2 years ago
model = model.eval()
os_name = platform.system()
2 years ago
history = []
print("欢迎使用 ChatGLM-6B 模型输入内容即可进行对话clear 清空对话历史stop 终止程序")
2 years ago
while True:
query = input("\n用户:")
2 years ago
if query == "stop":
break
if query == "clear":
history = []
command = 'cls' if os_name == 'Windows' else 'clear'
os.system(command)
print("欢迎使用 ChatGLM-6B 模型输入内容即可进行对话clear 清空对话历史stop 终止程序")
2 years ago
continue
response, history = model.chat(tokenizer, query, history=history)
print(f"ChatGLM-6B{response}")