├── .devcontainer └── devcontainer.json ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ ├── custom.md │ └── feature_request.yml └── workflows │ ├── codeql.yml │ └── python-publish.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── Makefile ├── config.json.example ├── docs ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── PRIVACY.md ├── README.md ├── README_ja.md ├── README_ko.md ├── README_sp.md ├── README_zh.md ├── SECURITY.md ├── plugins.json ├── view.gif └── wiki │ ├── Authentication.md │ ├── Code-examples.md │ ├── Home.md │ ├── Recipient.md │ ├── Star-history.md │ ├── V1.md │ └── V3.md ├── logo.png ├── requirements.txt ├── setup.cfg ├── setup.py ├── src └── revChatGPT │ ├── V1.py │ ├── V3.py │ ├── __init__.py │ ├── __main__.py │ ├── config │ └── enable_internet.json │ ├── typings.py │ ├── utils.py │ └── version.py └── tests ├── debug.bat └── test_recipient.py /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/ChatGPT/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/ChatGPT/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/ChatGPT/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/ChatGPT/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/ChatGPT/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/ChatGPT/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/ChatGPT/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/ChatGPT/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/ChatGPT/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/ChatGPT/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/ChatGPT/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/ChatGPT/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/ChatGPT/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/ChatGPT/HEAD/Makefile -------------------------------------------------------------------------------- /config.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/ChatGPT/HEAD/config.json.example -------------------------------------------------------------------------------- /docs/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/ChatGPT/HEAD/docs/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/ChatGPT/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/ChatGPT/HEAD/docs/PRIVACY.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/ChatGPT/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/README_ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/ChatGPT/HEAD/docs/README_ja.md -------------------------------------------------------------------------------- /docs/README_ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/ChatGPT/HEAD/docs/README_ko.md -------------------------------------------------------------------------------- /docs/README_sp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/ChatGPT/HEAD/docs/README_sp.md -------------------------------------------------------------------------------- /docs/README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/ChatGPT/HEAD/docs/README_zh.md -------------------------------------------------------------------------------- /docs/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/ChatGPT/HEAD/docs/SECURITY.md -------------------------------------------------------------------------------- /docs/plugins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/ChatGPT/HEAD/docs/plugins.json -------------------------------------------------------------------------------- /docs/view.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/ChatGPT/HEAD/docs/view.gif -------------------------------------------------------------------------------- /docs/wiki/Authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/ChatGPT/HEAD/docs/wiki/Authentication.md -------------------------------------------------------------------------------- /docs/wiki/Code-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/ChatGPT/HEAD/docs/wiki/Code-examples.md -------------------------------------------------------------------------------- /docs/wiki/Home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/ChatGPT/HEAD/docs/wiki/Home.md -------------------------------------------------------------------------------- /docs/wiki/Recipient.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/ChatGPT/HEAD/docs/wiki/Recipient.md -------------------------------------------------------------------------------- /docs/wiki/Star-history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/ChatGPT/HEAD/docs/wiki/Star-history.md -------------------------------------------------------------------------------- /docs/wiki/V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/ChatGPT/HEAD/docs/wiki/V1.md -------------------------------------------------------------------------------- /docs/wiki/V3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/ChatGPT/HEAD/docs/wiki/V3.md -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/ChatGPT/HEAD/logo.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/ChatGPT/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/ChatGPT/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/ChatGPT/HEAD/setup.py -------------------------------------------------------------------------------- /src/revChatGPT/V1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/ChatGPT/HEAD/src/revChatGPT/V1.py -------------------------------------------------------------------------------- /src/revChatGPT/V3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/ChatGPT/HEAD/src/revChatGPT/V3.py -------------------------------------------------------------------------------- /src/revChatGPT/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/ChatGPT/HEAD/src/revChatGPT/__init__.py -------------------------------------------------------------------------------- /src/revChatGPT/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/ChatGPT/HEAD/src/revChatGPT/__main__.py -------------------------------------------------------------------------------- /src/revChatGPT/config/enable_internet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/ChatGPT/HEAD/src/revChatGPT/config/enable_internet.json -------------------------------------------------------------------------------- /src/revChatGPT/typings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/ChatGPT/HEAD/src/revChatGPT/typings.py -------------------------------------------------------------------------------- /src/revChatGPT/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/ChatGPT/HEAD/src/revChatGPT/utils.py -------------------------------------------------------------------------------- /src/revChatGPT/version.py: -------------------------------------------------------------------------------- 1 | version = "6.8.6" 2 | -------------------------------------------------------------------------------- /tests/debug.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/ChatGPT/HEAD/tests/debug.bat -------------------------------------------------------------------------------- /tests/test_recipient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/ChatGPT/HEAD/tests/test_recipient.py --------------------------------------------------------------------------------