[PR #1459] [MERGED] feat: add api-based extension & external data tool & moderation #23061

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

📋 Pull Request Information

Original PR: https://github.com/langgenius/dify/pull/1459
Author: @zxhlyh
Created: 11/6/2023
Status: Merged
Merged: 11/6/2023
Merged by: @zxhlyh

Base: mainHead: feat/add-moderation


📝 Commits (10+)

  • c69d61d feat: add moderation
  • dbfbdb0 feat: add moderation
  • 6100b92 Merge branch 'main' into feat/add-moderation
  • 0478ccc feat: add external data source
  • 7f7089b Merge branch 'main' into feat/add-moderation
  • 87a4355 feat: add settings-modal
  • aa4a193 Merge branch 'main' into feat/add-moderation
  • 1640ee1 feat: add tools
  • 7e943e7 feat: add tools
  • 9735b75 feat: add api-based-extension

📊 Changes

84 files changed (+3326 additions, -166 deletions)

View changed files

📝 web/app/(commonLayout)/layout.tsx (+7 -4)
📝 web/app/components/app/chat/answer/index.tsx (+17 -2)
📝 web/app/components/app/chat/style.module.css (+5 -0)
📝 web/app/components/app/chat/type.ts (+7 -0)
📝 web/app/components/app/configuration/config-prompt/advanced-prompt-input.tsx (+40 -1)
📝 web/app/components/app/configuration/config-prompt/simple-prompt-input.tsx (+40 -1)
📝 web/app/components/app/configuration/config/feature/choose-feature/index.tsx (+14 -0)
📝 web/app/components/app/configuration/config/feature/use-feature.tsx (+8 -0)
📝 web/app/components/app/configuration/config/index.tsx (+39 -2)
web/app/components/app/configuration/dataset-config/card-item/item.tsx (+90 -0)
📝 web/app/components/app/configuration/dataset-config/index.tsx (+10 -3)
web/app/components/app/configuration/dataset-config/settings-modal/index.tsx (+152 -0)
📝 web/app/components/app/configuration/debug/index.tsx (+19 -3)
📝 web/app/components/app/configuration/index.tsx (+38 -17)
📝 web/app/components/app/configuration/prompt-value-panel/index.tsx (+4 -2)
📝 web/app/components/app/configuration/toolbox/index.tsx (+17 -16)
web/app/components/app/configuration/toolbox/moderation/form-generation.tsx (+78 -0)
web/app/components/app/configuration/toolbox/moderation/index.tsx (+81 -0)
web/app/components/app/configuration/toolbox/moderation/moderation-content.tsx (+72 -0)
web/app/components/app/configuration/toolbox/moderation/moderation-setting-modal.tsx (+362 -0)

...and 64 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/1459 **Author:** [@zxhlyh](https://github.com/zxhlyh) **Created:** 11/6/2023 **Status:** ✅ Merged **Merged:** 11/6/2023 **Merged by:** [@zxhlyh](https://github.com/zxhlyh) **Base:** `main` ← **Head:** `feat/add-moderation` --- ### 📝 Commits (10+) - [`c69d61d`](https://github.com/langgenius/dify/commit/c69d61d6b3dcefc1c7ef18403a64df64fef50d9e) feat: add moderation - [`dbfbdb0`](https://github.com/langgenius/dify/commit/dbfbdb008b3a43c5bb9d7292883c801b3e9cb04d) feat: add moderation - [`6100b92`](https://github.com/langgenius/dify/commit/6100b92d746ecc4bf29aa8f6894bbb8a2417e877) Merge branch 'main' into feat/add-moderation - [`0478ccc`](https://github.com/langgenius/dify/commit/0478cccc758a886cc5fe8a1db654641f125f03b2) feat: add external data source - [`7f7089b`](https://github.com/langgenius/dify/commit/7f7089b84a1d7c91764e781f732f300a63366d9d) Merge branch 'main' into feat/add-moderation - [`87a4355`](https://github.com/langgenius/dify/commit/87a43557947e04f1ebea35b0137e508994fcad7b) feat: add settings-modal - [`aa4a193`](https://github.com/langgenius/dify/commit/aa4a19377086cf57227935faabbdc684b2c81121) Merge branch 'main' into feat/add-moderation - [`1640ee1`](https://github.com/langgenius/dify/commit/1640ee1e956b1b1728941ecbcaba195d3ec16304) feat: add tools - [`7e943e7`](https://github.com/langgenius/dify/commit/7e943e756b75c5782e15d4084eb574c9577a836b) feat: add tools - [`9735b75`](https://github.com/langgenius/dify/commit/9735b756203b5a17bf918ed0b0fab75d3d035ef4) feat: add api-based-extension ### 📊 Changes **84 files changed** (+3326 additions, -166 deletions) <details> <summary>View changed files</summary> 📝 `web/app/(commonLayout)/layout.tsx` (+7 -4) 📝 `web/app/components/app/chat/answer/index.tsx` (+17 -2) 📝 `web/app/components/app/chat/style.module.css` (+5 -0) 📝 `web/app/components/app/chat/type.ts` (+7 -0) 📝 `web/app/components/app/configuration/config-prompt/advanced-prompt-input.tsx` (+40 -1) 📝 `web/app/components/app/configuration/config-prompt/simple-prompt-input.tsx` (+40 -1) 📝 `web/app/components/app/configuration/config/feature/choose-feature/index.tsx` (+14 -0) 📝 `web/app/components/app/configuration/config/feature/use-feature.tsx` (+8 -0) 📝 `web/app/components/app/configuration/config/index.tsx` (+39 -2) ➕ `web/app/components/app/configuration/dataset-config/card-item/item.tsx` (+90 -0) 📝 `web/app/components/app/configuration/dataset-config/index.tsx` (+10 -3) ➕ `web/app/components/app/configuration/dataset-config/settings-modal/index.tsx` (+152 -0) 📝 `web/app/components/app/configuration/debug/index.tsx` (+19 -3) 📝 `web/app/components/app/configuration/index.tsx` (+38 -17) 📝 `web/app/components/app/configuration/prompt-value-panel/index.tsx` (+4 -2) 📝 `web/app/components/app/configuration/toolbox/index.tsx` (+17 -16) ➕ `web/app/components/app/configuration/toolbox/moderation/form-generation.tsx` (+78 -0) ➕ `web/app/components/app/configuration/toolbox/moderation/index.tsx` (+81 -0) ➕ `web/app/components/app/configuration/toolbox/moderation/moderation-content.tsx` (+72 -0) ➕ `web/app/components/app/configuration/toolbox/moderation/moderation-setting-modal.tsx` (+362 -0) _...and 64 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:21 -05:00
yindo closed this issue 2026-02-21 20:20:21 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langgenius/dify#23061