[PR #1641] [MERGED] Regolo models 01 #2002

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

📋 Pull Request Information

Original PR: https://github.com/langgenius/dify-official-plugins/pull/1641
Author: @massaindustries
Created: 9/2/2025
Status: Merged
Merged: 9/3/2025
Merged by: @crazywoola

Base: mainHead: regolo-models-01


📝 Commits (3)

📊 Changes

28 files changed (+967 additions, -0 deletions)

View changed files

models/regolo/GUIDE.md (+24 -0)
models/regolo/README.md (+41 -0)
models/regolo/_assets/icon_l_en.svg (+32 -0)
models/regolo/_assets/icon_s_en.svg (+64 -0)
models/regolo/main.py (+6 -0)
models/regolo/manifest.yaml (+36 -0)
models/regolo/models/llm/Llama-3.1-8B-Instruct.yaml (+33 -0)
models/regolo/models/llm/Llama-3.3-70B-Instruct.yaml (+33 -0)
models/regolo/models/llm/Phi-4.yaml (+33 -0)
models/regolo/models/llm/Qwen2.5-VL-32B-Instruct.yaml (+34 -0)
models/regolo/models/llm/Qwen3-8B.yaml (+33 -0)
models/regolo/models/llm/_position.yaml (+13 -0)
models/regolo/models/llm/deepseek-r1-70b.yaml (+34 -0)
models/regolo/models/llm/gemma-3-27b-it.yaml (+34 -0)
models/regolo/models/llm/gpt-oss-120b.yaml (+34 -0)
models/regolo/models/llm/llama-guard3-8b.yaml (+33 -0)
models/regolo/models/llm/llm.py (+116 -0)
models/regolo/models/llm/maestrale-chat-v0.4-beta.yaml (+33 -0)
models/regolo/models/llm/mistral-small3.2.yaml (+35 -0)
models/regolo/models/llm/qwen3-coder-30b.yaml (+34 -0)

...and 8 more files

📄 Description

Related Issues or Context

Add RegoloAI models to Dify Official Plugin

This PR contains Changes to Non-Plugin

  • Documentation
  • Other

This PR contains Changes to Non-LLM Models Plugin

  • I have Run Comprehensive Tests Relevant to My Changes

This PR contains Changes to LLM Models Plugin

  • My Changes Affect Message Flow Handling (System Messages and User→Assistant Turn-Taking)
  • My Changes Affect Tool Interaction Flow (Multi-Round Usage and Output Handling, for both Agent App and Agent Node)
  • My Changes Affect Multimodal Input Handling (Images, PDFs, Audio, Video, etc.)
  • My Changes Affect Multimodal Output Generation (Images, Audio, Video, etc.)
  • My Changes Affect Structured Output Format (JSON, XML, etc.)
  • My Changes Affect Token Consumption Metrics
  • Other Changes (Add New Models, Fix Model Parameters etc.)

Models Added / Updated (with docs)

image

Pricing

  • Aligned to €/Million tokens: unit: 0.000001, with input/output set accordingly (EUR).

Version Control (Any Changes to the Plugin Will Require Bumping the Version)

  • I have Bumped Up the Version in Manifest.yaml (MAJOR.MINOR.PATCH)

Dify Plugin SDK Version

  • I have Ensured dify_plugin>=0.3.0,<0.5.0 is in requirements.txt

Environment Verification (If Any Code Changes)

Local Deployment Environment

  • Dify Version is: ; tested on clean local environment.

SaaS Environment

  • Tested on cloud.dify.ai

This is how the Regolo Plugin appears in the workflow:

Example simple LLM:
Screenshot 2025-09-03 104753

Agent Example:
image


🔄 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/1641 **Author:** [@massaindustries](https://github.com/massaindustries) **Created:** 9/2/2025 **Status:** ✅ Merged **Merged:** 9/3/2025 **Merged by:** [@crazywoola](https://github.com/crazywoola) **Base:** `main` ← **Head:** `regolo-models-01` --- ### 📝 Commits (3) - [`03ad774`](https://github.com/langgenius/dify-official-plugins/commit/03ad77447966ac2b98f9590cc564bd19b5d9b917) regolo-models-01 - [`29eb485`](https://github.com/langgenius/dify-official-plugins/commit/29eb485790c487e39105e0f4a0863944f04db015) regolo-models-02 - [`7016694`](https://github.com/langgenius/dify-official-plugins/commit/70166943e3dd6acc8b317895ed1d05b20c35c20c) regolo-models-03 ### 📊 Changes **28 files changed** (+967 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `models/regolo/GUIDE.md` (+24 -0) ➕ `models/regolo/README.md` (+41 -0) ➕ `models/regolo/_assets/icon_l_en.svg` (+32 -0) ➕ `models/regolo/_assets/icon_s_en.svg` (+64 -0) ➕ `models/regolo/main.py` (+6 -0) ➕ `models/regolo/manifest.yaml` (+36 -0) ➕ `models/regolo/models/llm/Llama-3.1-8B-Instruct.yaml` (+33 -0) ➕ `models/regolo/models/llm/Llama-3.3-70B-Instruct.yaml` (+33 -0) ➕ `models/regolo/models/llm/Phi-4.yaml` (+33 -0) ➕ `models/regolo/models/llm/Qwen2.5-VL-32B-Instruct.yaml` (+34 -0) ➕ `models/regolo/models/llm/Qwen3-8B.yaml` (+33 -0) ➕ `models/regolo/models/llm/_position.yaml` (+13 -0) ➕ `models/regolo/models/llm/deepseek-r1-70b.yaml` (+34 -0) ➕ `models/regolo/models/llm/gemma-3-27b-it.yaml` (+34 -0) ➕ `models/regolo/models/llm/gpt-oss-120b.yaml` (+34 -0) ➕ `models/regolo/models/llm/llama-guard3-8b.yaml` (+33 -0) ➕ `models/regolo/models/llm/llm.py` (+116 -0) ➕ `models/regolo/models/llm/maestrale-chat-v0.4-beta.yaml` (+33 -0) ➕ `models/regolo/models/llm/mistral-small3.2.yaml` (+35 -0) ➕ `models/regolo/models/llm/qwen3-coder-30b.yaml` (+34 -0) _...and 8 more files_ </details> ### 📄 Description ## Related Issues or Context Add RegoloAI models to Dify Official Plugin ## This PR contains Changes to *Non-Plugin* - [ ] Documentation - [ ] Other ## This PR contains Changes to *Non-LLM Models Plugin* - [ ] I have Run Comprehensive Tests Relevant to My Changes ## This PR contains Changes to *LLM Models Plugin* - [ ] My Changes Affect Message Flow Handling (System Messages and User→Assistant Turn-Taking) - [ ] My Changes Affect Tool Interaction Flow (Multi-Round Usage and Output Handling, for both Agent App and Agent Node) - [ ] My Changes Affect Multimodal Input Handling (Images, PDFs, Audio, Video, etc.) - [ ] My Changes Affect Multimodal Output Generation (Images, Audio, Video, etc.) - [ ] My Changes Affect Structured Output Format (JSON, XML, etc.) - [ ] My Changes Affect Token Consumption Metrics - [x] Other Changes (Add New Models, Fix Model Parameters etc.) ### Models Added / Updated (with docs) - deepseek-r1-70b — [official docs](<link>) - gemma-3-27b-it — [official docs](<link>) - gpt-oss-120b — [official docs](<link>) *(streaming off)* - Llama-3.1-8B-Instruct — [official docs](<link>) - Llama-3.3-70B-Instruct — [official docs](<link>) - maestrale-chat-v0.4-beta — [official docs](<link>) - mistral-small3.2 — [official docs](<link>) - Phi-4 — [official docs](<link>) - Qwen2.5-VL-32B-Instruct (vision) — [official docs](<link>) - Qwen3-8B — [official docs](<link>) - qwen3-coder-30b — [official docs](<link>) - llama-guard3-8b (safety) — [official docs](<link>) - Embeddings: gte-Qwen2, Qwen3-Embedding-8B — [official docs](<link>) <img width="1064" height="1459" alt="image" src="https://github.com/user-attachments/assets/e1f4b76f-62f4-41a3-a34e-0e081b4c504c" /> ### Pricing - Aligned to €/Million tokens: `unit: 0.000001`, with `input`/`output` set accordingly (EUR). ## Version Control (Any Changes to the Plugin Will Require Bumping the Version) - [x] I have Bumped Up the Version in Manifest.yaml (MAJOR.MINOR.PATCH) ## Dify Plugin SDK Version - [x] I have Ensured `dify_plugin>=0.3.0,<0.5.0` is in requirements.txt ## Environment Verification (If Any Code Changes) ### Local Deployment Environment - [x] Dify Version is: **<your-version-here>**; tested on clean local environment. ### SaaS Environment - [ ] Tested on cloud.dify.ai **This is how the Regolo Plugin appears in the workflow:** Example simple LLM: <img width="3839" height="1897" alt="Screenshot 2025-09-03 104753" src="https://github.com/user-attachments/assets/3c2f47c5-2cde-435d-a3f5-5c794ae48ed3" /> Agent Example: <img width="3839" height="1904" alt="image" src="https://github.com/user-attachments/assets/353a8078-8ec4-4884-8fdb-5dd3aae5072d" /> --- <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:15:49 -05:00
yindo closed this issue 2026-02-16 11:15:49 -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#2002