[PR #1444] [MERGED] fix(openai): GPT-5 series models contain incorrect parameters #1892

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

📋 Pull Request Information

Original PR: https://github.com/langgenius/dify-official-plugins/pull/1444
Author: @fdb02983rhy
Created: 8/7/2025
Status: Merged
Merged: 8/7/2025
Merged by: @laipz8200

Base: mainHead: chore/add-gpt-5-series


📝 Commits (10+)

  • 63c98db Add Claude Opus 4.1 model support
  • d9618fe Revert "Add Claude Opus 4.1 model support"
  • a87dd3e Merge branch 'langgenius:main' into main
  • 6b569c7 chore: add gpt-5 series
  • dbb5d67 chore: update manifest and requirements for GPT-5 series
  • 595ec0a Add GPT-5 series model configurations
  • 123fb94 Add GPT-5 series models to position configuration
  • e650a7b Merge branch 'langgenius:main' into main
  • 42b0e04 Merge remote-tracking branch 'origin/main' into chore/add-gpt-5-series
  • d8f8915 OpenAI: GPT-5 series YAML cleanup: remove top_p/presence_penalty/frequency_penalty (except gpt-5-chat-latest); runtime: treat o* and gpt-5* as thinking-series, map max_tokens to max_completion_tokens

📊 Changes

11 files changed (+333 additions, -83 deletions)

View changed files

📝 models/openai/manifest.yaml (+1 -1)
📝 models/openai/models/llm/_position.yaml (+22 -19)
models/openai/models/llm/gpt-5-2025-08-07.yaml (+68 -0)
📝 models/openai/models/llm/gpt-5-chat-latest.yaml (+3 -20)
models/openai/models/llm/gpt-5-mini-2025-08-07.yaml (+68 -0)
📝 models/openai/models/llm/gpt-5-mini.yaml (+33 -13)
models/openai/models/llm/gpt-5-nano-2025-08-07.yaml (+68 -0)
📝 models/openai/models/llm/gpt-5-nano.yaml (+33 -13)
📝 models/openai/models/llm/gpt-5.yaml (+33 -13)
📝 models/openai/models/llm/llm.py (+3 -3)
📝 models/openai/requirements.txt (+1 -1)

📄 Description

Related Issues or Context

https://github.com/user-attachments/assets/6593f97e-7986-4245-91c0-90e6f602920a

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, Fix Model Parameters 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 have Ensured dify_plugin>=0.3.0,<0.5.0 is in requirements.txt (SDK docs)

Environment Verification (If Any Code Changes)

Local Deployment Environment

  • Dify Version is: , 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/1444 **Author:** [@fdb02983rhy](https://github.com/fdb02983rhy) **Created:** 8/7/2025 **Status:** ✅ Merged **Merged:** 8/7/2025 **Merged by:** [@laipz8200](https://github.com/laipz8200) **Base:** `main` ← **Head:** `chore/add-gpt-5-series` --- ### 📝 Commits (10+) - [`63c98db`](https://github.com/langgenius/dify-official-plugins/commit/63c98dbed813e9dec1c30b99ec76cf8ffa0077f8) Add Claude Opus 4.1 model support - [`d9618fe`](https://github.com/langgenius/dify-official-plugins/commit/d9618fe96a576f973f8377a0cdb0e44ad0e507df) Revert "Add Claude Opus 4.1 model support" - [`a87dd3e`](https://github.com/langgenius/dify-official-plugins/commit/a87dd3e6b54a3172b0f1d4f59a075fa3227a7524) Merge branch 'langgenius:main' into main - [`6b569c7`](https://github.com/langgenius/dify-official-plugins/commit/6b569c7935014b04f2aa44d691fc40372eb729d7) chore: add gpt-5 series - [`dbb5d67`](https://github.com/langgenius/dify-official-plugins/commit/dbb5d67143caef5ee0ece3ef733e7a8c145ba8e1) chore: update manifest and requirements for GPT-5 series - [`595ec0a`](https://github.com/langgenius/dify-official-plugins/commit/595ec0a7fc0cdd92a3e37c2ad049bff1a3e69923) Add GPT-5 series model configurations - [`123fb94`](https://github.com/langgenius/dify-official-plugins/commit/123fb94d1776de4bcee6504a78ba1edeafbad061) Add GPT-5 series models to position configuration - [`e650a7b`](https://github.com/langgenius/dify-official-plugins/commit/e650a7b4ef317be2b8112a5a42ed9767a0e1cd0b) Merge branch 'langgenius:main' into main - [`42b0e04`](https://github.com/langgenius/dify-official-plugins/commit/42b0e04f83fa685dbb7d70fe8a16b9d0fe2bf621) Merge remote-tracking branch 'origin/main' into chore/add-gpt-5-series - [`d8f8915`](https://github.com/langgenius/dify-official-plugins/commit/d8f8915a709fe130618819f01437f598b2cc2258) OpenAI: GPT-5 series YAML cleanup: remove top_p/presence_penalty/frequency_penalty (except gpt-5-chat-latest); runtime: treat o* and gpt-5* as thinking-series, map max_tokens to max_completion_tokens ### 📊 Changes **11 files changed** (+333 additions, -83 deletions) <details> <summary>View changed files</summary> 📝 `models/openai/manifest.yaml` (+1 -1) 📝 `models/openai/models/llm/_position.yaml` (+22 -19) ➕ `models/openai/models/llm/gpt-5-2025-08-07.yaml` (+68 -0) 📝 `models/openai/models/llm/gpt-5-chat-latest.yaml` (+3 -20) ➕ `models/openai/models/llm/gpt-5-mini-2025-08-07.yaml` (+68 -0) 📝 `models/openai/models/llm/gpt-5-mini.yaml` (+33 -13) ➕ `models/openai/models/llm/gpt-5-nano-2025-08-07.yaml` (+68 -0) 📝 `models/openai/models/llm/gpt-5-nano.yaml` (+33 -13) 📝 `models/openai/models/llm/gpt-5.yaml` (+33 -13) 📝 `models/openai/models/llm/llm.py` (+3 -3) 📝 `models/openai/requirements.txt` (+1 -1) </details> ### 📄 Description ## Related Issues or Context https://github.com/user-attachments/assets/6593f97e-7986-4245-91c0-90e6f602920a ## 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, Fix Model Parameters 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) <!-- ⚠️ NOTE: Version Format: MAJOR.MINOR.PATCH - MAJOR (0.x.x): Reserved for Significant architectural changes or incompatible API modifications - MINOR (x.0.x): For New feature additions while maintaining backward compatibility - PATCH (x.x.0): For Backward-compatible bug fixes and minor improvements - Note: Each Version Component (MAJOR, MINOR, PATCH) Can Be 2 Digits, e.g., 10.11.22 --> ## Dify Plugin SDK Version - [x] I have Ensured `dify_plugin>=0.3.0,<0.5.0` is in requirements.txt ([SDK docs](https://github.com/langgenius/dify-plugin-sdks/blob/main/python/README.md)) ## Environment Verification (If Any Code Changes) <!-- ⚠️ NOTE: At Least One Environment Must Be Tested. --> ### Local Deployment Environment - [ ] Dify Version is: <!-- Specify Your Version (e.g., 1.2.0) -->, I have Tested My Changes on Local Deployment Dify with a Clean Environment That Matches the Production Configuration. <!-- - Python Virtual Env Matching Manifest.yaml & requirements.txt - No Breaking Changes in Dify That May Affect the Testing Result --> ### SaaS Environment - [x] I have Tested My Changes on cloud.dify.ai with a Clean Environment That Matches the Production Configuration <!-- - Python Virtual Env Matching Manifest.yaml & requirements.txt --> --- <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:24:19 -05:00
yindo closed this issue 2026-02-16 10:24:20 -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#1892