├── .devcontainer ├── devcontainer.json └── postCreateCommand.sh ├── .difyignore ├── .env.example ├── .github ├── dependabot.yml └── workflows │ └── package-and-release.yml ├── .gitignore ├── .ruff.toml ├── GUIDE.md ├── LICENSE ├── PRIVACY.md ├── README.difypkg.md ├── README.md ├── _assets ├── 00819-icon-service-Form-Recognizers.svg ├── img_azure_keys_and_endpoint.jpg ├── img_set_up_authorize.jpg ├── img_to_authorize.jpg └── img_tool.jpg ├── main.py ├── manifest.yaml ├── provider ├── azure_ai_document_intelligence.py └── azure_ai_document_intelligence.yaml ├── requirements.txt └── tools ├── extract_document.py └── extract_document.yaml /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fujita-h/dify-plugin-azure-ai-document-intelligence/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/postCreateCommand.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fujita-h/dify-plugin-azure-ai-document-intelligence/HEAD/.devcontainer/postCreateCommand.sh -------------------------------------------------------------------------------- /.difyignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fujita-h/dify-plugin-azure-ai-document-intelligence/HEAD/.difyignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fujita-h/dify-plugin-azure-ai-document-intelligence/HEAD/.env.example -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fujita-h/dify-plugin-azure-ai-document-intelligence/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/package-and-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fujita-h/dify-plugin-azure-ai-document-intelligence/HEAD/.github/workflows/package-and-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fujita-h/dify-plugin-azure-ai-document-intelligence/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fujita-h/dify-plugin-azure-ai-document-intelligence/HEAD/.ruff.toml -------------------------------------------------------------------------------- /GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fujita-h/dify-plugin-azure-ai-document-intelligence/HEAD/GUIDE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fujita-h/dify-plugin-azure-ai-document-intelligence/HEAD/LICENSE -------------------------------------------------------------------------------- /PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fujita-h/dify-plugin-azure-ai-document-intelligence/HEAD/PRIVACY.md -------------------------------------------------------------------------------- /README.difypkg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fujita-h/dify-plugin-azure-ai-document-intelligence/HEAD/README.difypkg.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fujita-h/dify-plugin-azure-ai-document-intelligence/HEAD/README.md -------------------------------------------------------------------------------- /_assets/00819-icon-service-Form-Recognizers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fujita-h/dify-plugin-azure-ai-document-intelligence/HEAD/_assets/00819-icon-service-Form-Recognizers.svg -------------------------------------------------------------------------------- /_assets/img_azure_keys_and_endpoint.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fujita-h/dify-plugin-azure-ai-document-intelligence/HEAD/_assets/img_azure_keys_and_endpoint.jpg -------------------------------------------------------------------------------- /_assets/img_set_up_authorize.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fujita-h/dify-plugin-azure-ai-document-intelligence/HEAD/_assets/img_set_up_authorize.jpg -------------------------------------------------------------------------------- /_assets/img_to_authorize.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fujita-h/dify-plugin-azure-ai-document-intelligence/HEAD/_assets/img_to_authorize.jpg -------------------------------------------------------------------------------- /_assets/img_tool.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fujita-h/dify-plugin-azure-ai-document-intelligence/HEAD/_assets/img_tool.jpg -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fujita-h/dify-plugin-azure-ai-document-intelligence/HEAD/main.py -------------------------------------------------------------------------------- /manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fujita-h/dify-plugin-azure-ai-document-intelligence/HEAD/manifest.yaml -------------------------------------------------------------------------------- /provider/azure_ai_document_intelligence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fujita-h/dify-plugin-azure-ai-document-intelligence/HEAD/provider/azure_ai_document_intelligence.py -------------------------------------------------------------------------------- /provider/azure_ai_document_intelligence.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fujita-h/dify-plugin-azure-ai-document-intelligence/HEAD/provider/azure_ai_document_intelligence.yaml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | dify_plugin 2 | azure-ai-documentintelligence==1.0.0 3 | -------------------------------------------------------------------------------- /tools/extract_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fujita-h/dify-plugin-azure-ai-document-intelligence/HEAD/tools/extract_document.py -------------------------------------------------------------------------------- /tools/extract_document.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fujita-h/dify-plugin-azure-ai-document-intelligence/HEAD/tools/extract_document.yaml --------------------------------------------------------------------------------