[PR #958] [MERGED] Feat/add xinference openllm provider #22802

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

📋 Pull Request Information

Original PR: https://github.com/langgenius/dify/pull/958
Author: @zxhlyh
Created: 8/22/2023
Status: Merged
Merged: 8/22/2023
Merged by: @zxhlyh

Base: mainHead: feat/add-xinference-openllm-provider


📝 Commits (5)

  • be6a17b feat: add xinference openllm
  • 633d3e7 fix
  • b9e500a Merge branch 'main' into feat/add-xinference-openllm-provider
  • cdf8d25 merge main
  • c5fb401 Merge branch 'main' into feat/add-xinference-openllm-provider

📊 Changes

21 files changed (+1119 additions, -3 deletions)

View changed files

web/app/components/base/icons/assets/public/llm/openllm-text.svg (+19 -0)
web/app/components/base/icons/assets/public/llm/openllm.svg (+12 -0)
web/app/components/base/icons/assets/public/llm/xorbits-inference-text.svg (+42 -0)
web/app/components/base/icons/assets/public/llm/xorbits-inference.svg (+24 -0)
web/app/components/base/icons/src/public/llm/Openllm.json (+83 -0)
web/app/components/base/icons/src/public/llm/Openllm.tsx (+14 -0)
web/app/components/base/icons/src/public/llm/OpenllmText.json (+143 -0)
web/app/components/base/icons/src/public/llm/OpenllmText.tsx (+14 -0)
web/app/components/base/icons/src/public/llm/XorbitsInference.json (+176 -0)
web/app/components/base/icons/src/public/llm/XorbitsInference.tsx (+14 -0)
web/app/components/base/icons/src/public/llm/XorbitsInferenceText.json (+329 -0)
web/app/components/base/icons/src/public/llm/XorbitsInferenceText.tsx (+14 -0)
📝 web/app/components/base/icons/src/public/llm/index.ts (+4 -0)
📝 web/app/components/base/icons/src/vender/line/general/DotsHorizontal.json (+1 -1)
📝 web/app/components/header/account-setting/model-page/configs/index.ts (+4 -0)
web/app/components/header/account-setting/model-page/configs/openllm.tsx (+89 -0)
web/app/components/header/account-setting/model-page/configs/xinference.tsx (+128 -0)
📝 web/app/components/header/account-setting/model-page/declarations.ts (+2 -0)
📝 web/app/components/header/account-setting/model-page/index.tsx (+4 -0)
📝 web/app/components/header/account-setting/model-page/model-item/Setting.tsx (+2 -1)

...and 1 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/958 **Author:** [@zxhlyh](https://github.com/zxhlyh) **Created:** 8/22/2023 **Status:** ✅ Merged **Merged:** 8/22/2023 **Merged by:** [@zxhlyh](https://github.com/zxhlyh) **Base:** `main` ← **Head:** `feat/add-xinference-openllm-provider` --- ### 📝 Commits (5) - [`be6a17b`](https://github.com/langgenius/dify/commit/be6a17b9c21da4d29750c394beb6cd7c5ff48c24) feat: add xinference openllm - [`633d3e7`](https://github.com/langgenius/dify/commit/633d3e76269c87bf1fd78bb8a664dadfc55267c0) fix - [`b9e500a`](https://github.com/langgenius/dify/commit/b9e500adf9e9a523d4b38b1e7feffd4153eaa8ea) Merge branch 'main' into feat/add-xinference-openllm-provider - [`cdf8d25`](https://github.com/langgenius/dify/commit/cdf8d2510de467157d966e3ae69ae880af608085) merge main - [`c5fb401`](https://github.com/langgenius/dify/commit/c5fb4016a5621dc3bd4969a8e4c4257c89979cf4) Merge branch 'main' into feat/add-xinference-openllm-provider ### 📊 Changes **21 files changed** (+1119 additions, -3 deletions) <details> <summary>View changed files</summary> ➕ `web/app/components/base/icons/assets/public/llm/openllm-text.svg` (+19 -0) ➕ `web/app/components/base/icons/assets/public/llm/openllm.svg` (+12 -0) ➕ `web/app/components/base/icons/assets/public/llm/xorbits-inference-text.svg` (+42 -0) ➕ `web/app/components/base/icons/assets/public/llm/xorbits-inference.svg` (+24 -0) ➕ `web/app/components/base/icons/src/public/llm/Openllm.json` (+83 -0) ➕ `web/app/components/base/icons/src/public/llm/Openllm.tsx` (+14 -0) ➕ `web/app/components/base/icons/src/public/llm/OpenllmText.json` (+143 -0) ➕ `web/app/components/base/icons/src/public/llm/OpenllmText.tsx` (+14 -0) ➕ `web/app/components/base/icons/src/public/llm/XorbitsInference.json` (+176 -0) ➕ `web/app/components/base/icons/src/public/llm/XorbitsInference.tsx` (+14 -0) ➕ `web/app/components/base/icons/src/public/llm/XorbitsInferenceText.json` (+329 -0) ➕ `web/app/components/base/icons/src/public/llm/XorbitsInferenceText.tsx` (+14 -0) 📝 `web/app/components/base/icons/src/public/llm/index.ts` (+4 -0) 📝 `web/app/components/base/icons/src/vender/line/general/DotsHorizontal.json` (+1 -1) 📝 `web/app/components/header/account-setting/model-page/configs/index.ts` (+4 -0) ➕ `web/app/components/header/account-setting/model-page/configs/openllm.tsx` (+89 -0) ➕ `web/app/components/header/account-setting/model-page/configs/xinference.tsx` (+128 -0) 📝 `web/app/components/header/account-setting/model-page/declarations.ts` (+2 -0) 📝 `web/app/components/header/account-setting/model-page/index.tsx` (+4 -0) 📝 `web/app/components/header/account-setting/model-page/model-item/Setting.tsx` (+2 -1) _...and 1 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:47 -05:00
yindo closed this issue 2026-02-21 20:19:47 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langgenius/dify#22802