Skip to content

Releases: houko/wechatgpt

v2.8.0

15 Dec 07:23
Compare
Choose a tag to compare

如果运行telegram智能机器人时希望在群里回复别人消息,可以指定一个关键字触发

# apple silicon
docker run -d \ 
--name wechatgpt \ 
-e apiKey="你的chatgpt apiKey" \
-e telegram="你的telegram token" \
-e tg_keyword="小莫" \
xiaomoinfo/wechatgpt:latest

# linux amd64
docker run -d \
--name wechatgpt \
-e apiKey="你的chatgpt apiKey" \
-e telegram="你的telegram token" \
-e tg_keyword="小莫" \
xiaomoinfo/wechatgpt-amd64:latest

v2.7.0

15 Dec 06:21
Compare
Choose a tag to compare

如果运行telegram智能机器人时只希望指定的人使用,白名单以外的人发消息机器人不会回复

# apple silicon
docker run -d \ 
--name wechatgpt \ 
-e apiKey="你的chatgpt apiKey" \
-e telegram="你的telegram token" \
-e tg_whitelist="username1,username2" \
xiaomoinfo/wechatgpt:latest

# linux amd64
docker run -d \
--name wechatgpt \
-e apiKey="你的chatgpt apiKey" \
-e telegram="你的telegram token" \
-e tg_whitelist="username1,username2" \
xiaomoinfo/wechatgpt-amd64:latest

v2.4.0

15 Dec 02:05
Compare
Choose a tag to compare

微信和telegram可以分别单独进行运行啦!
直接运行源码的情况下如果不想运行微信请把config.yaml中的wechat字段删掉

同时启动微信和telegram,微信登陆的地址请查看运行日志

# apple silicon
docker run -d \
--name="wechatgpt" \
-e apiKey="你的chatgpt apiKey" \
-e wechat="微信触发关键字" \
-e telegram="你的telegram token"  \
xiaomoinfo/wechatgpt:latest

# linux amd64
docker run -d \
--name="wechatgpt" \
-e apiKey="你的chatgpt apiKey" \
-e wechat="微信触发关键字" \
-e telegram="你的telegram token"  \
xiaomoinfo/wechatgpt-amd64:latest

如果只想运行微信智能机器人的话运行下面这段代码,微信登陆的地址请查看运行日志

# apple silicon 
docker run -d \
--name wechatgpt \
-e apiKey="你的chatgpt apiKey" \
-e wechat="微信触发关键字" \
xiaomoinfo/wechatgpt:latest

# linux amd64
docker run -d \
--name wechatgpt \
-e apiKey="你的chatgpt apiKey" \
-e wechat="微信触发关键字" \
xiaomoinfo/wechatgpt-amd64:latest

如果只想运行telegram智能机器人的话运行下面这段代码

# apple silicon
docker run -d \ 
--name wechatgpt \ 
-e apiKey="你的chatgpt apiKey" \
-e telegram="你的telegram token" \
xiaomoinfo/wechatgpt:latest

# linux amd64
docker run -d \
--name wechatgpt \
-e apiKey="你的chatgpt apiKey" \
-e telegram="你的telegram token" \
xiaomoinfo/wechatgpt-amd64:latest

v2.1.0

14 Dec 04:51
Compare
Choose a tag to compare

支持docker部署啦!!!

docker run -d --name wechatgpt -e apiKey="你的chatgpt apiKey" xiaomoinfo/wechatgpt:latest

https://hub.docker.com/repository/docker/xiaomoinfo/wechatgpt

v2.0.0

12 Dec 12:07
Compare
Choose a tag to compare

添加telegram机器人功能

v1.0.0

12 Dec 11:34
Compare
Choose a tag to compare

golang版微信机器人