[PR #1330] [MERGED] feat: advanced prompt #23011

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

📋 Pull Request Information

Original PR: https://github.com/langgenius/dify/pull/1330
Author: @zxhlyh
Created: 10/12/2023
Status: Merged
Merged: 10/12/2023
Merged by: @zxhlyh

Base: mainHead: feat/advanced-prompt


📝 Commits (10+)

  • 7a8a67e add component-picker variable-picker
  • febd9b2 chore: header and out ui
  • 1220994 file
  • adb8dd4 feat: follwing add feature btn
  • 857a2e1 prompt-editor add context-block
  • 535baaa feat: simple mode prompt input new ui
  • a562028 chore: new question icon
  • 1507ab3 prompt-editor add query-block
  • f853590 prompt-editor add history-block
  • 4feb562 feat: remove preveiw and enchance related ui

📊 Changes

131 files changed (+5940 additions, -447 deletions)

View changed files

📝 web/app/components/app/chat/index.tsx (+14 -1)
web/app/components/app/chat/log/index.tsx (+70 -0)
📝 web/app/components/app/chat/question/index.tsx (+17 -5)
📝 web/app/components/app/chat/type.ts (+1 -0)
📝 web/app/components/app/configuration/base/feature-panel/index.tsx (+1 -1)
📝 web/app/components/app/configuration/config-model/index.tsx (+52 -23)
web/app/components/app/configuration/config-model/model-mode-type-label.tsx (+29 -0)
📝 web/app/components/app/configuration/config-model/param-item.tsx (+43 -24)
web/app/components/app/configuration/config-prompt/advanced-prompt-input.tsx (+185 -0)
📝 web/app/components/app/configuration/config-prompt/confirm-add-var/index.tsx (+12 -11)
web/app/components/app/configuration/config-prompt/conversation-histroy/edit-modal.tsx (+59 -0)
web/app/components/app/configuration/config-prompt/conversation-histroy/history-panel.tsx (+50 -0)
📝 web/app/components/app/configuration/config-prompt/index.tsx (+107 -66)
web/app/components/app/configuration/config-prompt/message-type-selector.tsx (+50 -0)
web/app/components/app/configuration/config-prompt/simple-prompt-input.tsx (+174 -0)
📝 web/app/components/app/configuration/config-prompt/style.module.css (+8 -0)
📝 web/app/components/app/configuration/config-var/index.tsx (+1 -3)
📝 web/app/components/app/configuration/config/automatic/automatic-btn.tsx (+3 -4)
📝 web/app/components/app/configuration/config/feature/add-feature-btn/index.tsx (+21 -12)
📝 web/app/components/app/configuration/config/index.tsx (+41 -33)

...and 80 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/1330 **Author:** [@zxhlyh](https://github.com/zxhlyh) **Created:** 10/12/2023 **Status:** ✅ Merged **Merged:** 10/12/2023 **Merged by:** [@zxhlyh](https://github.com/zxhlyh) **Base:** `main` ← **Head:** `feat/advanced-prompt` --- ### 📝 Commits (10+) - [`7a8a67e`](https://github.com/langgenius/dify/commit/7a8a67e606bc2f389a1a888ebc298dd08cb5a31b) add component-picker variable-picker - [`febd9b2`](https://github.com/langgenius/dify/commit/febd9b2369cbd0f22bac0ae0fb39f8062165f0eb) chore: header and out ui - [`1220994`](https://github.com/langgenius/dify/commit/12209944a7a46476e782db4c4076cd49b059b93b) file - [`adb8dd4`](https://github.com/langgenius/dify/commit/adb8dd4edf314ba41038c73a8fff63eaf778ddc1) feat: follwing add feature btn - [`857a2e1`](https://github.com/langgenius/dify/commit/857a2e124260e9647bd82e171c713a5f16182768) prompt-editor add context-block - [`535baaa`](https://github.com/langgenius/dify/commit/535baaa899b5e69382beed3d6f3f871f4fbaeab8) feat: simple mode prompt input new ui - [`a562028`](https://github.com/langgenius/dify/commit/a562028ca32deccfb51839ec103f7f0f25564d73) chore: new question icon - [`1507ab3`](https://github.com/langgenius/dify/commit/1507ab37be88db6a21aaf931d320184cda55ce51) prompt-editor add query-block - [`f853590`](https://github.com/langgenius/dify/commit/f85359048745be1f90ecff32c9b9321311ff3e45) prompt-editor add history-block - [`4feb562`](https://github.com/langgenius/dify/commit/4feb562ea5a4a93adb998c4661ce71bc1f2ce6b1) feat: remove preveiw and enchance related ui ### 📊 Changes **131 files changed** (+5940 additions, -447 deletions) <details> <summary>View changed files</summary> 📝 `web/app/components/app/chat/index.tsx` (+14 -1) ➕ `web/app/components/app/chat/log/index.tsx` (+70 -0) 📝 `web/app/components/app/chat/question/index.tsx` (+17 -5) 📝 `web/app/components/app/chat/type.ts` (+1 -0) 📝 `web/app/components/app/configuration/base/feature-panel/index.tsx` (+1 -1) 📝 `web/app/components/app/configuration/config-model/index.tsx` (+52 -23) ➕ `web/app/components/app/configuration/config-model/model-mode-type-label.tsx` (+29 -0) 📝 `web/app/components/app/configuration/config-model/param-item.tsx` (+43 -24) ➕ `web/app/components/app/configuration/config-prompt/advanced-prompt-input.tsx` (+185 -0) 📝 `web/app/components/app/configuration/config-prompt/confirm-add-var/index.tsx` (+12 -11) ➕ `web/app/components/app/configuration/config-prompt/conversation-histroy/edit-modal.tsx` (+59 -0) ➕ `web/app/components/app/configuration/config-prompt/conversation-histroy/history-panel.tsx` (+50 -0) 📝 `web/app/components/app/configuration/config-prompt/index.tsx` (+107 -66) ➕ `web/app/components/app/configuration/config-prompt/message-type-selector.tsx` (+50 -0) ➕ `web/app/components/app/configuration/config-prompt/simple-prompt-input.tsx` (+174 -0) 📝 `web/app/components/app/configuration/config-prompt/style.module.css` (+8 -0) 📝 `web/app/components/app/configuration/config-var/index.tsx` (+1 -3) 📝 `web/app/components/app/configuration/config/automatic/automatic-btn.tsx` (+3 -4) 📝 `web/app/components/app/configuration/config/feature/add-feature-btn/index.tsx` (+21 -12) 📝 `web/app/components/app/configuration/config/index.tsx` (+41 -33) _...and 80 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:15 -05:00
yindo closed this issue 2026-02-21 20:20:15 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langgenius/dify#23011