├── .bots.yaml.example ├── .dockerignore ├── .env.example ├── .gitignore ├── Dockerfile ├── README.md ├── app.py ├── configs.py ├── core ├── __init__.py ├── cache.py ├── dify_client.py └── handlers.py ├── docker └── docker-compose.yaml ├── docs └── images │ ├── dify-on-dingtalk-demo.gif │ ├── dify_app_types.png │ ├── dingtalk_card_privilege.jpg │ ├── dingtalk_card_template_id.png │ └── get_dify_app_secret.png ├── pyproject.toml ├── requirements.txt └── tests └── dify_client_test.py /.bots.yaml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfanswer/dify-on-dingtalk/HEAD/.bots.yaml.example -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfanswer/dify-on-dingtalk/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfanswer/dify-on-dingtalk/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfanswer/dify-on-dingtalk/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfanswer/dify-on-dingtalk/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfanswer/dify-on-dingtalk/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfanswer/dify-on-dingtalk/HEAD/app.py -------------------------------------------------------------------------------- /configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfanswer/dify-on-dingtalk/HEAD/configs.py -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfanswer/dify-on-dingtalk/HEAD/core/__init__.py -------------------------------------------------------------------------------- /core/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfanswer/dify-on-dingtalk/HEAD/core/cache.py -------------------------------------------------------------------------------- /core/dify_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfanswer/dify-on-dingtalk/HEAD/core/dify_client.py -------------------------------------------------------------------------------- /core/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfanswer/dify-on-dingtalk/HEAD/core/handlers.py -------------------------------------------------------------------------------- /docker/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfanswer/dify-on-dingtalk/HEAD/docker/docker-compose.yaml -------------------------------------------------------------------------------- /docs/images/dify-on-dingtalk-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfanswer/dify-on-dingtalk/HEAD/docs/images/dify-on-dingtalk-demo.gif -------------------------------------------------------------------------------- /docs/images/dify_app_types.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfanswer/dify-on-dingtalk/HEAD/docs/images/dify_app_types.png -------------------------------------------------------------------------------- /docs/images/dingtalk_card_privilege.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfanswer/dify-on-dingtalk/HEAD/docs/images/dingtalk_card_privilege.jpg -------------------------------------------------------------------------------- /docs/images/dingtalk_card_template_id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfanswer/dify-on-dingtalk/HEAD/docs/images/dingtalk_card_template_id.png -------------------------------------------------------------------------------- /docs/images/get_dify_app_secret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfanswer/dify-on-dingtalk/HEAD/docs/images/get_dify_app_secret.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfanswer/dify-on-dingtalk/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfanswer/dify-on-dingtalk/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/dify_client_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zfanswer/dify-on-dingtalk/HEAD/tests/dify_client_test.py --------------------------------------------------------------------------------