[PR #2058] [MERGED] [Feat] Add PaddleOCR text recognition plugin #2234

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

📋 Pull Request Information

Original PR: https://github.com/langgenius/dify-official-plugins/pull/2058
Author: @Bobholamovic
Created: 11/13/2025
Status: Merged
Merged: 11/13/2025
Merged by: @crazywoola

Base: mainHead: feat/paddleocr-text-rec


📝 Commits (3)

📊 Changes

11 files changed (+369 additions, -0 deletions)

View changed files

tools/paddleocr_text_recognition/.env.example (+3 -0)
tools/paddleocr_text_recognition/README.md (+35 -0)
tools/paddleocr_text_recognition/_assets/get_api_url.png (+0 -0)
tools/paddleocr_text_recognition/_assets/icon.png (+0 -0)
tools/paddleocr_text_recognition/main.py (+6 -0)
tools/paddleocr_text_recognition/manifest.yaml (+30 -0)
tools/paddleocr_text_recognition/provider/paddleocr_text_recognition.py (+20 -0)
tools/paddleocr_text_recognition/provider/paddleocr_text_recognition.yaml (+44 -0)
tools/paddleocr_text_recognition/requirements.txt (+2 -0)
tools/paddleocr_text_recognition/tools/paddleocr_text_recognition.py (+53 -0)
tools/paddleocr_text_recognition/tools/paddleocr_text_recognition.yaml (+176 -0)

📄 Description

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.6.0 is in requirements.txt (SDK docs)

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/2058 **Author:** [@Bobholamovic](https://github.com/Bobholamovic) **Created:** 11/13/2025 **Status:** ✅ Merged **Merged:** 11/13/2025 **Merged by:** [@crazywoola](https://github.com/crazywoola) **Base:** `main` ← **Head:** `feat/paddleocr-text-rec` --- ### 📝 Commits (3) - [`e7d430d`](https://github.com/langgenius/dify-official-plugins/commit/e7d430d6918f3b00c45a0b3772b279d4c7e2e316) Add PaddleOCR text recognition plugin - [`01e9257`](https://github.com/langgenius/dify-official-plugins/commit/01e92573c0641918483f395e64582c4c301f6bff) Polish code - [`d4c6363`](https://github.com/langgenius/dify-official-plugins/commit/d4c6363704ab1f51ed4a52cacc3fc02ea9cf215d) Remove unused comments ### 📊 Changes **11 files changed** (+369 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `tools/paddleocr_text_recognition/.env.example` (+3 -0) ➕ `tools/paddleocr_text_recognition/README.md` (+35 -0) ➕ `tools/paddleocr_text_recognition/_assets/get_api_url.png` (+0 -0) ➕ `tools/paddleocr_text_recognition/_assets/icon.png` (+0 -0) ➕ `tools/paddleocr_text_recognition/main.py` (+6 -0) ➕ `tools/paddleocr_text_recognition/manifest.yaml` (+30 -0) ➕ `tools/paddleocr_text_recognition/provider/paddleocr_text_recognition.py` (+20 -0) ➕ `tools/paddleocr_text_recognition/provider/paddleocr_text_recognition.yaml` (+44 -0) ➕ `tools/paddleocr_text_recognition/requirements.txt` (+2 -0) ➕ `tools/paddleocr_text_recognition/tools/paddleocr_text_recognition.py` (+53 -0) ➕ `tools/paddleocr_text_recognition/tools/paddleocr_text_recognition.yaml` (+176 -0) </details> ### 📄 Description ## 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.6.0` is in requirements.txt ([SDK docs](https://github.com/langgenius/dify-plugin-sdks/blob/main/python/README.md)) ### Local Deployment Environment - [x] 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 11:16:26 -05:00
yindo closed this issue 2026-02-16 11:16:26 -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#2234