[PR #1192] [MERGED] Feat/provider add zhipuai #22940

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

📋 Pull Request Information

Original PR: https://github.com/langgenius/dify/pull/1192
Author: @zxhlyh
Created: 9/18/2023
Status: Merged
Merged: 9/18/2023
Merged by: @zxhlyh

Base: mainHead: feat/provider-add-zhipuai


📝 Commits (10+)

📊 Changes

22 files changed (+466 additions, -126 deletions)

View changed files

📝 web/app/(commonLayout)/apps/Apps.tsx (+3 -43)
📝 web/app/components/app/configuration/config-model/index.tsx (+1 -1)
📝 web/app/components/app/configuration/config-model/param-item.tsx (+38 -7)
web/app/components/base/icons/assets/public/llm/zhipuai-text-cn.svg (+8 -0)
web/app/components/base/icons/assets/public/llm/zhipuai-text.svg (+6 -0)
web/app/components/base/icons/assets/public/llm/zhipuai.svg (+8 -0)
web/app/components/base/icons/src/public/llm/Zhipuai.json (+53 -0)
web/app/components/base/icons/src/public/llm/Zhipuai.tsx (+16 -0)
web/app/components/base/icons/src/public/llm/ZhipuaiText.json (+44 -0)
web/app/components/base/icons/src/public/llm/ZhipuaiText.tsx (+16 -0)
web/app/components/base/icons/src/public/llm/ZhipuaiTextCn.json (+62 -0)
web/app/components/base/icons/src/public/llm/ZhipuaiTextCn.tsx (+16 -0)
📝 web/app/components/base/icons/src/public/llm/index.ts (+3 -0)
📝 web/app/components/header/account-setting/model-page/configs/index.ts (+2 -0)
web/app/components/header/account-setting/model-page/configs/zhipuai.tsx (+55 -0)
📝 web/app/components/header/account-setting/model-page/declarations.ts (+1 -0)
📝 web/app/components/header/account-setting/model-page/index.tsx (+4 -2)
📝 web/app/components/header/account-setting/model-page/model-item/FreeQuota.tsx (+4 -0)
📝 web/app/components/header/account-setting/model-page/model-item/Setting.tsx (+1 -1)
web/hooks/use-pay.ts (+0 -71)

...and 2 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/1192 **Author:** [@zxhlyh](https://github.com/zxhlyh) **Created:** 9/18/2023 **Status:** ✅ Merged **Merged:** 9/18/2023 **Merged by:** [@zxhlyh](https://github.com/zxhlyh) **Base:** `main` ← **Head:** `feat/provider-add-zhipuai` --- ### 📝 Commits (10+) - [`ff9de6d`](https://github.com/langgenius/dify/commit/ff9de6de470d999b07fa403093a42365daa2b657) feat: add zhipuai - [`f7581e4`](https://github.com/langgenius/dify/commit/f7581e43649d4881789c9c953f44708a7d6eb6e6) fix icon - [`30803da`](https://github.com/langgenius/dify/commit/30803dacb6e50fa8c805bf7543525df4aedae357) Merge branch 'main' into feat/provider-add-zhipuai - [`5e9600c`](https://github.com/langgenius/dify/commit/5e9600cdb9eebad38ebc5db4c92d5e1b7ae6d58e) fix icon - [`a807a35`](https://github.com/langgenius/dify/commit/a807a356362d6f96ef466d75fd80f0d50d08f3cb) feat: model params support precision - [`ca3c443`](https://github.com/langgenius/dify/commit/ca3c44363d1d615e65dc088e4f2d13d1194ef48d) fix: param value edit and switch model - [`3d1de59`](https://github.com/langgenius/dify/commit/3d1de5964b2c5b2b4b5827cbab044553d9706635) fix: handle swich presion - [`65972ce`](https://github.com/langgenius/dify/commit/65972ce5949f08256c0e4f2496d107156dfeedaf) add zhipuai free quota - [`f5ef73c`](https://github.com/langgenius/dify/commit/f5ef73ca17c9b320c1b02fa5861c731612cf5ac2) fix zhipuai free quota - [`7e251ee`](https://github.com/langgenius/dify/commit/7e251eee96adaebb825f78c1dbe286f21f763e8c) fix zhipuai free quota ### 📊 Changes **22 files changed** (+466 additions, -126 deletions) <details> <summary>View changed files</summary> 📝 `web/app/(commonLayout)/apps/Apps.tsx` (+3 -43) 📝 `web/app/components/app/configuration/config-model/index.tsx` (+1 -1) 📝 `web/app/components/app/configuration/config-model/param-item.tsx` (+38 -7) ➕ `web/app/components/base/icons/assets/public/llm/zhipuai-text-cn.svg` (+8 -0) ➕ `web/app/components/base/icons/assets/public/llm/zhipuai-text.svg` (+6 -0) ➕ `web/app/components/base/icons/assets/public/llm/zhipuai.svg` (+8 -0) ➕ `web/app/components/base/icons/src/public/llm/Zhipuai.json` (+53 -0) ➕ `web/app/components/base/icons/src/public/llm/Zhipuai.tsx` (+16 -0) ➕ `web/app/components/base/icons/src/public/llm/ZhipuaiText.json` (+44 -0) ➕ `web/app/components/base/icons/src/public/llm/ZhipuaiText.tsx` (+16 -0) ➕ `web/app/components/base/icons/src/public/llm/ZhipuaiTextCn.json` (+62 -0) ➕ `web/app/components/base/icons/src/public/llm/ZhipuaiTextCn.tsx` (+16 -0) 📝 `web/app/components/base/icons/src/public/llm/index.ts` (+3 -0) 📝 `web/app/components/header/account-setting/model-page/configs/index.ts` (+2 -0) ➕ `web/app/components/header/account-setting/model-page/configs/zhipuai.tsx` (+55 -0) 📝 `web/app/components/header/account-setting/model-page/declarations.ts` (+1 -0) 📝 `web/app/components/header/account-setting/model-page/index.tsx` (+4 -2) 📝 `web/app/components/header/account-setting/model-page/model-item/FreeQuota.tsx` (+4 -0) 📝 `web/app/components/header/account-setting/model-page/model-item/Setting.tsx` (+1 -1) ➖ `web/hooks/use-pay.ts` (+0 -71) _...and 2 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:06 -05:00
yindo closed this issue 2026-02-21 20:20:06 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langgenius/dify#22940