明国三年一场雨

明国三年一场雨

热爱技术分享
telegram
email

微信接入ChatGPT ,微信就是Open AI人工智能,基于chatgpt和WeChat搭建人工智能聊天机器人,体验ChatGPT强大的功能,可实现语音、图片、接入微信公众号等,搭建也非常简单

1、OpenAI 注册并获取 API

注册要点:选择 OpenAI 支持的国家的节点(例如:美国、新加坡、台湾等)、节点要比较干净(用的人少)、客户端开启全局模式。
创建 API,然后复制保存好:https://platform.openai.com/account/api-keys
2、下载并安装 SSH 连接工具 Finalshell:【点击进入】

3、安装 python

安装构建 Python 源所需的包:

`apt update
apt install build-essential zlib1g-dev libncurses5-dev libgdbm-dev libnss3-dev libssl-dev libreadline-dev libffi-dev wget```

curl 命令从 Python 下载页面下载最新版本的源代码:

curl -O https://www.python.org/ftp/python/3.8.18/Python-3.8.18.tar.xz

下载完成后解压 tar 压缩包

tar -xf Python-3.8.18.tar.xz

导航到 Python 源目录并运行 configure 脚本

cd Python-3.8.18
./configure --enable-optimizations

编译并安装程序

make && make install

4、安装 ffmpeg

apt install ffmpeg

5、安装 git

apt install git

6、克隆项目代码:

git clone https://github.com/zhayujie/chatgpt-on-wechat
cd chatgpt-on-wechat/

7、安装核心依赖 :

pip3 install -r requirements.txt

8、配置 config.json(配置文件的模板在根目录中 config-template.json,需要复制该模板创建最终生效的 config.json 文件)

cp config-template.json config.json

9、在后台运行程序使用 nohup 命令:

touch nohup.out                                   # 首次运行需要新建日志文件  
nohup python3 app.py & tail -f nohup.out          # 在后台运行程序并通过日志输出二维码
Loading...
Ownership of this post data is guaranteed by blockchain and smart contracts to the creator alone.