├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── codeql.yml │ ├── pylint.yml │ ├── python-package.yml │ └── python-publish.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .vscode └── settings.json ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── config.json.example ├── logo.png ├── setup.cfg ├── setup.py ├── src ├── __init__.py └── revChatGPT │ ├── Exceptions.py │ ├── __init__.py │ ├── __main__.py │ └── revChatGPT.py └── wiki ├── CLI-use.md ├── Contributors.md ├── Developer-Docs.md ├── Home.md ├── OpenAIAuth.md ├── Setup.md ├── Star-history.md └── revChatGPT.md /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sickcodes/ChatGPT/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sickcodes/ChatGPT/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sickcodes/ChatGPT/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/pylint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sickcodes/ChatGPT/HEAD/.github/workflows/pylint.yml -------------------------------------------------------------------------------- /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sickcodes/ChatGPT/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sickcodes/ChatGPT/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sickcodes/ChatGPT/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sickcodes/ChatGPT/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sickcodes/ChatGPT/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sickcodes/ChatGPT/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sickcodes/ChatGPT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sickcodes/ChatGPT/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sickcodes/ChatGPT/HEAD/SECURITY.md -------------------------------------------------------------------------------- /config.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sickcodes/ChatGPT/HEAD/config.json.example -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sickcodes/ChatGPT/HEAD/logo.png -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sickcodes/ChatGPT/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sickcodes/ChatGPT/HEAD/setup.py -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/revChatGPT/Exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sickcodes/ChatGPT/HEAD/src/revChatGPT/Exceptions.py -------------------------------------------------------------------------------- /src/revChatGPT/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/revChatGPT/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sickcodes/ChatGPT/HEAD/src/revChatGPT/__main__.py -------------------------------------------------------------------------------- /src/revChatGPT/revChatGPT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sickcodes/ChatGPT/HEAD/src/revChatGPT/revChatGPT.py -------------------------------------------------------------------------------- /wiki/CLI-use.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sickcodes/ChatGPT/HEAD/wiki/CLI-use.md -------------------------------------------------------------------------------- /wiki/Contributors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sickcodes/ChatGPT/HEAD/wiki/Contributors.md -------------------------------------------------------------------------------- /wiki/Developer-Docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sickcodes/ChatGPT/HEAD/wiki/Developer-Docs.md -------------------------------------------------------------------------------- /wiki/Home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sickcodes/ChatGPT/HEAD/wiki/Home.md -------------------------------------------------------------------------------- /wiki/OpenAIAuth.md: -------------------------------------------------------------------------------- 1 | https://github.com/acheong08/OpenAIAuth -------------------------------------------------------------------------------- /wiki/Setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sickcodes/ChatGPT/HEAD/wiki/Setup.md -------------------------------------------------------------------------------- /wiki/Star-history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sickcodes/ChatGPT/HEAD/wiki/Star-history.md -------------------------------------------------------------------------------- /wiki/revChatGPT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sickcodes/ChatGPT/HEAD/wiki/revChatGPT.md --------------------------------------------------------------------------------