zhangfaquan / ChatGPT-wechat-bot

ChatGPT for wechat

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ChatGPT-wechat-bot🤖

Version License: ISC

ChatGPT webchart bot is a WeChat assistant based on NodeJS and webchaty. This tool is more convenient for you to use ChatGPT, you just chat with it as a good friend or a housekeeper.

support

  1. can reply message when metioning your bot in room(group) AutumnWhj#5
  2. use docker to deploy wechat bot project AutumnWhj#9

Use with docker

// build
docker build --pull --rm -f "Dockerfile" -t wechatbot:latest "."

// run, and then you will see some logs 
docker run --name wechatbot wechatbot:latest

QA

  1. If your WeChat cannot log in

Please check the root directory of your project, whether there is a file —— WechatEveryDay.memory-card, if so, please delete it and try it again.

  1. support env
"engines": { "node": ">=16", "npm": ">=7" }

How to start?

  1. Firstly, you should have an OpenAI account, then follow the steps below to get your token.

Refer to this article: https://github.com/transitive-bullshit/chatgpt-api.

To get a session token:

  1. Go to https://chat.openai.com/chat and log in or sign up.
  2. Open dev tools.
  3. Open Application > Cookies.

image.png

  1. Copy the value for __Secure-next-auth.session-token and save it to your environment.
  1. Now, you should fill your Token value into the ChatGPTSessionToken in the directory src/index.js, then run this project on local.
// install dependencies
npm i

// start:
// dev
npm run dev

//or
// build
npm run build
// run lib
node lib/bundle.esm.js
  1. you can see your logs, and scan qrcode to log in wechat.

image.png

  1. Send a message to your WeChat and you will receive a reply from ChatGPT.

image.pngimage.png

About

ChatGPT for wechat

License:MIT License


Languages

Language:TypeScript 67.5%Language:Dockerfile 19.9%Language:JavaScript 12.6%