├── .dockerignore ├── .env.example ├── .gitignore ├── Dockerfile ├── README.md ├── asssets └── img.png ├── config.py ├── docker-compose.yml ├── main.py ├── process_command.py ├── requirements.txt ├── utility.py └── views.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullmastermind/py-chatgpt-discord-bot/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- 1 | BOT_TOKEN= 2 | OPENAI_API_KEY= -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullmastermind/py-chatgpt-discord-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullmastermind/py-chatgpt-discord-bot/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullmastermind/py-chatgpt-discord-bot/HEAD/README.md -------------------------------------------------------------------------------- /asssets/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullmastermind/py-chatgpt-discord-bot/HEAD/asssets/img.png -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullmastermind/py-chatgpt-discord-bot/HEAD/config.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullmastermind/py-chatgpt-discord-bot/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullmastermind/py-chatgpt-discord-bot/HEAD/main.py -------------------------------------------------------------------------------- /process_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullmastermind/py-chatgpt-discord-bot/HEAD/process_command.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | py-cord==2.4.1 2 | openai==0.27.2 3 | python-dotenv==1.0.0 4 | -------------------------------------------------------------------------------- /utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullmastermind/py-chatgpt-discord-bot/HEAD/utility.py -------------------------------------------------------------------------------- /views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullmastermind/py-chatgpt-discord-bot/HEAD/views.py --------------------------------------------------------------------------------