ChatGLM-6B模型部署【BUG 记录】AttributeError: module ‘collections‘ has no attribute ‘Callable‘

你的代码看起来是一个简单的ChatGLM-6B模型的用户界面,用于与用户进行对话。在使用`pyinputplus`替代`readline`时,你可以将用户的输入逻辑替换为`pyinputplus`的功能。以下是你的代码修改后的版本,使用`pyinputplus`来获取用户输入:

```python
import os
import platform
import signal
from transformers import AutoTokenizer, AutoModel
import pyinputplus as pyip

tokenizer = AutoTokenizer.from_pretrained("model", trust_remote_code=True)
model = AutoModel.from_pretrained("model", trust_remote_code=True).half().quantize(4).cuda()
model = model.eval()

os_name = platform.system()
clear_command = 'cls' if os_name == 'Windows' else 'clear'
stop_stream = False


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


def signal_handler(signal, frame):
    global stop_stream
    stop_stream = True


def main():
    history = []
    global stop_stream
    print("欢迎使用 ChatGLM-6B 模型,输入内容即可进行对话,clear 清空对话历史,stop 终止程序")
    while True:
        query = pyip.inputStr(prompt="\n用户:", allowRegexes=["^clear$", "^stop$"])
        if query.strip() == "stop":
            break
        if query.strip() == "clear":
            history = []
            os.system(clear_command)
            print("欢迎使用 ChatGLM-6B 模型,输入内容即可进行对话,clear 清空对话历史,stop 终止程序")
            continue
        count = 0
        for response, history in model.stream_chat(tokenizer, query, history=history):
            if stop_stream:
                stop_stream = False
                break
            else:
                count += 1
                if count % 8 == 0:
                    os.system(clear_command)
                    print(build_prompt(history), flush=True)
                    signal.signal(signal.SIGINT, signal_handler)
        os.system(clear_command)
        print(build_prompt(history), flush=True)


if __name__ == "__main__":
    main()
```

在这个修改后的版本中,我用`pyinputplus`的`inputStr()`函数代替了`input()`函数,并使用了`allowRegexes`参数,允许输入满足正则表达式`"^clear$"`和`"^stop$"`的内容,以实现与原来相同的逻辑。如果用户输入了"clear",将会清空对话历史,如果用户输入了"stop",程序会终止。其他输入将被视为用户的对话输入。

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值