[PR #1831] [MERGED] Add new model plugin: gmicloud #2106

Closed
opened 2026-02-16 11:16:06 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langgenius/dify-official-plugins/pull/1831
Author: @Alas129
Created: 10/10/2025
Status: Merged
Merged: 11/5/2025
Merged by: @crazywoola

Base: mainHead: feat/gmicloud


📝 Commits (6)

  • 1b3b59e Initiate adding GMI Cloud as Dify provider
  • eb10975 Revert "Initiate adding GMI Cloud as Dify provider"
  • 4cb2b87 Merge branch 'langgenius:main' into main
  • bf8065c Add gmicloud model plugin
  • 5488b6d Update model configurations and add privacy documentation
  • 000b4b0 Update README built-in models

📊 Changes

23 files changed (+855 additions, -0 deletions)

View changed files

models/gmicloud/PRIVACY.md (+116 -0)
models/gmicloud/README.md (+32 -0)
models/gmicloud/_assets/icon_gmi_black.svg (+6 -0)
models/gmicloud/_assets/icon_gmi_small.svg (+3 -0)
models/gmicloud/_assets/icon_gmi_white.svg (+1 -0)
models/gmicloud/main.py (+6 -0)
models/gmicloud/manifest.yaml (+42 -0)
models/gmicloud/models/llm/__init__.py (+0 -0)
models/gmicloud/models/llm/_position.yaml (+19 -0)
models/gmicloud/models/llm/deepseek-v3-0324.yaml (+36 -0)
models/gmicloud/models/llm/deepseek-v31.yaml (+37 -0)
models/gmicloud/models/llm/deepseek-v32-exp.yaml (+37 -0)
models/gmicloud/models/llm/llama4-scout-17b-16e-instruct.yaml (+36 -0)
models/gmicloud/models/llm/llm.py (+129 -0)
models/gmicloud/models/llm/openai-gpt-oss-120b.yaml (+37 -0)
models/gmicloud/models/llm/qwen3-235b-a22b-thinking-2507-fp8.yaml (+37 -0)
models/gmicloud/models/llm/qwen3-32b-fp8.yaml (+37 -0)
models/gmicloud/models/llm/qwen3-coder-480b-a35b-instruct-fp8.yaml (+36 -0)
models/gmicloud/models/llm/qwen3-next-80b-a3b-instruct.yaml (+36 -0)
models/gmicloud/models/llm/zai-glm46.yaml (+37 -0)

...and 3 more files

📄 Description

GMI Cloud Model Plugin

GMI Cloud model reference: link

Screenshot 2025-10-10 at 19 22 35 Screenshot 2025-10-10 at 19 24 34 Screenshot 2025-10-10 at 19 21 30

🔄 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-official-plugins/pull/1831 **Author:** [@Alas129](https://github.com/Alas129) **Created:** 10/10/2025 **Status:** ✅ Merged **Merged:** 11/5/2025 **Merged by:** [@crazywoola](https://github.com/crazywoola) **Base:** `main` ← **Head:** `feat/gmicloud` --- ### 📝 Commits (6) - [`1b3b59e`](https://github.com/langgenius/dify-official-plugins/commit/1b3b59e7f5d527e19ff3efc7be3289fcadb50a0d) Initiate adding GMI Cloud as Dify provider - [`eb10975`](https://github.com/langgenius/dify-official-plugins/commit/eb10975c785538dc7c4c4d0063f7f357870f30b6) Revert "Initiate adding GMI Cloud as Dify provider" - [`4cb2b87`](https://github.com/langgenius/dify-official-plugins/commit/4cb2b877da5159a28eee26fbecd4c616f529f651) Merge branch 'langgenius:main' into main - [`bf8065c`](https://github.com/langgenius/dify-official-plugins/commit/bf8065c2b55481ec2c69e812b6c0bbbe0951a419) Add gmicloud model plugin - [`5488b6d`](https://github.com/langgenius/dify-official-plugins/commit/5488b6d50e4951b2707c1e4ee74511125daefbef) Update model configurations and add privacy documentation - [`000b4b0`](https://github.com/langgenius/dify-official-plugins/commit/000b4b0da7f5da28c760819f9e808c932dc891a3) Update README built-in models ### 📊 Changes **23 files changed** (+855 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `models/gmicloud/PRIVACY.md` (+116 -0) ➕ `models/gmicloud/README.md` (+32 -0) ➕ `models/gmicloud/_assets/icon_gmi_black.svg` (+6 -0) ➕ `models/gmicloud/_assets/icon_gmi_small.svg` (+3 -0) ➕ `models/gmicloud/_assets/icon_gmi_white.svg` (+1 -0) ➕ `models/gmicloud/main.py` (+6 -0) ➕ `models/gmicloud/manifest.yaml` (+42 -0) ➕ `models/gmicloud/models/llm/__init__.py` (+0 -0) ➕ `models/gmicloud/models/llm/_position.yaml` (+19 -0) ➕ `models/gmicloud/models/llm/deepseek-v3-0324.yaml` (+36 -0) ➕ `models/gmicloud/models/llm/deepseek-v31.yaml` (+37 -0) ➕ `models/gmicloud/models/llm/deepseek-v32-exp.yaml` (+37 -0) ➕ `models/gmicloud/models/llm/llama4-scout-17b-16e-instruct.yaml` (+36 -0) ➕ `models/gmicloud/models/llm/llm.py` (+129 -0) ➕ `models/gmicloud/models/llm/openai-gpt-oss-120b.yaml` (+37 -0) ➕ `models/gmicloud/models/llm/qwen3-235b-a22b-thinking-2507-fp8.yaml` (+37 -0) ➕ `models/gmicloud/models/llm/qwen3-32b-fp8.yaml` (+37 -0) ➕ `models/gmicloud/models/llm/qwen3-coder-480b-a35b-instruct-fp8.yaml` (+36 -0) ➕ `models/gmicloud/models/llm/qwen3-next-80b-a3b-instruct.yaml` (+36 -0) ➕ `models/gmicloud/models/llm/zai-glm46.yaml` (+37 -0) _...and 3 more files_ </details> ### 📄 Description ### GMI Cloud Model Plugin GMI Cloud model reference: [link](https://www.gmicloud.ai/model-library) <img width="1006" height="521" alt="Screenshot 2025-10-10 at 19 22 35" src="https://github.com/user-attachments/assets/02ea2c94-ce25-4bba-a1c7-ff768d5087a2" /> <img width="800" height="571" alt="Screenshot 2025-10-10 at 19 24 34" src="https://github.com/user-attachments/assets/d40f19db-39ea-4303-963e-8067638a582c" /> <img width="560" height="652" alt="Screenshot 2025-10-10 at 19 21 30" src="https://github.com/user-attachments/assets/8a756f1f-4da0-4748-9d3e-3171ef33d14a" /> --- <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-16 11:16:06 -05:00
yindo closed this issue 2026-02-16 11:16: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-official-plugins#2106