├── .gitignore ├── LICENSE ├── README.md ├── config.ini ├── images └── usage-preview.png ├── main.py ├── models ├── js.txt ├── py.txt └── ts.txt ├── modules ├── autodoc.py ├── divider.py ├── file.py ├── prompt.py ├── result.py └── settings.py ├── requirements.txt └── results ├── js └── example_commented.js ├── python ├── autodoc_commented.py ├── divider_commented.py ├── file_commented.py ├── prompt_commented.py ├── result_commented.py └── settings_commented.py └── ts ├── example_2_commented.ts └── example_commented.ts /.gitignore: -------------------------------------------------------------------------------- 1 | *__pycache__ 2 | /venv 3 | 4 | /.vscode 5 | /token.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awekrx/AutoDoc-ChatGPT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awekrx/AutoDoc-ChatGPT/HEAD/README.md -------------------------------------------------------------------------------- /config.ini: -------------------------------------------------------------------------------- 1 | [ChatGPT] 2 | email= 3 | password= 4 | session_token= -------------------------------------------------------------------------------- /images/usage-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awekrx/AutoDoc-ChatGPT/HEAD/images/usage-preview.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awekrx/AutoDoc-ChatGPT/HEAD/main.py -------------------------------------------------------------------------------- /models/js.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awekrx/AutoDoc-ChatGPT/HEAD/models/js.txt -------------------------------------------------------------------------------- /models/py.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awekrx/AutoDoc-ChatGPT/HEAD/models/py.txt -------------------------------------------------------------------------------- /models/ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awekrx/AutoDoc-ChatGPT/HEAD/models/ts.txt -------------------------------------------------------------------------------- /modules/autodoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awekrx/AutoDoc-ChatGPT/HEAD/modules/autodoc.py -------------------------------------------------------------------------------- /modules/divider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awekrx/AutoDoc-ChatGPT/HEAD/modules/divider.py -------------------------------------------------------------------------------- /modules/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awekrx/AutoDoc-ChatGPT/HEAD/modules/file.py -------------------------------------------------------------------------------- /modules/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awekrx/AutoDoc-ChatGPT/HEAD/modules/prompt.py -------------------------------------------------------------------------------- /modules/result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awekrx/AutoDoc-ChatGPT/HEAD/modules/result.py -------------------------------------------------------------------------------- /modules/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awekrx/AutoDoc-ChatGPT/HEAD/modules/settings.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awekrx/AutoDoc-ChatGPT/HEAD/requirements.txt -------------------------------------------------------------------------------- /results/js/example_commented.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awekrx/AutoDoc-ChatGPT/HEAD/results/js/example_commented.js -------------------------------------------------------------------------------- /results/python/autodoc_commented.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awekrx/AutoDoc-ChatGPT/HEAD/results/python/autodoc_commented.py -------------------------------------------------------------------------------- /results/python/divider_commented.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awekrx/AutoDoc-ChatGPT/HEAD/results/python/divider_commented.py -------------------------------------------------------------------------------- /results/python/file_commented.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awekrx/AutoDoc-ChatGPT/HEAD/results/python/file_commented.py -------------------------------------------------------------------------------- /results/python/prompt_commented.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awekrx/AutoDoc-ChatGPT/HEAD/results/python/prompt_commented.py -------------------------------------------------------------------------------- /results/python/result_commented.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awekrx/AutoDoc-ChatGPT/HEAD/results/python/result_commented.py -------------------------------------------------------------------------------- /results/python/settings_commented.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awekrx/AutoDoc-ChatGPT/HEAD/results/python/settings_commented.py -------------------------------------------------------------------------------- /results/ts/example_2_commented.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awekrx/AutoDoc-ChatGPT/HEAD/results/ts/example_2_commented.ts -------------------------------------------------------------------------------- /results/ts/example_commented.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awekrx/AutoDoc-ChatGPT/HEAD/results/ts/example_commented.ts --------------------------------------------------------------------------------