├── .github └── workflows │ ├── python-publish.yml │ └── python-test.yml ├── .gitignore ├── LICENSE ├── WebChatGPT ├── __init__.py ├── __main__.py ├── console.py ├── errors.py ├── main.py └── utils.py ├── assets └── demo.gif ├── docs ├── CHANGELOG.md ├── DEVELOPER.md ├── README.md └── operations_flow.md ├── requirements.txt ├── setup.py └── tests └── test_webchatgpt.py /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simatwa/WebChatGPT/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.github/workflows/python-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simatwa/WebChatGPT/HEAD/.github/workflows/python-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simatwa/WebChatGPT/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simatwa/WebChatGPT/HEAD/LICENSE -------------------------------------------------------------------------------- /WebChatGPT/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simatwa/WebChatGPT/HEAD/WebChatGPT/__init__.py -------------------------------------------------------------------------------- /WebChatGPT/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simatwa/WebChatGPT/HEAD/WebChatGPT/__main__.py -------------------------------------------------------------------------------- /WebChatGPT/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simatwa/WebChatGPT/HEAD/WebChatGPT/console.py -------------------------------------------------------------------------------- /WebChatGPT/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simatwa/WebChatGPT/HEAD/WebChatGPT/errors.py -------------------------------------------------------------------------------- /WebChatGPT/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simatwa/WebChatGPT/HEAD/WebChatGPT/main.py -------------------------------------------------------------------------------- /WebChatGPT/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simatwa/WebChatGPT/HEAD/WebChatGPT/utils.py -------------------------------------------------------------------------------- /assets/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simatwa/WebChatGPT/HEAD/assets/demo.gif -------------------------------------------------------------------------------- /docs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simatwa/WebChatGPT/HEAD/docs/CHANGELOG.md -------------------------------------------------------------------------------- /docs/DEVELOPER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simatwa/WebChatGPT/HEAD/docs/DEVELOPER.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simatwa/WebChatGPT/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/operations_flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simatwa/WebChatGPT/HEAD/docs/operations_flow.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simatwa/WebChatGPT/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simatwa/WebChatGPT/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_webchatgpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simatwa/WebChatGPT/HEAD/tests/test_webchatgpt.py --------------------------------------------------------------------------------