[PR #1252] [MERGED] feat: Introduce OAI native deep research #1798

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

📋 Pull Request Information

Original PR: https://github.com/langgenius/dify-official-plugins/pull/1252
Author: @fdb02983rhy
Created: 7/9/2025
Status: Merged
Merged: 7/14/2025
Merged by: @crazywoola

Base: mainHead: feat-Introduce-OAI-native-deep-research


📝 Commits (10+)

  • 33d3798 feat: Introduce OAI native deep research
  • fac9dab Update README.md
  • f0adc80 Add structured JSON responses to DeepResearchTool
  • 2f673aa Add configurable timeout to DeepResearchTool
  • 9d82c03 Update deep_research.yaml
  • efbba55 Add advanced config and refactor deep research tool
  • 2e25ce4 Update deep_research.yaml
  • d2754f7 Add support for reasoning summary_text in DeepResearchTool
  • f671a5b Update OpenAI icon asset
  • 99b78a9 Update OpenAI asset images

📊 Changes

19 files changed (+624 additions, -130 deletions)

View changed files

📝 tools/openai/README.md (+66 -14)
📝 tools/openai/_assets/icon.png (+0 -0)
📝 tools/openai/_assets/openai_1.png (+0 -0)
📝 tools/openai/_assets/openai_2.png (+0 -0)
📝 tools/openai/_assets/openai_3.png (+0 -0)
tools/openai/_assets/openai_4.png (+0 -0)
tools/openai/_assets/openai_5.png (+0 -0)
tools/openai/_assets/openai_6.png (+0 -0)
📝 tools/openai/manifest.yaml (+3 -5)
📝 tools/openai/provider/openai.py (+16 -5)
📝 tools/openai/provider/openai.yaml (+1 -11)
📝 tools/openai/requirements.txt (+2 -2)
📝 tools/openai/tools/dalle2.yaml (+0 -11)
📝 tools/openai/tools/dalle3.yaml (+0 -20)
tools/openai/tools/deep_research.py (+349 -0)
tools/openai/tools/deep_research.yaml (+184 -0)
📝 tools/openai/tools/gpt_image_edit.yaml (+1 -24)
📝 tools/openai/tools/gpt_image_generate.py (+1 -1)
📝 tools/openai/tools/gpt_image_generate.yaml (+1 -37)

📄 Description

Related Issues or Context

Closes https://github.com/langgenius/dify/issues/22074

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
image image image image

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/1252 **Author:** [@fdb02983rhy](https://github.com/fdb02983rhy) **Created:** 7/9/2025 **Status:** ✅ Merged **Merged:** 7/14/2025 **Merged by:** [@crazywoola](https://github.com/crazywoola) **Base:** `main` ← **Head:** `feat-Introduce-OAI-native-deep-research` --- ### 📝 Commits (10+) - [`33d3798`](https://github.com/langgenius/dify-official-plugins/commit/33d37982a53c1510384618ab574e9527daca949a) feat: Introduce OAI native deep research - [`fac9dab`](https://github.com/langgenius/dify-official-plugins/commit/fac9dab1d57aeb2972c1adf7c8227200d195b895) Update README.md - [`f0adc80`](https://github.com/langgenius/dify-official-plugins/commit/f0adc809c8f7ed7878799014f026ff49f4932cf4) Add structured JSON responses to DeepResearchTool - [`2f673aa`](https://github.com/langgenius/dify-official-plugins/commit/2f673aa20403bdc05a67439b76c9a639c1dc9965) Add configurable timeout to DeepResearchTool - [`9d82c03`](https://github.com/langgenius/dify-official-plugins/commit/9d82c03aa4ab80fc95a352160d5ae9b210f9b914) Update deep_research.yaml - [`efbba55`](https://github.com/langgenius/dify-official-plugins/commit/efbba553a1796ae827688a82a57f4523eaec87b4) Add advanced config and refactor deep research tool - [`2e25ce4`](https://github.com/langgenius/dify-official-plugins/commit/2e25ce45f49f6a36e710751b940b0ad72caea0e8) Update deep_research.yaml - [`d2754f7`](https://github.com/langgenius/dify-official-plugins/commit/d2754f7d93fc17730c4e2ede388717d4576a146c) Add support for reasoning summary_text in DeepResearchTool - [`f671a5b`](https://github.com/langgenius/dify-official-plugins/commit/f671a5ba6ea4d4264e980c06892943a5c4d66839) Update OpenAI icon asset - [`99b78a9`](https://github.com/langgenius/dify-official-plugins/commit/99b78a9b3716d498447f09e35b4be712299c5669) Update OpenAI asset images ### 📊 Changes **19 files changed** (+624 additions, -130 deletions) <details> <summary>View changed files</summary> 📝 `tools/openai/README.md` (+66 -14) 📝 `tools/openai/_assets/icon.png` (+0 -0) 📝 `tools/openai/_assets/openai_1.png` (+0 -0) 📝 `tools/openai/_assets/openai_2.png` (+0 -0) 📝 `tools/openai/_assets/openai_3.png` (+0 -0) ➕ `tools/openai/_assets/openai_4.png` (+0 -0) ➕ `tools/openai/_assets/openai_5.png` (+0 -0) ➕ `tools/openai/_assets/openai_6.png` (+0 -0) 📝 `tools/openai/manifest.yaml` (+3 -5) 📝 `tools/openai/provider/openai.py` (+16 -5) 📝 `tools/openai/provider/openai.yaml` (+1 -11) 📝 `tools/openai/requirements.txt` (+2 -2) 📝 `tools/openai/tools/dalle2.yaml` (+0 -11) 📝 `tools/openai/tools/dalle3.yaml` (+0 -20) ➕ `tools/openai/tools/deep_research.py` (+349 -0) ➕ `tools/openai/tools/deep_research.yaml` (+184 -0) 📝 `tools/openai/tools/gpt_image_edit.yaml` (+1 -24) 📝 `tools/openai/tools/gpt_image_generate.py` (+1 -1) 📝 `tools/openai/tools/gpt_image_generate.yaml` (+1 -37) </details> ### 📄 Description ## Related Issues or Context Closes https://github.com/langgenius/dify/issues/22074 ## 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* - [x] I have Run Comprehensive Tests Relevant to My Changes <!-- 📷 Include Screenshots/Videos Demonstrating the Fix, New Feature, or the Behavior Before/After Breaking Changes. --> <img width="2124" height="1514" alt="image" src="https://github.com/user-attachments/assets/e0cb5faf-4a16-474c-a1e3-d034d1401eb0" /> <img width="2126" height="1510" alt="image" src="https://github.com/user-attachments/assets/ddd80ca8-ecaa-4d40-9e84-e1c740dc64fd" /> <img width="2148" height="1610" alt="image" src="https://github.com/user-attachments/assets/473c14b0-60a1-4910-99e4-757e18ea2166" /> <img width="2142" height="1530" alt="image" src="https://github.com/user-attachments/assets/6e032c0c-875d-4c62-8200-136a1835aa64" /> ## 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. --> - [ ] 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:00 -05:00
yindo closed this issue 2026-02-16 10:24:00 -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#1798