[PR #1067] [MERGED] Gitee AI Update TTS model and add support for new models #1701

Closed
opened 2026-02-16 10:23:44 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langgenius/dify-official-plugins/pull/1067
Author: @fchange
Created: 6/10/2025
Status: Merged
Merged: 6/17/2025
Merged by: @crazywoola

Base: mainHead: gitee-ai-upgrade-0610


📝 Commits (3)

  • d738287 feat(tts): 更新 TTS模型并添加新模型支持
  • e4c0410 build(models/gitee_ai): 更新 dify_plugin 版本依赖
  • 6f0cb3a build(models/gitee_ai): 添加 pydub 依赖

📊 Changes

17 files changed (+211 additions, -13 deletions)

View changed files

📝 models/gitee_ai/manifest.yaml (+1 -1)
models/gitee_ai/models/llm/Qwen3-235B-A22B.yaml (+92 -0)
📝 models/gitee_ai/models/llm/_position.yaml (+1 -0)
models/gitee_ai/models/rerank/Qwen3-Reranker-0.6B.yaml (+4 -0)
models/gitee_ai/models/rerank/Qwen3-Reranker-4B.yaml (+4 -0)
models/gitee_ai/models/rerank/Qwen3-Reranker-8B.yaml (+4 -0)
📝 models/gitee_ai/models/rerank/_position.yaml (+4 -1)
models/gitee_ai/models/text_embedding/Qwen3-Embedding-0.6B.yaml (+13 -0)
models/gitee_ai/models/text_embedding/Qwen3-Embedding-4B.yaml (+13 -0)
models/gitee_ai/models/text_embedding/Qwen3-Embedding-8B.yaml (+13 -0)
📝 models/gitee_ai/models/text_embedding/_position.yaml (+3 -0)
📝 models/gitee_ai/models/tts/MegaTTS3.yaml (+1 -1)
models/gitee_ai/models/tts/Step-Audio-TTS-3B.yaml (+11 -0)
📝 models/gitee_ai/models/tts/_position.yaml (+3 -1)
models/gitee_ai/models/tts/fish-speech-1.5.yaml (+11 -0)
📝 models/gitee_ai/models/tts/tts.py (+31 -8)
📝 models/gitee_ai/requirements.txt (+2 -1)

📄 Description

Related Issues or Context

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
  • My Changes Affect Other LLM Functionalities (Reasoning Process, Grounding, Prompt Caching, etc.)
  • Other Changes (Add New Models, etc.)

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

  • I have Bumped Up the Version in Manifest.yaml (Top-Level Version Field, Not in Meta Section)

Dify Plugin SDK Version

  • I'm Using dify_plugin>=0.3.0,<0.4.0 in requirements.txt (SDK docs)

Environment Verification (If Any Code Changes)

Local Deployment Environment

  • Dify Version is: 1.3.1, I have Tested My Changes on Local Deployment Dify with a Clean Environment That Matches the Production Configuration.

SaaS Environment

  • I have Tested My Changes on cloud.dify.ai with a Clean Environment That Matches the Production Configuration

🔄 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/1067 **Author:** [@fchange](https://github.com/fchange) **Created:** 6/10/2025 **Status:** ✅ Merged **Merged:** 6/17/2025 **Merged by:** [@crazywoola](https://github.com/crazywoola) **Base:** `main` ← **Head:** `gitee-ai-upgrade-0610` --- ### 📝 Commits (3) - [`d738287`](https://github.com/langgenius/dify-official-plugins/commit/d7382876e36b361d049ce5559683888e18a3c7a8) feat(tts): 更新 TTS模型并添加新模型支持 - [`e4c0410`](https://github.com/langgenius/dify-official-plugins/commit/e4c041027ae20356399423a51c4ad2bda64ce4b2) build(models/gitee_ai): 更新 dify_plugin 版本依赖 - [`6f0cb3a`](https://github.com/langgenius/dify-official-plugins/commit/6f0cb3aec520e7cbb689d5b22994961853e4d64f) build(models/gitee_ai): 添加 pydub 依赖 ### 📊 Changes **17 files changed** (+211 additions, -13 deletions) <details> <summary>View changed files</summary> 📝 `models/gitee_ai/manifest.yaml` (+1 -1) ➕ `models/gitee_ai/models/llm/Qwen3-235B-A22B.yaml` (+92 -0) 📝 `models/gitee_ai/models/llm/_position.yaml` (+1 -0) ➕ `models/gitee_ai/models/rerank/Qwen3-Reranker-0.6B.yaml` (+4 -0) ➕ `models/gitee_ai/models/rerank/Qwen3-Reranker-4B.yaml` (+4 -0) ➕ `models/gitee_ai/models/rerank/Qwen3-Reranker-8B.yaml` (+4 -0) 📝 `models/gitee_ai/models/rerank/_position.yaml` (+4 -1) ➕ `models/gitee_ai/models/text_embedding/Qwen3-Embedding-0.6B.yaml` (+13 -0) ➕ `models/gitee_ai/models/text_embedding/Qwen3-Embedding-4B.yaml` (+13 -0) ➕ `models/gitee_ai/models/text_embedding/Qwen3-Embedding-8B.yaml` (+13 -0) 📝 `models/gitee_ai/models/text_embedding/_position.yaml` (+3 -0) 📝 `models/gitee_ai/models/tts/MegaTTS3.yaml` (+1 -1) ➕ `models/gitee_ai/models/tts/Step-Audio-TTS-3B.yaml` (+11 -0) 📝 `models/gitee_ai/models/tts/_position.yaml` (+3 -1) ➕ `models/gitee_ai/models/tts/fish-speech-1.5.yaml` (+11 -0) 📝 `models/gitee_ai/models/tts/tts.py` (+31 -8) 📝 `models/gitee_ai/requirements.txt` (+2 -1) </details> ### 📄 Description ## Related Issues or Context <!-- ⚠️ NOTE: This repository is for Dify Official Plugins only. For community contributions, please submit to https://github.com/langgenius/dify-plugins instead. - Link Related Issues if Applicable: #issue_number - Or Provide Context about Why this Change is Needed --> ## This PR contains Changes to *Non-Plugin* <!-- Put an `x` in all the boxes that apply by replacing [ ] with [x] For example: - [x] Documentation --> - [ ] Documentation - [ ] Other ## This PR contains Changes to *Non-LLM Models Plugin* - [ ] I have Run Comprehensive Tests Relevant to My Changes <!-- 📷 Include Screenshots/Videos Demonstrating the Fix, New Feature, or the Behavior Before/After Breaking Changes. --> ## This PR contains Changes to *LLM Models Plugin* <!-- LLM Models Test Example: --> <!-- https://github.com/langgenius/dify-official-plugins/blob/main/.assets/test-examples/llm-plugin-tests/llm_test_example.md --> - [ ] My Changes Affect Message Flow Handling (System Messages and User→Assistant Turn-Taking) <!-- 📷 Include Screenshots/Videos Demonstrating the Fix, New Feature, or the Behavior Before/After Breaking Changes. --> - [ ] My Changes Affect Tool Interaction Flow (Multi-Round Usage and Output Handling, for both Agent App and Agent Node) <!-- 📷 Include Screenshots/Videos Demonstrating the Fix, New Feature, or the Behavior Before/After Breaking Changes. --> - [ ] My Changes Affect Multimodal Input Handling (Images, PDFs, Audio, Video, etc.) <!-- 📷 Include Screenshots/Videos Demonstrating the Fix, New Feature, or the Behavior Before/After Breaking Changes. --> - [ ] My Changes Affect Multimodal Output Generation (Images, Audio, Video, etc.) <!-- 📷 Include Screenshots/Videos Demonstrating the Fix, New Feature, or the Behavior Before/After Breaking Changes. --> - [ ] My Changes Affect Structured Output Format (JSON, XML, etc.) <!-- 📷 Include Screenshots/Videos Demonstrating the Fix, New Feature, or the Behavior Before/After Breaking Changes. --> - [ ] My Changes Affect Token Consumption Metrics <!-- 📷 Include Screenshots/Videos Demonstrating the Fix, New Feature, or the Behavior Before/After Breaking Changes. --> - [ ] My Changes Affect Other LLM Functionalities (Reasoning Process, Grounding, Prompt Caching, etc.) <!-- 📷 Include Screenshots/Videos Demonstrating the Fix, New Feature, or the Behavior Before/After Breaking Changes. --> - [X] Other Changes (Add New Models, etc.) <!-- 📷 Include Screenshots/Videos Demonstrating the Fix, New Feature, or the Behavior Before/After Breaking Changes. --> ## Version Control (Any Changes to the Plugin Will Require Bumping the Version) - [X] I have Bumped Up the Version in Manifest.yaml (Top-Level `Version` Field, Not in Meta Section) ## Dify Plugin SDK Version - [X] I'm Using `dify_plugin>=0.3.0,<0.4.0` in requirements.txt ([SDK docs](https://github.com/langgenius/dify-plugin-sdks/blob/main/python/README.md)) ## Environment Verification (If Any Code Changes) ### Local Deployment Environment - [X] Dify Version is: 1.3.1, I have Tested My Changes on Local Deployment Dify with a Clean Environment That Matches the Production Configuration. ### SaaS Environment - [X] I have Tested My Changes on cloud.dify.ai with a Clean Environment That Matches the Production Configuration --- <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 10:23:44 -05:00
yindo closed this issue 2026-02-16 10:23:44 -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#1701