c语言编程笔录

首页 >   > 笔记大全

笔记大全

基于ChatGPT怎么搭建微信机器人

更新时间:2023-11-26

1. ChatGPT简介

ChatGPT是一款开源的对话模型,是由哈工大社交智能实验室和微软亚洲研究院合作推出的。该模型基于GPT-2,并经过了大规模语料的预训练和微调,能够为用户提供智能对话服务。

#ChatGPT的使用示例
from transformers import AutoModelForCausalLM, AutoTokenizer

tokenizer = AutoTokenizer.from_pretrained("microsoft/DialoGPT-large")
model = AutoModelForCausalLM.from_pretrained("microsoft/DialoGPT-large")

#输入对话开始的文字
user_input = "你好,我想问如何搭建微信机器人?"

#将输入的文字转化成模型所需的格式
input_text = "