├── .dockerignore ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── docker-compose.yml ├── main.py └── richtext.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzh1996/chatgpt-telegram-bot/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzh1996/chatgpt-telegram-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzh1996/chatgpt-telegram-bot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzh1996/chatgpt-telegram-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzh1996/chatgpt-telegram-bot/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzh1996/chatgpt-telegram-bot/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzh1996/chatgpt-telegram-bot/HEAD/main.py -------------------------------------------------------------------------------- /richtext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzh1996/chatgpt-telegram-bot/HEAD/richtext.py --------------------------------------------------------------------------------