├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── package.json ├── pnpm-lock.yaml ├── src ├── chatgpt.ts ├── config.ts ├── index.ts └── utils.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | *node_modules 2 | */log 3 | .env 4 | *.memory-card.json 5 | lib -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutumnWhj/ChatGPT-wechat-bot/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutumnWhj/ChatGPT-wechat-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutumnWhj/ChatGPT-wechat-bot/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutumnWhj/ChatGPT-wechat-bot/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutumnWhj/ChatGPT-wechat-bot/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/chatgpt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutumnWhj/ChatGPT-wechat-bot/HEAD/src/chatgpt.ts -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutumnWhj/ChatGPT-wechat-bot/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutumnWhj/ChatGPT-wechat-bot/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutumnWhj/ChatGPT-wechat-bot/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutumnWhj/ChatGPT-wechat-bot/HEAD/tsconfig.json --------------------------------------------------------------------------------