mirror of https://github.com/THUDM/ChatGLM-6B
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.
20 lines
680 B
20 lines
680 B
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 = [] |
|
print("欢迎使用 ChatGLM-6B 模型,输入内容即可进行对话,clear 清空对话历史,stop 终止程序") |
|
while True: |
|
query = input("\n用户:") |
|
if query == "stop": |
|
break |
|
if query == "clear": |
|
history = [] |
|
os.system('clear') |
|
continue |
|
response, history = model.chat(tokenizer, query, history=history) |
|
print(f"ChatGLM-6B:{response}") |
|
|
|
|