├── .github ├── dependabot.yml └── workflows │ └── main.yml ├── .gitignore ├── README.md ├── codeguard ├── chatgptClient.ts ├── client.ts ├── main.ts ├── prompt.ts └── utils.ts ├── package.json ├── src ├── chatgpt.ts ├── index.ts └── utils.ts └── tsconfig.json /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzbac/chatgpt-plus-api-client/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzbac/chatgpt-plus-api-client/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzbac/chatgpt-plus-api-client/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzbac/chatgpt-plus-api-client/HEAD/README.md -------------------------------------------------------------------------------- /codeguard/chatgptClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzbac/chatgpt-plus-api-client/HEAD/codeguard/chatgptClient.ts -------------------------------------------------------------------------------- /codeguard/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzbac/chatgpt-plus-api-client/HEAD/codeguard/client.ts -------------------------------------------------------------------------------- /codeguard/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzbac/chatgpt-plus-api-client/HEAD/codeguard/main.ts -------------------------------------------------------------------------------- /codeguard/prompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzbac/chatgpt-plus-api-client/HEAD/codeguard/prompt.ts -------------------------------------------------------------------------------- /codeguard/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzbac/chatgpt-plus-api-client/HEAD/codeguard/utils.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzbac/chatgpt-plus-api-client/HEAD/package.json -------------------------------------------------------------------------------- /src/chatgpt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzbac/chatgpt-plus-api-client/HEAD/src/chatgpt.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzbac/chatgpt-plus-api-client/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzbac/chatgpt-plus-api-client/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzbac/chatgpt-plus-api-client/HEAD/tsconfig.json --------------------------------------------------------------------------------