[PR #804] [MERGED] feat: frontend multi models support #22701

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

📋 Pull Request Information

Original PR: https://github.com/langgenius/dify/pull/804
Author: @takatost
Created: 8/11/2023
Status: Merged
Merged: 8/11/2023
Merged by: @takatost

Base: mainHead: feat/multi-models


📝 Commits (10+)

  • 2197f97 feat: add model-selector
  • 63cd9fd feat: add model-card
  • 149a59f Merge branch 'main' into feat/multi-models
  • 93754fd feat: model-item
  • 647432d feat: model-modal
  • 76e0c93 Merge branch 'main' into feat/multi-models
  • 6bf39c0 fix: some style
  • 89c59e3 feat: add select tone icons
  • eca9d86 fix: data structure
  • a060a3b Merge branch 'main' into feat/multi-models

📊 Changes

259 files changed (+9105 additions, -1392 deletions)

View changed files

📝 web/app/(commonLayout)/app/(appDetailLayout)/[appId]/overview/page.tsx (+4 -2)
📝 web/app/(commonLayout)/list.module.css (+1 -1)
📝 web/app/components/app/configuration/config-model/index.tsx (+250 -135)
📝 web/app/components/app/configuration/config-model/model-icon.tsx (+21 -15)
web/app/components/app/configuration/config-model/model-name.tsx (+29 -0)
📝 web/app/components/app/configuration/config-model/param-item.tsx (+4 -4)
web/app/components/app/configuration/config-model/provider-name.tsx (+24 -0)
📝 web/app/components/app/configuration/debug/index.tsx (+1 -1)
📝 web/app/components/app/configuration/index.tsx (+1 -0)
web/app/components/app/overview/apikey-info-panel/index.tsx (+127 -0)
web/app/components/app/overview/apikey-info-panel/progress/index.tsx (+29 -0)
📝 web/app/components/app/overview/apikey-info-panel/progress/style.module.css (+0 -8)
📝 web/app/components/app/overview/appCard.tsx (+1 -1)
📝 web/app/components/app/overview/appChart.tsx (+1 -1)
web/app/components/base/confirm/common.module.css (+3 -0)
web/app/components/base/confirm/common.tsx (+69 -0)
web/app/components/base/icons/assets/image/llm/minimax-text.png (+0 -0)
web/app/components/base/icons/assets/image/llm/minimax.png (+0 -0)
web/app/components/base/icons/assets/image/llm/tongyi-text-cn.png (+0 -0)
web/app/components/base/icons/assets/image/llm/tongyi-text.png (+0 -0)

...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/804 **Author:** [@takatost](https://github.com/takatost) **Created:** 8/11/2023 **Status:** ✅ Merged **Merged:** 8/11/2023 **Merged by:** [@takatost](https://github.com/takatost) **Base:** `main` ← **Head:** `feat/multi-models` --- ### 📝 Commits (10+) - [`2197f97`](https://github.com/langgenius/dify/commit/2197f9767d5d73bd4d9c4db0047d254590a3b8b2) feat: add model-selector - [`63cd9fd`](https://github.com/langgenius/dify/commit/63cd9fdf451ca5692a22b75ff9982a750f96ec31) feat: add model-card - [`149a59f`](https://github.com/langgenius/dify/commit/149a59f6ea5580021a7b92ffc68582dfca6dacee) Merge branch 'main' into feat/multi-models - [`93754fd`](https://github.com/langgenius/dify/commit/93754fdd62ef5b534808b9cc2d62737bf77d8931) feat: model-item - [`647432d`](https://github.com/langgenius/dify/commit/647432d5ac0f4c0cce2356ce6cc86cd42267fac4) feat: model-modal - [`76e0c93`](https://github.com/langgenius/dify/commit/76e0c93b82f9cb46bcd3628addfec740b28ed765) Merge branch 'main' into feat/multi-models - [`6bf39c0`](https://github.com/langgenius/dify/commit/6bf39c0205adc3583f87e7716705f766fac8bf17) fix: some style - [`89c59e3`](https://github.com/langgenius/dify/commit/89c59e39ce82023a8bfb11cf1f0d0660440b5b67) feat: add select tone icons - [`eca9d86`](https://github.com/langgenius/dify/commit/eca9d861452fe11b8c3f3bdc80d33a42a91e715f) fix: data structure - [`a060a3b`](https://github.com/langgenius/dify/commit/a060a3bef942c7349858add0bafc78c1a66da4a5) Merge branch 'main' into feat/multi-models ### 📊 Changes **259 files changed** (+9105 additions, -1392 deletions) <details> <summary>View changed files</summary> 📝 `web/app/(commonLayout)/app/(appDetailLayout)/[appId]/overview/page.tsx` (+4 -2) 📝 `web/app/(commonLayout)/list.module.css` (+1 -1) 📝 `web/app/components/app/configuration/config-model/index.tsx` (+250 -135) 📝 `web/app/components/app/configuration/config-model/model-icon.tsx` (+21 -15) ➕ `web/app/components/app/configuration/config-model/model-name.tsx` (+29 -0) 📝 `web/app/components/app/configuration/config-model/param-item.tsx` (+4 -4) ➕ `web/app/components/app/configuration/config-model/provider-name.tsx` (+24 -0) 📝 `web/app/components/app/configuration/debug/index.tsx` (+1 -1) 📝 `web/app/components/app/configuration/index.tsx` (+1 -0) ➕ `web/app/components/app/overview/apikey-info-panel/index.tsx` (+127 -0) ➕ `web/app/components/app/overview/apikey-info-panel/progress/index.tsx` (+29 -0) 📝 `web/app/components/app/overview/apikey-info-panel/progress/style.module.css` (+0 -8) 📝 `web/app/components/app/overview/appCard.tsx` (+1 -1) 📝 `web/app/components/app/overview/appChart.tsx` (+1 -1) ➕ `web/app/components/base/confirm/common.module.css` (+3 -0) ➕ `web/app/components/base/confirm/common.tsx` (+69 -0) ➕ `web/app/components/base/icons/assets/image/llm/minimax-text.png` (+0 -0) ➕ `web/app/components/base/icons/assets/image/llm/minimax.png` (+0 -0) ➕ `web/app/components/base/icons/assets/image/llm/tongyi-text-cn.png` (+0 -0) ➕ `web/app/components/base/icons/assets/image/llm/tongyi-text.png` (+0 -0) _...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:19:33 -05:00
yindo closed this issue 2026-02-21 20:19:33 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langgenius/dify#22701