[PR #1646] [CLOSED] WIP: feat: Introduce datasource plugins for RAG 2.0 #2011

Closed
opened 2026-02-16 11:15:51 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langgenius/dify-official-plugins/pull/1646
Author: @QuantumGhost
Created: 9/3/2025
Status: Closed

Base: mainHead: feat/datasource


📝 Commits (10+)

📊 Changes

1730 files changed (+124280 additions, -9881 deletions)

View changed files

📝 .assets/bar.png (+0 -0)
.github/ISSUE_TEMPLATE/feature_request.yml (+40 -0)
📝 .github/pull_request_template.md (+1 -1)
📝 .gitignore (+1 -0)
📝 agent-strategies/cot_agent/manifest.yaml (+2 -1)
📝 agent-strategies/cot_agent/requirements.txt (+1 -1)
📝 agent-strategies/cot_agent/strategies/ReAct.py (+46 -1)
📝 agent-strategies/cot_agent/strategies/ReAct.yaml (+8 -0)
📝 agent-strategies/cot_agent/strategies/function_calling.py (+95 -19)
📝 agent-strategies/cot_agent/strategies/function_calling.yaml (+8 -0)
datasources/aws_s3_storage/.difyignore (+179 -0)
datasources/aws_s3_storage/PRIVACY.md (+47 -0)
datasources/aws_s3_storage/README.md (+149 -0)
datasources/aws_s3_storage/_assets/icon.svg (+20 -0)
datasources/aws_s3_storage/datasources/aws_s3_storage.py (+82 -0)
datasources/aws_s3_storage/datasources/aws_s3_storage.yaml (+20 -0)
datasources/aws_s3_storage/main.py (+6 -0)
datasources/aws_s3_storage/manifest.yaml (+30 -0)
datasources/aws_s3_storage/provider/aws_s3_storage.py (+35 -0)
datasources/aws_s3_storage/provider/aws_s3_storage.yaml (+51 -0)

...and 80 more files

📄 Description

Related Issues or Context

This PR contains Changes to Non-Plugin

  • Documentation
  • Other

This PR contains Changes to Non-LLM Models Plugin

  • I have Run Comprehensive Tests Relevant to My Changes

This PR contains Changes to LLM Models Plugin

No

Version Control (Any Changes to the Plugin Will Require Bumping the Version)

  • I have Bumped Up the Version in Manifest.yaml (Top-Level Version Field, Not in Meta Section)

Dify Plugin SDK Version

  • I have Ensured dify_plugin>=0.3.0,<0.5.0 is in requirements.txt (SDK docs)

Environment Verification (If Any Code Changes)

Local Deployment Environment

  • Dify Version is: development branch of RAG 2.0

SaaS Environment

  • I have Tested My Changes on cloud.dify.ai with a Clean Environment That Matches the Production Configuration

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/langgenius/dify-official-plugins/pull/1646 **Author:** [@QuantumGhost](https://github.com/QuantumGhost) **Created:** 9/3/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `feat/datasource` --- ### 📝 Commits (10+) - [`cda25d9`](https://github.com/langgenius/dify-official-plugins/commit/cda25d94f484e86d1ec56c665f5033d5feb8e7dd) confluence - [`ba5b257`](https://github.com/langgenius/dify-official-plugins/commit/ba5b257097887c613c4d24da2b68a2a67d1f4038) Merge remote-tracking branch 'origin/feat/datasource' into feat/datasource - [`6de5053`](https://github.com/langgenius/dify-official-plugins/commit/6de5053d87a0a45bb223539883df07e00cd2b48e) datasources下删去刷新令牌,修改credentials - [`cb14fbe`](https://github.com/langgenius/dify-official-plugins/commit/cb14fbe51422a8d278cea2facfff72d50ea0918a) Merge branch 'feat/datasource' of https://github.com/langgenius/dify-official-plugins into feat/datasource - [`748ce47`](https://github.com/langgenius/dify-official-plugins/commit/748ce47bbb2b827d35413ee045c8f0f5c8c45abe) confluence - [`6f5f4f2`](https://github.com/langgenius/dify-official-plugins/commit/6f5f4f239a0378367b0b8c18c5948f11e91641dc) azure_blob - [`450536e`](https://github.com/langgenius/dify-official-plugins/commit/450536ec1210a57579b774529c1eff3ebee45db4) Merge branch 'feat/datasource' of https://github.com/langgenius/dify-official-plugins into feat/datasource - [`1bd83f9`](https://github.com/langgenius/dify-official-plugins/commit/1bd83f97d8732164502d55cfc9eaf93240d02c84) github - [`85323c0`](https://github.com/langgenius/dify-official-plugins/commit/85323c0100e6f6385181ce56c9d7829805c8ff6a) Update version numbers for multiple datasources: firecrawl_datasource, google_cloud_storage, google_drive, jina_datasource, and notion_datasource. - [`96bdfce`](https://github.com/langgenius/dify-official-plugins/commit/96bdfcecc34651bd954144f7d37e1652bd290b11) Update version numbers for google_drive and onedrive datasources to 0.1.0 ### 📊 Changes **1730 files changed** (+124280 additions, -9881 deletions) <details> <summary>View changed files</summary> 📝 `.assets/bar.png` (+0 -0) ➕ `.github/ISSUE_TEMPLATE/feature_request.yml` (+40 -0) 📝 `.github/pull_request_template.md` (+1 -1) 📝 `.gitignore` (+1 -0) 📝 `agent-strategies/cot_agent/manifest.yaml` (+2 -1) 📝 `agent-strategies/cot_agent/requirements.txt` (+1 -1) 📝 `agent-strategies/cot_agent/strategies/ReAct.py` (+46 -1) 📝 `agent-strategies/cot_agent/strategies/ReAct.yaml` (+8 -0) 📝 `agent-strategies/cot_agent/strategies/function_calling.py` (+95 -19) 📝 `agent-strategies/cot_agent/strategies/function_calling.yaml` (+8 -0) ➕ `datasources/aws_s3_storage/.difyignore` (+179 -0) ➕ `datasources/aws_s3_storage/PRIVACY.md` (+47 -0) ➕ `datasources/aws_s3_storage/README.md` (+149 -0) ➕ `datasources/aws_s3_storage/_assets/icon.svg` (+20 -0) ➕ `datasources/aws_s3_storage/datasources/aws_s3_storage.py` (+82 -0) ➕ `datasources/aws_s3_storage/datasources/aws_s3_storage.yaml` (+20 -0) ➕ `datasources/aws_s3_storage/main.py` (+6 -0) ➕ `datasources/aws_s3_storage/manifest.yaml` (+30 -0) ➕ `datasources/aws_s3_storage/provider/aws_s3_storage.py` (+35 -0) ➕ `datasources/aws_s3_storage/provider/aws_s3_storage.yaml` (+51 -0) _...and 80 more files_ </details> ### 📄 Description ## Related Issues or Context ## This PR contains Changes to *Non-Plugin* - [ ] Documentation - [ ] Other ## This PR contains Changes to *Non-LLM Models Plugin* - [ ] I have Run Comprehensive Tests Relevant to My Changes <!-- 📷 Include Screenshots/Videos Demonstrating the Fix, New Feature, or the Behavior Before/After Breaking Changes. --> ## This PR contains Changes to *LLM Models Plugin* No ## Version Control (Any Changes to the Plugin Will Require Bumping the Version) - [ ] I have Bumped Up the Version in Manifest.yaml (Top-Level `Version` Field, Not in Meta Section) <!-- ⚠️ NOTE: Version Format: MAJOR.MINOR.PATCH - MAJOR (0.x.x): Reserved for Significant architectural changes or incompatible API modifications - MINOR (x.0.x): For New feature additions while maintaining backward compatibility - PATCH (x.x.0): For Backward-compatible bug fixes and minor improvements - Note: Each Version Component (MAJOR, MINOR, PATCH) Can Be 2 Digits, e.g., 10.11.22 --> ## Dify Plugin SDK Version - [ ] I have Ensured `dify_plugin>=0.3.0,<0.5.0` is in requirements.txt ([SDK docs](https://github.com/langgenius/dify-plugin-sdks/blob/main/python/README.md)) ## Environment Verification (If Any Code Changes) ### Local Deployment Environment - [x] Dify Version is: development branch of RAG 2.0 ### SaaS Environment - [ ] I have Tested My Changes on cloud.dify.ai with a Clean Environment That Matches the Production Configuration --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-16 11:15:51 -05:00
yindo closed this issue 2026-02-16 11:15:51 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langgenius/dify-official-plugins#2011