[PR #2397] [CLOSED] feat: add somark document extraction plugin #2447

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

📋 Pull Request Information

Original PR: https://github.com/langgenius/dify-official-plugins/pull/2397
Author: @shi-yafei
Created: 1/9/2026
Status: Closed

Base: mainHead: feat-add_somark


📝 Commits (1)

  • fee63cf feat: add somark document extraction plugin

📊 Changes

12 files changed (+804 additions, -0 deletions)

View changed files

tools/somark/.difyignore (+165 -0)
tools/somark/.env.example (+4 -0)
tools/somark/.gitignore (+168 -0)
tools/somark/README.md (+26 -0)
tools/somark/_assets/icon.svg (+248 -0)
tools/somark/main.py (+6 -0)
tools/somark/manifest.yaml (+31 -0)
tools/somark/provider/somark.py (+7 -0)
tools/somark/provider/somark.yaml (+40 -0)
tools/somark/requirements.txt (+1 -0)
tools/somark/tools/extract.py (+85 -0)
tools/somark/tools/extract.yaml (+23 -0)

📄 Description

Description

Added a new tool plugin for Somark, a document extraction service.
This plugin allows Dify users to extract content from documents (PDF, Word, Images) into structured Markdown format using the Somark API.

Features

  • Provider: Somark (with API Key authentication).
  • Tool: extract (supports file upload).
  • Integration: Connects to https://somark.tech/api/v1/extract/acc_sync.

Checklist

  • Tested locally with Dify (v0.15.0+).
  • Documentation (README) updated.
  • Followed plugin development guidelines.

🔄 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/2397 **Author:** [@shi-yafei](https://github.com/shi-yafei) **Created:** 1/9/2026 **Status:** ❌ Closed **Base:** `main` ← **Head:** `feat-add_somark` --- ### 📝 Commits (1) - [`fee63cf`](https://github.com/langgenius/dify-official-plugins/commit/fee63cf3548b38922aa736c6fdae422551611cde) feat: add somark document extraction plugin ### 📊 Changes **12 files changed** (+804 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `tools/somark/.difyignore` (+165 -0) ➕ `tools/somark/.env.example` (+4 -0) ➕ `tools/somark/.gitignore` (+168 -0) ➕ `tools/somark/README.md` (+26 -0) ➕ `tools/somark/_assets/icon.svg` (+248 -0) ➕ `tools/somark/main.py` (+6 -0) ➕ `tools/somark/manifest.yaml` (+31 -0) ➕ `tools/somark/provider/somark.py` (+7 -0) ➕ `tools/somark/provider/somark.yaml` (+40 -0) ➕ `tools/somark/requirements.txt` (+1 -0) ➕ `tools/somark/tools/extract.py` (+85 -0) ➕ `tools/somark/tools/extract.yaml` (+23 -0) </details> ### 📄 Description ## Description Added a new tool plugin for **Somark**, a document extraction service. This plugin allows Dify users to extract content from documents (PDF, Word, Images) into structured Markdown format using the Somark API. ## Features - **Provider**: Somark (with API Key authentication). - **Tool**: `extract` (supports file upload). - **Integration**: Connects to `https://somark.tech/api/v1/extract/acc_sync`. ## Checklist - [x] Tested locally with Dify (v0.15.0+). - [x] Documentation (README) updated. - [x] Followed plugin development guidelines. --- <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:17:00 -05:00
yindo closed this issue 2026-02-16 11:17: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#2447