├── .dockerignore ├── .env.example ├── .full-env.example ├── .github └── workflows │ ├── docker-debug.yml │ └── docker-release.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── Dockerfile ├── LICENSE ├── README.md ├── compose.yaml ├── config.json.example ├── custom_help_message.txt ├── full-config.json.example ├── requirements-dev.txt ├── requirements.txt └── src ├── bot.py ├── flowise.py ├── gpt_vision.py ├── gptbot.py ├── imagegen.py ├── lc_manager.py ├── log.py ├── main.py ├── send_image.py └── send_message.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hibobmaster/matrix_chatgpt_bot/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hibobmaster/matrix_chatgpt_bot/HEAD/.env.example -------------------------------------------------------------------------------- /.full-env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hibobmaster/matrix_chatgpt_bot/HEAD/.full-env.example -------------------------------------------------------------------------------- /.github/workflows/docker-debug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hibobmaster/matrix_chatgpt_bot/HEAD/.github/workflows/docker-debug.yml -------------------------------------------------------------------------------- /.github/workflows/docker-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hibobmaster/matrix_chatgpt_bot/HEAD/.github/workflows/docker-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hibobmaster/matrix_chatgpt_bot/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hibobmaster/matrix_chatgpt_bot/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hibobmaster/matrix_chatgpt_bot/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hibobmaster/matrix_chatgpt_bot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hibobmaster/matrix_chatgpt_bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hibobmaster/matrix_chatgpt_bot/HEAD/README.md -------------------------------------------------------------------------------- /compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hibobmaster/matrix_chatgpt_bot/HEAD/compose.yaml -------------------------------------------------------------------------------- /config.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hibobmaster/matrix_chatgpt_bot/HEAD/config.json.example -------------------------------------------------------------------------------- /custom_help_message.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hibobmaster/matrix_chatgpt_bot/HEAD/custom_help_message.txt -------------------------------------------------------------------------------- /full-config.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hibobmaster/matrix_chatgpt_bot/HEAD/full-config.json.example -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hibobmaster/matrix_chatgpt_bot/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hibobmaster/matrix_chatgpt_bot/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hibobmaster/matrix_chatgpt_bot/HEAD/src/bot.py -------------------------------------------------------------------------------- /src/flowise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hibobmaster/matrix_chatgpt_bot/HEAD/src/flowise.py -------------------------------------------------------------------------------- /src/gpt_vision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hibobmaster/matrix_chatgpt_bot/HEAD/src/gpt_vision.py -------------------------------------------------------------------------------- /src/gptbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hibobmaster/matrix_chatgpt_bot/HEAD/src/gptbot.py -------------------------------------------------------------------------------- /src/imagegen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hibobmaster/matrix_chatgpt_bot/HEAD/src/imagegen.py -------------------------------------------------------------------------------- /src/lc_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hibobmaster/matrix_chatgpt_bot/HEAD/src/lc_manager.py -------------------------------------------------------------------------------- /src/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hibobmaster/matrix_chatgpt_bot/HEAD/src/log.py -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hibobmaster/matrix_chatgpt_bot/HEAD/src/main.py -------------------------------------------------------------------------------- /src/send_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hibobmaster/matrix_chatgpt_bot/HEAD/src/send_image.py -------------------------------------------------------------------------------- /src/send_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hibobmaster/matrix_chatgpt_bot/HEAD/src/send_message.py --------------------------------------------------------------------------------