[PR #1123] [MERGED] Feat:dataset retiever resource #22903

Closed
opened 2026-02-21 20:20:01 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langgenius/dify/pull/1123
Author: @JohnJyong
Created: 9/8/2023
Status: Merged
Merged: 9/10/2023
Merged by: @JohnJyong

Base: mainHead: feat/dataset-retiever-resource


📝 Commits (10+)

  • 630d7ca add segment id
  • 48f4cd6 data source prompt
  • b58d9bf Merge branch 'main' into feat/dataset-retiever-resource
  • 7753a18 data source prompt
  • b723a13 Merge branch 'main' into feat/dataset-retiever-resource
  • 530b85a data source prompt
  • 95e94de data source prompt
  • ad96099 add app retriever resource config
  • e30be34 add app retriever resource config
  • f61934a fix app retriever resource config

📊 Changes

32 files changed (+442 additions, -33 deletions)

View changed files

📝 api/controllers/console/app/app.py (+1 -0)
📝 api/controllers/console/app/completion.py (+2 -0)
📝 api/controllers/console/explore/completion.py (+2 -0)
📝 api/controllers/console/explore/message.py (+20 -0)
📝 api/controllers/console/explore/parameter.py (+2 -0)
📝 api/controllers/console/universal_chat/chat.py (+2 -0)
📝 api/controllers/console/universal_chat/message.py (+20 -0)
📝 api/controllers/console/universal_chat/parameter.py (+5 -0)
📝 api/controllers/console/universal_chat/wraps.py (+1 -0)
📝 api/controllers/service_api/app/app.py (+2 -0)
📝 api/controllers/service_api/app/completion.py (+4 -0)
📝 api/controllers/service_api/app/message.py (+19 -0)
📝 api/controllers/web/app.py (+2 -0)
📝 api/controllers/web/completion.py (+4 -0)
📝 api/controllers/web/message.py (+20 -0)
📝 api/core/agent/agent/multi_dataset_router_agent.py (+5 -0)
📝 api/core/callback_handler/dataset_tool_callback_handler.py (+1 -4)
📝 api/core/callback_handler/index_tool_callback_handler.py (+7 -1)
📝 api/core/completion.py (+6 -4)
📝 api/core/conversation_message_task.py (+53 -3)

...and 12 more files

📄 Description

No description provided


🔄 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/pull/1123 **Author:** [@JohnJyong](https://github.com/JohnJyong) **Created:** 9/8/2023 **Status:** ✅ Merged **Merged:** 9/10/2023 **Merged by:** [@JohnJyong](https://github.com/JohnJyong) **Base:** `main` ← **Head:** `feat/dataset-retiever-resource` --- ### 📝 Commits (10+) - [`630d7ca`](https://github.com/langgenius/dify/commit/630d7ca58e2017f2a6e5b6650ccc754d0df70a2a) add segment id - [`48f4cd6`](https://github.com/langgenius/dify/commit/48f4cd6df181adf3ace65e1ff0e440481c4115d8) data source prompt - [`b58d9bf`](https://github.com/langgenius/dify/commit/b58d9bffee46e04e6159d3e1dec716aa951df49c) Merge branch 'main' into feat/dataset-retiever-resource - [`7753a18`](https://github.com/langgenius/dify/commit/7753a1852a3e89ede2c3588d86c8f0ec15c927f6) data source prompt - [`b723a13`](https://github.com/langgenius/dify/commit/b723a13b9fd71bc3b044c0710194262b60b15d38) Merge branch 'main' into feat/dataset-retiever-resource - [`530b85a`](https://github.com/langgenius/dify/commit/530b85aa95830824bc4f3b2f60f2f96913820a6c) data source prompt - [`95e94de`](https://github.com/langgenius/dify/commit/95e94de9bfc60d6a86d01c9b6f5fbacef3c1e2fe) data source prompt - [`ad96099`](https://github.com/langgenius/dify/commit/ad960998a13f9a9aeff5d34fb853ae048c8f02ed) add app retriever resource config - [`e30be34`](https://github.com/langgenius/dify/commit/e30be342fea1d2ed685928fe1dbbf9eb5f509d6e) add app retriever resource config - [`f61934a`](https://github.com/langgenius/dify/commit/f61934a5d7c94df42db5ee4968497676c74ce152) fix app retriever resource config ### 📊 Changes **32 files changed** (+442 additions, -33 deletions) <details> <summary>View changed files</summary> 📝 `api/controllers/console/app/app.py` (+1 -0) 📝 `api/controllers/console/app/completion.py` (+2 -0) 📝 `api/controllers/console/explore/completion.py` (+2 -0) 📝 `api/controllers/console/explore/message.py` (+20 -0) 📝 `api/controllers/console/explore/parameter.py` (+2 -0) 📝 `api/controllers/console/universal_chat/chat.py` (+2 -0) 📝 `api/controllers/console/universal_chat/message.py` (+20 -0) 📝 `api/controllers/console/universal_chat/parameter.py` (+5 -0) 📝 `api/controllers/console/universal_chat/wraps.py` (+1 -0) 📝 `api/controllers/service_api/app/app.py` (+2 -0) 📝 `api/controllers/service_api/app/completion.py` (+4 -0) 📝 `api/controllers/service_api/app/message.py` (+19 -0) 📝 `api/controllers/web/app.py` (+2 -0) 📝 `api/controllers/web/completion.py` (+4 -0) 📝 `api/controllers/web/message.py` (+20 -0) 📝 `api/core/agent/agent/multi_dataset_router_agent.py` (+5 -0) 📝 `api/core/callback_handler/dataset_tool_callback_handler.py` (+1 -4) 📝 `api/core/callback_handler/index_tool_callback_handler.py` (+7 -1) 📝 `api/core/completion.py` (+6 -4) 📝 `api/core/conversation_message_task.py` (+53 -3) _...and 12 more files_ </details> ### 📄 Description _No description provided_ --- <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-21 20:20:01 -05:00
yindo closed this issue 2026-02-21 20:20:01 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langgenius/dify#22903