明国三年一场雨

明国三年一场雨

热爱技术分享
telegram
email

微信接入ChatGPT,微信就是Open AI人工智能,基於chatgpt和WeChat搭建人工智能聊天機器人,體驗ChatGPT強大的功能,可實現語音、圖片、接入微信公眾號等,搭建也非常簡單。

1、開啟 AI 註冊並獲取 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          # 在後臺運行程序並通過日誌輸出二維碼
載入中......
此文章數據所有權由區塊鏈加密技術和智能合約保障僅歸創作者所有。