微信中使用ChatGPT

微信中使用ChatGPT

ChatGPT 微信 Bot

  • 1. Ubuntu
  • 2. 卸载旧版本
  • 3. apt 安装
  • 4. 添加软件源的GPG密钥
  • 5. 添加docker源到sources.list
  • 6. 安装 docker
  • 7. 启动 docker
  • 8. 建立docker用户组
  • 9. 测试
  • 10. wechat-chatgpt 搭建
  • 11. 获取 会话令牌
  • 12. 运行
  • 13. 使用微信小号扫码登录
  • 14. 重新登录
    • 14.1 停止运行容器
    • 14.2 重新运行容器
  • 15. 使用
  • 参考

1. Ubuntu

  • 系统版本
# lsb_release -a
No LSB modules are available.
Distributor ID:	Ubuntu
Description:	Ubuntu 20.04 LTS
Release:	20.04
Codename:	focal

2. 卸载旧版本

apt-get remove docker docker-engine docker.io

3. apt 安装

apt-get install -y apt-transport-https ca-certificates curl gnupg lsb-release

4. 添加软件源的GPG密钥

curl -fsSL https://mirrors.aliyun.com/docker-ce/linux/ubuntu/gpg | gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg

5. 添加docker源到sources.list

echo "deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://mirrors.aliyun.com/docker-ce/linux/ubuntu $(lsb_release -cs) stable" | tee /etc/apt/sources.list.d/docker.list > /dev/null

6. 安装 docker

apt update

apt-get install -y docker-ce docker-ce-cli containerd.io

7. 启动 docker

systemctl enable docker
systemctl start docker

8. 建立docker用户组

groupadd docker
usermod -aG docker $USER

9. 测试

# docker run --rm hello-world
Unable to find image 'hello-world:latest' locally
latest: Pulling from library/hello-world
2db29710123e: Pull complete
Digest: sha256:faa03e786c97f07ef34423fccceeec2398ec8a5759259f94d99078f264e9d7af
Status: Downloaded newer image for hello-world:latest

Hello from Docker!
This message shows that your installation appears to be working correctly.

To generate this message, Docker took the following steps:
 1. The Docker client contacted the Docker daemon.
 2. The Docker daemon pulled the "hello-world" image from the Docker Hub.
    (amd64)
 3. The Docker daemon created a new container from that image which runs the
    executable that produces the output you are currently reading.
 4. The Docker daemon streamed that output to the Docker client, which sent it
    to your terminal.

To try something more ambitious, you can run an Ubuntu container with:
 $ docker run -it ubuntu bash

Share images, automate workflows, and more with a free Docker ID:
 https://hub.docker.com/

For more examples and ideas, visit:
 https://docs.docker.com/get-started/

10. wechat-chatgpt 搭建

# git clone https://github.com/fuergaosi233/wechat-chatgpt.git
# cd wechat-chatgpt/

11. 获取 会话令牌

1. https://chat.openai.com/chat登录
2. 浏览器打开更多工具>开发者工具。
3. 打开应用程序 > Cookies。
4. 复制 __Secure-next-auth.session-token 的值,配置config.yaml
https://chat.openai.com/api/auth/session

chatGPTAccountPool:
  - session_token: <your session_token>

12. 运行

# cd wechat-chatgpt/

  • 修改config.yaml
cp config.yaml.example config.yaml

chatGPTAccountPool:
  - session_token: eyJh......
chatPrivateTiggerKeyword: ""

docker run -d --name wechat-chatgpt -v $(pwd)/config.yaml:/app/config.yaml holegots/wechat-chatgpt:latest

13. 使用微信小号扫码登录

docker logs -f wechat-chatgpt

14. 重新登录

  • 获取最新的Cookies __Secure-next-auth.session-token 值,修改config.yaml

14.1 停止运行容器

# docker ps
CONTAINER ID   IMAGE                            COMMAND         CREATED          STATUS          PORTS     NAMES
fd62d8c0451b   holegots/wechat-chatgpt:latest   "npm run dev"   50 minutes ago   Up 50 minutes             wechat-chatgpt
# docker stop fd62d8c0451b

14.2 重新运行容器

  • 删除之前容器
docker container rm wechat-chatgpt
1
docker run -d --name wechat-chatgpt -v $(pwd)/config.yaml:/app/config.yaml holegots/wechat-chatgpt:latest

15. 使用

  • 发送私信或者群@ 触发
    在这里插入图片描述
  • 消息回复慢,vps延迟高,可以换延迟低的vps
# ping openai.com
PING openai.com (184.27.123.193) 56(84) bytes of data.
64 bytes from a184-27-123-193.deploy.static.akamaitechnologies.com (184.27.123.193): icmp_seq=1 ttl=47 time=385 ms
64 bytes from a184-27-123-193.deploy.static.akamaitechnologies.com (184.27.123.193): icmp_seq=2 ttl=47 time=377 ms
64 bytes from a184-27-123-193.deploy.static.akamaitechnologies.com (184.27.123.193): icmp_seq=3 ttl=47 time=377 ms

参考

  1. wechat-chatgpt
  2. docker-从入门到实践

参考链接:

  1. github仓库

准备服务器

  1. 进入腾讯云服务器官网,搜索“轻量应用服务器”
  2. 立即选购

img

  1. 注意,地区要选海外,镜像选Docker镜像

img

  1. 购买之后,就进入控制台

img

  1. 然后登陆到shell

img

安装部署

  1. 查看一下docker,是否安装好
lighthouse@VM-0-12-ubuntu:~$ docker -v
Docker version 20.10.5, build 55c4c88
  1. 克隆仓库
# git clone https://github.com/fuergaosi233/wechat-chatgpt.git
  1. 查看openai的token,并复制出来

img

  1. 修改配置文件
 cp config.yaml.example config.yaml
vim config.yaml

把上一步获得的token,填在token位置

  1. 拉取docker仓库,并运行
docker run -d --name wechat-chatgpt -v $(pwd)/config.yaml:/app/config.yaml holegots/wechat-chatgpt:latest
  1. 查看运行状态
sudo docker logs -f wechat-chatgpt

有一个二维码出来,然后用自己的测试号扫码登陆
登陆之后,就可以用自己的大号与他聊天测试了

img

  1. 其他命令

查看运行的docker即contarin的状态

lighthouse@VM-0-12-ubuntu:~$ sudo docker container ls
CONTAINER ID   IMAGE                     COMMAND         CREATED       STATUS          PORTS     NAMES
8f511d18643a   holegots/wechat-chatgpt   "npm run dev"   2 hours ago   Up 29 minutes             wechat-chatgpt

重启

sudo docker restart  wechat-chatgpt

停止

sudo docker stop  wechat-chatgpt

获得container id

sudo docker container ls -al

删除container

sudo docker container rm cd59

再重新运行

sudo docker run -d --name wechat-chatgpt -v $(pwd)/config.yaml:/app/config.yaml holegots/wechat-chatgpt

你可能感兴趣的:(ChatGPT,微信,chatgpt,docker)