├── .difyignore ├── .env.example ├── .gitignore ├── CLAUDE.md ├── GUIDE.md ├── PRIVACY.md ├── README.md ├── README_zh.md ├── _assets └── icon.svg ├── endpoints ├── wechat │ ├── __init__.py │ ├── api │ │ ├── __init__.py │ │ ├── custom_message.py │ │ └── media_manager.py │ ├── crypto.py │ ├── factory.py │ ├── formatters.py │ ├── handlers │ │ ├── __init__.py │ │ ├── base.py │ │ ├── event.py │ │ ├── image.py │ │ ├── link.py │ │ ├── text.py │ │ ├── unsupported.py │ │ └── voice.py │ ├── models.py │ ├── parsers.py │ ├── retry_tracker.py │ └── waiting_manager.py ├── wechat_get.py ├── wechat_get.yaml ├── wechat_post.py └── wechat_post.yaml ├── group └── wechat_sub.yaml ├── img.png ├── main.py ├── manifest.yaml └── requirements.txt /.difyignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bikeread/dify_wechat_plugin/HEAD/.difyignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bikeread/dify_wechat_plugin/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bikeread/dify_wechat_plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bikeread/dify_wechat_plugin/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bikeread/dify_wechat_plugin/HEAD/GUIDE.md -------------------------------------------------------------------------------- /PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bikeread/dify_wechat_plugin/HEAD/PRIVACY.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bikeread/dify_wechat_plugin/HEAD/README.md -------------------------------------------------------------------------------- /README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bikeread/dify_wechat_plugin/HEAD/README_zh.md -------------------------------------------------------------------------------- /_assets/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bikeread/dify_wechat_plugin/HEAD/_assets/icon.svg -------------------------------------------------------------------------------- /endpoints/wechat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bikeread/dify_wechat_plugin/HEAD/endpoints/wechat/__init__.py -------------------------------------------------------------------------------- /endpoints/wechat/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bikeread/dify_wechat_plugin/HEAD/endpoints/wechat/api/__init__.py -------------------------------------------------------------------------------- /endpoints/wechat/api/custom_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bikeread/dify_wechat_plugin/HEAD/endpoints/wechat/api/custom_message.py -------------------------------------------------------------------------------- /endpoints/wechat/api/media_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bikeread/dify_wechat_plugin/HEAD/endpoints/wechat/api/media_manager.py -------------------------------------------------------------------------------- /endpoints/wechat/crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bikeread/dify_wechat_plugin/HEAD/endpoints/wechat/crypto.py -------------------------------------------------------------------------------- /endpoints/wechat/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bikeread/dify_wechat_plugin/HEAD/endpoints/wechat/factory.py -------------------------------------------------------------------------------- /endpoints/wechat/formatters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bikeread/dify_wechat_plugin/HEAD/endpoints/wechat/formatters.py -------------------------------------------------------------------------------- /endpoints/wechat/handlers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bikeread/dify_wechat_plugin/HEAD/endpoints/wechat/handlers/__init__.py -------------------------------------------------------------------------------- /endpoints/wechat/handlers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bikeread/dify_wechat_plugin/HEAD/endpoints/wechat/handlers/base.py -------------------------------------------------------------------------------- /endpoints/wechat/handlers/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bikeread/dify_wechat_plugin/HEAD/endpoints/wechat/handlers/event.py -------------------------------------------------------------------------------- /endpoints/wechat/handlers/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bikeread/dify_wechat_plugin/HEAD/endpoints/wechat/handlers/image.py -------------------------------------------------------------------------------- /endpoints/wechat/handlers/link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bikeread/dify_wechat_plugin/HEAD/endpoints/wechat/handlers/link.py -------------------------------------------------------------------------------- /endpoints/wechat/handlers/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bikeread/dify_wechat_plugin/HEAD/endpoints/wechat/handlers/text.py -------------------------------------------------------------------------------- /endpoints/wechat/handlers/unsupported.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bikeread/dify_wechat_plugin/HEAD/endpoints/wechat/handlers/unsupported.py -------------------------------------------------------------------------------- /endpoints/wechat/handlers/voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bikeread/dify_wechat_plugin/HEAD/endpoints/wechat/handlers/voice.py -------------------------------------------------------------------------------- /endpoints/wechat/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bikeread/dify_wechat_plugin/HEAD/endpoints/wechat/models.py -------------------------------------------------------------------------------- /endpoints/wechat/parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bikeread/dify_wechat_plugin/HEAD/endpoints/wechat/parsers.py -------------------------------------------------------------------------------- /endpoints/wechat/retry_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bikeread/dify_wechat_plugin/HEAD/endpoints/wechat/retry_tracker.py -------------------------------------------------------------------------------- /endpoints/wechat/waiting_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bikeread/dify_wechat_plugin/HEAD/endpoints/wechat/waiting_manager.py -------------------------------------------------------------------------------- /endpoints/wechat_get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bikeread/dify_wechat_plugin/HEAD/endpoints/wechat_get.py -------------------------------------------------------------------------------- /endpoints/wechat_get.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bikeread/dify_wechat_plugin/HEAD/endpoints/wechat_get.yaml -------------------------------------------------------------------------------- /endpoints/wechat_post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bikeread/dify_wechat_plugin/HEAD/endpoints/wechat_post.py -------------------------------------------------------------------------------- /endpoints/wechat_post.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bikeread/dify_wechat_plugin/HEAD/endpoints/wechat_post.yaml -------------------------------------------------------------------------------- /group/wechat_sub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bikeread/dify_wechat_plugin/HEAD/group/wechat_sub.yaml -------------------------------------------------------------------------------- /img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bikeread/dify_wechat_plugin/HEAD/img.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bikeread/dify_wechat_plugin/HEAD/main.py -------------------------------------------------------------------------------- /manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bikeread/dify_wechat_plugin/HEAD/manifest.yaml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bikeread/dify_wechat_plugin/HEAD/requirements.txt --------------------------------------------------------------------------------