├── Procfile ├── README.md ├── harshitethic.py └── requirements.txt /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 harshitethic.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshitethic/ChatGPT-Telegram-Bot/HEAD/README.md -------------------------------------------------------------------------------- /harshitethic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshitethic/ChatGPT-Telegram-Bot/HEAD/harshitethic.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | python-telegram-bot 2 | VaderSentiment 3 | openai 4 | regex 5 | --------------------------------------------------------------------------------