ChatGLM-6B/cli_demo.py

20 lines
614 B
Python
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

import os
from transformers import AutoTokenizer, AutoModel
tokenizer = AutoTokenizer.from_pretrained("THUDM/chatglm-6b", trust_remote_code=True)
model = AutoModel.from_pretrained("THUDM/chatglm-6b", trust_remote_code=True).half().cuda()
model = model.eval()
history = []
while True:
query = input("请输入提示clear清空对话历史stop终止程序\n")
if query == "stop":
break
if query == "clear":
history = []
os.system('clear')
continue
print("回复:")
response, history = model.chat(tokenizer, query, history=history)
print(response)