├── .env ├── .gitignore ├── Dockerfile ├── LICENSE.md ├── README.md ├── prompts.json ├── requirements.txt ├── src ├── prompts.py └── twitterscript.py └── tweets.txt /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrusmcc/ChatGPT-Twitter-Bot/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrusmcc/ChatGPT-Twitter-Bot/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrusmcc/ChatGPT-Twitter-Bot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrusmcc/ChatGPT-Twitter-Bot/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrusmcc/ChatGPT-Twitter-Bot/HEAD/README.md -------------------------------------------------------------------------------- /prompts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrusmcc/ChatGPT-Twitter-Bot/HEAD/prompts.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrusmcc/ChatGPT-Twitter-Bot/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrusmcc/ChatGPT-Twitter-Bot/HEAD/src/prompts.py -------------------------------------------------------------------------------- /src/twitterscript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrusmcc/ChatGPT-Twitter-Bot/HEAD/src/twitterscript.py -------------------------------------------------------------------------------- /tweets.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 --------------------------------------------------------------------------------