├── .eslintrc.js ├── .github ├── ISSUE_TEMPLATE │ ├── 功能请求.md │ ├── 版本发布清单.md │ └── 错误报告.md └── workflows │ └── codeql.yml ├── .gitignore ├── .patches └── oicq+2.3.1.patch ├── .vscode └── settings.json ├── LICENSE ├── SECURITY.md ├── package.json ├── readme.md ├── src ├── auto.ts ├── command │ ├── command.ts │ ├── commands │ │ ├── help.ts │ │ ├── index.ts │ │ ├── official.ts │ │ ├── server.ts │ │ └── token.ts │ └── index.ts ├── config.ts ├── core │ └── oicq.ts ├── handler │ ├── chatgpt-official.ts │ ├── chatgpt.ts │ ├── command.ts │ ├── empty.ts │ └── index.ts ├── main.ts ├── model │ └── sender.ts ├── types.ts └── util │ ├── config.ts │ ├── env.ts │ ├── log.ts │ ├── message.ts │ └── session.ts └── tsconfig.json /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydu2002/chat_gpt_oicq/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/功能请求.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydu2002/chat_gpt_oicq/HEAD/.github/ISSUE_TEMPLATE/功能请求.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/版本发布清单.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydu2002/chat_gpt_oicq/HEAD/.github/ISSUE_TEMPLATE/版本发布清单.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/错误报告.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydu2002/chat_gpt_oicq/HEAD/.github/ISSUE_TEMPLATE/错误报告.md -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydu2002/chat_gpt_oicq/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydu2002/chat_gpt_oicq/HEAD/.gitignore -------------------------------------------------------------------------------- /.patches/oicq+2.3.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydu2002/chat_gpt_oicq/HEAD/.patches/oicq+2.3.1.patch -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydu2002/chat_gpt_oicq/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydu2002/chat_gpt_oicq/HEAD/LICENSE -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydu2002/chat_gpt_oicq/HEAD/SECURITY.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydu2002/chat_gpt_oicq/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydu2002/chat_gpt_oicq/HEAD/readme.md -------------------------------------------------------------------------------- /src/auto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydu2002/chat_gpt_oicq/HEAD/src/auto.ts -------------------------------------------------------------------------------- /src/command/command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydu2002/chat_gpt_oicq/HEAD/src/command/command.ts -------------------------------------------------------------------------------- /src/command/commands/help.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydu2002/chat_gpt_oicq/HEAD/src/command/commands/help.ts -------------------------------------------------------------------------------- /src/command/commands/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydu2002/chat_gpt_oicq/HEAD/src/command/commands/index.ts -------------------------------------------------------------------------------- /src/command/commands/official.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydu2002/chat_gpt_oicq/HEAD/src/command/commands/official.ts -------------------------------------------------------------------------------- /src/command/commands/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydu2002/chat_gpt_oicq/HEAD/src/command/commands/server.ts -------------------------------------------------------------------------------- /src/command/commands/token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydu2002/chat_gpt_oicq/HEAD/src/command/commands/token.ts -------------------------------------------------------------------------------- /src/command/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydu2002/chat_gpt_oicq/HEAD/src/command/index.ts -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydu2002/chat_gpt_oicq/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/core/oicq.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydu2002/chat_gpt_oicq/HEAD/src/core/oicq.ts -------------------------------------------------------------------------------- /src/handler/chatgpt-official.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydu2002/chat_gpt_oicq/HEAD/src/handler/chatgpt-official.ts -------------------------------------------------------------------------------- /src/handler/chatgpt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydu2002/chat_gpt_oicq/HEAD/src/handler/chatgpt.ts -------------------------------------------------------------------------------- /src/handler/command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydu2002/chat_gpt_oicq/HEAD/src/handler/command.ts -------------------------------------------------------------------------------- /src/handler/empty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydu2002/chat_gpt_oicq/HEAD/src/handler/empty.ts -------------------------------------------------------------------------------- /src/handler/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydu2002/chat_gpt_oicq/HEAD/src/handler/index.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydu2002/chat_gpt_oicq/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/model/sender.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydu2002/chat_gpt_oicq/HEAD/src/model/sender.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydu2002/chat_gpt_oicq/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/util/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydu2002/chat_gpt_oicq/HEAD/src/util/config.ts -------------------------------------------------------------------------------- /src/util/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydu2002/chat_gpt_oicq/HEAD/src/util/env.ts -------------------------------------------------------------------------------- /src/util/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydu2002/chat_gpt_oicq/HEAD/src/util/log.ts -------------------------------------------------------------------------------- /src/util/message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydu2002/chat_gpt_oicq/HEAD/src/util/message.ts -------------------------------------------------------------------------------- /src/util/session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydu2002/chat_gpt_oicq/HEAD/src/util/session.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydu2002/chat_gpt_oicq/HEAD/tsconfig.json --------------------------------------------------------------------------------