[PR #1663] [CLOSED] feat: add TokenPony model provider plugin #2019

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

📋 Pull Request Information

Original PR: https://github.com/langgenius/dify-official-plugins/pull/1663
Author: @bandly
Created: 9/5/2025
Status: Closed

Base: mainHead: main


📝 Commits (2)

📊 Changes

24 files changed (+906 additions, -0 deletions)

View changed files

models/tokenpony/.env.example (+4 -0)
models/tokenpony/PRIVACY.md (+3 -0)
models/tokenpony/README.md (+7 -0)
models/tokenpony/_assets/icon-dark.svg (+10 -0)
models/tokenpony/_assets/icon.svg (+8 -0)
models/tokenpony/_assets/icon_l_en.svg (+8 -0)
models/tokenpony/_assets/icon_s_en.svg (+8 -0)
models/tokenpony/_assets/logo0.svg (+10 -0)
models/tokenpony/_assets/logo2.svg (+8 -0)
models/tokenpony/main.py (+6 -0)
models/tokenpony/manifest.yaml (+43 -0)
models/tokenpony/models/llm/_position.yaml (+9 -0)
models/tokenpony/models/llm/deepseek-r1-0528.yaml (+39 -0)
models/tokenpony/models/llm/deepseek-v3-0324.yaml (+39 -0)
models/tokenpony/models/llm/deepseek-v3.1.yaml (+39 -0)
models/tokenpony/models/llm/glm-4.5.yaml (+39 -0)
models/tokenpony/models/llm/kimi-k2-instruct.yaml (+39 -0)
models/tokenpony/models/llm/llm.py (+382 -0)
models/tokenpony/models/llm/qwen3-32b.yaml (+39 -0)
models/tokenpony/models/llm/qwen3-8b.yaml (+39 -0)

...and 4 more files

📄 Description

Related Issues or Context

增加 TokenPony 模型供应商,支持在 Dify 中调用 TokenPony 提供的 LLM 服务。

方便用户通过统一的 Dify 插件机制使用 TokenPony API。

This PR contains Changes to LLM Models Plugin

My Changes Affect Message Flow Handling (System Messages and User→Assistant Turn-Taking)

Other Changes (Add New Models, Fix Model Parameters etc.)

Version Control

Bumped the version in manifest.yaml to reflect new feature addition.

Dify Plugin SDK Version

Ensured dify_plugin>=0.3.0,<0.5.0 in requirements.txt

Environment Verification
Local Deployment Environment

Tested on local Dify environment (0.0.1) with clean installation.

SaaS Environment

Tested on cloud.dify.ai


🔄 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/1663 **Author:** [@bandly](https://github.com/bandly) **Created:** 9/5/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `main` --- ### 📝 Commits (2) - [`8dbe582`](https://github.com/langgenius/dify-official-plugins/commit/8dbe582b9dec053a121f4631cd5bbcaa1b3e3492) tokenpony - [`320cb99`](https://github.com/langgenius/dify-official-plugins/commit/320cb9968aed7bfb5758ba6b31c8166558f8e61e) tokenpony ### 📊 Changes **24 files changed** (+906 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `models/tokenpony/.env.example` (+4 -0) ➕ `models/tokenpony/PRIVACY.md` (+3 -0) ➕ `models/tokenpony/README.md` (+7 -0) ➕ `models/tokenpony/_assets/icon-dark.svg` (+10 -0) ➕ `models/tokenpony/_assets/icon.svg` (+8 -0) ➕ `models/tokenpony/_assets/icon_l_en.svg` (+8 -0) ➕ `models/tokenpony/_assets/icon_s_en.svg` (+8 -0) ➕ `models/tokenpony/_assets/logo0.svg` (+10 -0) ➕ `models/tokenpony/_assets/logo2.svg` (+8 -0) ➕ `models/tokenpony/main.py` (+6 -0) ➕ `models/tokenpony/manifest.yaml` (+43 -0) ➕ `models/tokenpony/models/llm/_position.yaml` (+9 -0) ➕ `models/tokenpony/models/llm/deepseek-r1-0528.yaml` (+39 -0) ➕ `models/tokenpony/models/llm/deepseek-v3-0324.yaml` (+39 -0) ➕ `models/tokenpony/models/llm/deepseek-v3.1.yaml` (+39 -0) ➕ `models/tokenpony/models/llm/glm-4.5.yaml` (+39 -0) ➕ `models/tokenpony/models/llm/kimi-k2-instruct.yaml` (+39 -0) ➕ `models/tokenpony/models/llm/llm.py` (+382 -0) ➕ `models/tokenpony/models/llm/qwen3-32b.yaml` (+39 -0) ➕ `models/tokenpony/models/llm/qwen3-8b.yaml` (+39 -0) _...and 4 more files_ </details> ### 📄 Description Related Issues or Context 增加 TokenPony 模型供应商,支持在 Dify 中调用 TokenPony 提供的 LLM 服务。 方便用户通过统一的 Dify 插件机制使用 TokenPony API。 This PR contains Changes to LLM Models Plugin My Changes Affect Message Flow Handling (System Messages and User→Assistant Turn-Taking) Other Changes (Add New Models, Fix Model Parameters etc.) Version Control Bumped the version in manifest.yaml to reflect new feature addition. Dify Plugin SDK Version Ensured dify_plugin>=0.3.0,<0.5.0 in requirements.txt Environment Verification Local Deployment Environment Tested on local Dify environment (0.0.1) with clean installation. SaaS Environment Tested on cloud.dify.ai --- <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:53 -05:00
yindo closed this issue 2026-02-16 11:15:53 -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#2019