wechaty bot
1.0.0
新版微信機器人
封號嚴重不建議使用
一個基於OpenAI
+ Wechaty
智慧回應、支援上下文回應、AI繪畫的微信機器人,可以用來幫助你自動回覆微信訊息。
api.openai.com 國內無法訪問,利用Cloudflare Workers反向代理,教程
當你的環境無法使用,不想自建,也可以用我的https://openai.1rmb.tk
。
API Key 建立成功。複製好這個Key接下來會用到。點擊OK後,Key不會再完整顯示。只能刪了重新產生Key! 如果沒帳號,可以參考V2EX上這篇貼文註冊地址https://www.v2ex.com/t/900126
# $wechaty-bot
# 执行下面命令,拷贝一份 .env.example 文件
cp .env.example .env
#群聊chatgpt自动回复总开关 0为关闭 1为开启
AutoReplyGroup = 1
#开启chatgpt群聊列表,群聊名称必须与微信群聊名称一致,否则无法自动回复 为空则自动回复所有群聊 ["群聊1","群聊2","群聊3"]
RoomList = [ ]
#好友chatgpt自动回复总开关 0为关闭 1为开启
AutoReplyFriend = 1
#开启chatgpt好友列表,好友名称必须与微信好友名称一致,否则无法自动回复 为空则自动回复所有好友 ["好友1","好友2","好友3"]
FriendList = [ ]
# openai的key,需要自己去获取 ,地址:https://beta.openai.com/account/api-keys
OPENAI_API_KEY = ' sk-xxxxxxxxxxxxxxxxx '
# 反代的api,为空时为默认值 https://api.openai.com
PROXY_API = ' '
下載並編輯.env
設定文件
mkdir my-wechaty-bot && cd my-wechaty-bot
wget -O .env https://raw.githubusercontent.com/x-dr/wechaty-bot/main/.env.example
vim .env
運行
docker run -itd --name my-wechaty-bot
--restart=always
-v $PWD /.env:/app/.env
gindex/wechaty-bot:latest
查看日誌掃碼登入
docker logs my-wechaty-bot -f
自行打包docker映像
docker build -t wechaty-bot .
docker run -it --rm --name wechaty-bot wechaty-bot
git clone https://github.com/x-dr/wechaty-bot.git
npm i
node app.js
就可以掃碼登入了。
用pm2啟動後台運行
npm install pm2 -g
pm2 start app.js
/c xxxx #对话
/c 结束对话 #结束本轮对话
/img xxx
openai是要付費的,價格的計算方式不是簡單的按照請求次數計算,包括對應內容的文字的多寡。新帳號有18美元免費額度。
官方價格:https://openai.com/api/pricing
@wechaty
@transitive-bullshit