├── .gitattributes ├── __pycache__ ├── chat_gpt_api.cpython-311.pyc └── prompts.cpython-311.pyc ├── app.py ├── chat_gpt_api.py ├── prompts.py └── run-me.bat /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassancs91/Auto-GPT-YouTube-Prototype/HEAD/.gitattributes -------------------------------------------------------------------------------- /__pycache__/chat_gpt_api.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassancs91/Auto-GPT-YouTube-Prototype/HEAD/__pycache__/chat_gpt_api.cpython-311.pyc -------------------------------------------------------------------------------- /__pycache__/prompts.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassancs91/Auto-GPT-YouTube-Prototype/HEAD/__pycache__/prompts.cpython-311.pyc -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassancs91/Auto-GPT-YouTube-Prototype/HEAD/app.py -------------------------------------------------------------------------------- /chat_gpt_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassancs91/Auto-GPT-YouTube-Prototype/HEAD/chat_gpt_api.py -------------------------------------------------------------------------------- /prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassancs91/Auto-GPT-YouTube-Prototype/HEAD/prompts.py -------------------------------------------------------------------------------- /run-me.bat: -------------------------------------------------------------------------------- 1 | python app.py 2 | pause --------------------------------------------------------------------------------