[PR #206] [CLOSED] Add new model provider PPIO #1181

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

📋 Pull Request Information

Original PR: https://github.com/langgenius/dify-official-plugins/pull/206
Author: @cnJasonZ
Created: 2/13/2025
Status: Closed

Base: mainHead: feat/ppio


📝 Commits (7)

  • 89cdda6 feat: add new model provider PPIO
  • 29c7464 fix: fix created_at timestamp for PPIO
  • 298b51a Merge branch 'main' into feat/ppio
  • b6d9e26 fix: fix ppio.yaml file; update requirements
  • 1c46ec4 fix: update author
  • 9f5244f feat: add privacy policy and readme for ppio
  • 92118e3 fix: modify ppio plugin author

📊 Changes

34 files changed (+1885 additions, -0 deletions)

View changed files

models/ppio/.gitignore (+1 -0)
models/ppio/README.md (+10 -0)
models/ppio/_assets/icon_l_en.svg (+4 -0)
models/ppio/_assets/icon_l_zh.svg (+4 -0)
models/ppio/_assets/icon_s_en.svg (+3 -0)
models/ppio/_assets/ppio-01.png (+0 -0)
models/ppio/main.py (+6 -0)
models/ppio/manifest.yaml (+38 -0)
models/ppio/models/_oaiapi_common.py (+39 -0)
models/ppio/models/llm/_position.yaml (+30 -0)
models/ppio/models/llm/baichuan2-13b-chat.yaml (+41 -0)
models/ppio/models/llm/deepseek-r1-community.yaml (+41 -0)
models/ppio/models/llm/deepseek-r1-distill-llama-70b.yaml (+41 -0)
models/ppio/models/llm/deepseek-r1-distill-llama-8b.yaml (+41 -0)
models/ppio/models/llm/deepseek-r1-distill-qwen-14b.yaml (+41 -0)
models/ppio/models/llm/deepseek-r1-distill-qwen-32b.yaml (+41 -0)
models/ppio/models/llm/deepseek-r1.yaml (+41 -0)
models/ppio/models/llm/deepseek-v3-community.yaml (+41 -0)
models/ppio/models/llm/deepseek-v3.yaml (+41 -0)
models/ppio/models/llm/glm-4-9b-chat.yaml (+41 -0)

...and 14 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-official-plugins/pull/206 **Author:** [@cnJasonZ](https://github.com/cnJasonZ) **Created:** 2/13/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `feat/ppio` --- ### 📝 Commits (7) - [`89cdda6`](https://github.com/langgenius/dify-official-plugins/commit/89cdda6794b1846ca6b955397e488fdc37f3e958) feat: add new model provider PPIO - [`29c7464`](https://github.com/langgenius/dify-official-plugins/commit/29c74643d2e0ad32747c5f67f3af92606cea9b44) fix: fix created_at timestamp for PPIO - [`298b51a`](https://github.com/langgenius/dify-official-plugins/commit/298b51a05818cc013e664acc2daa596c4ec1d280) Merge branch 'main' into feat/ppio - [`b6d9e26`](https://github.com/langgenius/dify-official-plugins/commit/b6d9e26cb3e50a4065d4fa290556fc7db50b34f5) fix: fix ppio.yaml file; update requirements - [`1c46ec4`](https://github.com/langgenius/dify-official-plugins/commit/1c46ec421c2a8f2e3bca86aa3d24db097c159f55) fix: update author - [`9f5244f`](https://github.com/langgenius/dify-official-plugins/commit/9f5244f98401500590d79908d72fd0cf8546e85d) feat: add privacy policy and readme for ppio - [`92118e3`](https://github.com/langgenius/dify-official-plugins/commit/92118e321ebe2b99d9db076e48a46fe3b01f27d8) fix: modify ppio plugin author ### 📊 Changes **34 files changed** (+1885 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `models/ppio/.gitignore` (+1 -0) ➕ `models/ppio/README.md` (+10 -0) ➕ `models/ppio/_assets/icon_l_en.svg` (+4 -0) ➕ `models/ppio/_assets/icon_l_zh.svg` (+4 -0) ➕ `models/ppio/_assets/icon_s_en.svg` (+3 -0) ➕ `models/ppio/_assets/ppio-01.png` (+0 -0) ➕ `models/ppio/main.py` (+6 -0) ➕ `models/ppio/manifest.yaml` (+38 -0) ➕ `models/ppio/models/_oaiapi_common.py` (+39 -0) ➕ `models/ppio/models/llm/_position.yaml` (+30 -0) ➕ `models/ppio/models/llm/baichuan2-13b-chat.yaml` (+41 -0) ➕ `models/ppio/models/llm/deepseek-r1-community.yaml` (+41 -0) ➕ `models/ppio/models/llm/deepseek-r1-distill-llama-70b.yaml` (+41 -0) ➕ `models/ppio/models/llm/deepseek-r1-distill-llama-8b.yaml` (+41 -0) ➕ `models/ppio/models/llm/deepseek-r1-distill-qwen-14b.yaml` (+41 -0) ➕ `models/ppio/models/llm/deepseek-r1-distill-qwen-32b.yaml` (+41 -0) ➕ `models/ppio/models/llm/deepseek-r1.yaml` (+41 -0) ➕ `models/ppio/models/llm/deepseek-v3-community.yaml` (+41 -0) ➕ `models/ppio/models/llm/deepseek-v3.yaml` (+41 -0) ➕ `models/ppio/models/llm/glm-4-9b-chat.yaml` (+41 -0) _...and 14 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-16 10:22:13 -05:00
yindo closed this issue 2026-02-16 10:22:13 -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#1181