Go: implement provider: PaddleOCR_Local (#15158)

### What problem does this PR solve?

Go: implement provider: PaddleOCR_Local

**Verified from CLI**

```
RAGFlow(user)> ocr with 'PaddleOCR-VL@test@paddleocr_local' file './internal/test1.jpg'
+----------------------+
| text                 |
+----------------------+
| ## Parallel to these |
+----------------------+
```

### Type of change

- [X] Bug Fix (non-breaking change which fixes an issue)
- [X] New Feature (non-breaking change which adds functionality)
- [X] Refactoring
This commit is contained in:
Haruko386
2026-05-25 12:12:57 +08:00
committed by GitHub
parent 8d8ea71877
commit 5d022d83e8
7 changed files with 226 additions and 4 deletions

View File

@ -8,7 +8,7 @@
"models": "models",
"status": "",
"balance": "tokens/packages/balance",
"embedding": "embedding",
"embedding": "embeddings",
"rerank": "rerank",
"ocr": "images/ocr",
"doc_parse": "async/documents/parse",

View File

@ -1,5 +1,5 @@
{
"name": "mineru_local",
"name": "MinerU_local",
"url_suffix": {
"doc_parse": "file_parse",
"task": "tasks"

View File

@ -0,0 +1,7 @@
{
"name": "PaddleOCR_Local",
"url_suffix": {
"ocr": "layout-parsing"
},
"class": "local"
}

View File

@ -57,7 +57,7 @@
},
{
"name": "mixedbread-ai/mxbai-rerank-large-v2",
"max_tokens": "16384",
"max_tokens": 16384,
"model_types": [
"rerank"
]
@ -76,3 +76,4 @@
}
]
}

View File

@ -12,7 +12,8 @@
"asr": "audio/transcriptions",
"tts": "audio/speech",
"files": "files",
"models": "models"
"models": "models",
"ocr": "layout_parsing"
},
"class": "glm",
"models": [
@ -268,6 +269,12 @@
"model_types": [
"rerank"
]
},
{
"name": "glm-ocr",
"model_types": [
"ocr"
]
}
]
}

View File

@ -135,6 +135,8 @@ func (f *ModelFactory) CreateModelDriver(providerName string, baseURL map[string
return NewGPUStackModel(baseURL, urlSuffix), nil
case "n1n":
return NewN1NModel(baseURL, urlSuffix), nil
case "paddleocr_local":
return NewPaddleOCRLocalModel(baseURL, urlSuffix), nil
default:
return NewDummyModel(baseURL, urlSuffix), nil
}

View File

@ -0,0 +1,205 @@
package models
import (
"bytes"
"encoding/base64"
"encoding/json"
"fmt"
"io"
"net/http"
"strings"
"time"
)
type PaddleOCRLocalModel struct {
BaseURL map[string]string
URLSuffix URLSuffix
httpClient *http.Client
}
func NewPaddleOCRLocalModel(baseURL map[string]string, urlSuffix URLSuffix) *PaddleOCRLocalModel {
return &PaddleOCRLocalModel{
BaseURL: baseURL,
URLSuffix: urlSuffix,
httpClient: &http.Client{
Timeout: time.Second * 120,
Transport: &http.Transport{
MaxIdleConns: 10,
MaxIdleConnsPerHost: 100,
IdleConnTimeout: time.Second * 90,
DisableCompression: false,
},
},
}
}
func (p *PaddleOCRLocalModel) NewInstance(baseURL map[string]string) ModelDriver {
return &PaddleOCRLocalModel{
BaseURL: baseURL,
URLSuffix: p.URLSuffix,
httpClient: &http.Client{
Timeout: time.Second * 120,
Transport: &http.Transport{
MaxIdleConns: 10,
MaxIdleConnsPerHost: 100,
IdleConnTimeout: time.Second * 90,
DisableCompression: false,
},
},
}
}
func (p *PaddleOCRLocalModel) Name() string {
return "paddleocr_local"
}
func (p *PaddleOCRLocalModel) ChatWithMessages(modelName string, messages []Message, apiConfig *APIConfig, chatModelConfig *ChatConfig) (*ChatResponse, error) {
return nil, fmt.Errorf("%s no such method", p.Name())
}
func (p *PaddleOCRLocalModel) ChatStreamlyWithSender(modelName string, messages []Message, apiConfig *APIConfig, modelConfig *ChatConfig, sender func(*string, *string) error) error {
return fmt.Errorf("%s no such method", p.Name())
}
func (p *PaddleOCRLocalModel) Embed(modelName *string, texts []string, apiConfig *APIConfig, embeddingConfig *EmbeddingConfig) ([]EmbeddingData, error) {
return nil, fmt.Errorf("%s no such method", p.Name())
}
func (p *PaddleOCRLocalModel) Rerank(modelName *string, query string, documents []string, apiConfig *APIConfig, rerankConfig *RerankConfig) (*RerankResponse, error) {
return nil, fmt.Errorf("%s no such method", p.Name())
}
func (p *PaddleOCRLocalModel) TranscribeAudio(modelName *string, file *string, apiConfig *APIConfig, asrConfig *ASRConfig) (*ASRResponse, error) {
return nil, fmt.Errorf("%s no such method", p.Name())
}
func (p *PaddleOCRLocalModel) TranscribeAudioWithSender(modelName *string, file *string, apiConfig *APIConfig, asrConfig *ASRConfig, sender func(*string, *string) error) error {
return fmt.Errorf("%s no such method", p.Name())
}
func (p *PaddleOCRLocalModel) AudioSpeech(modelName *string, audioContent *string, apiConfig *APIConfig, ttsConfig *TTSConfig) (*TTSResponse, error) {
return nil, fmt.Errorf("%s no such method", p.Name())
}
func (p *PaddleOCRLocalModel) AudioSpeechWithSender(modelName *string, audioContent *string, apiConfig *APIConfig, ttsConfig *TTSConfig, sender func(*string, *string) error) error {
return fmt.Errorf("%s no such method", p.Name())
}
// For different model, paddleOCR have different url_suffix:
// e.g.PaddleOCR-VL: /layout-parsing | PP-OCRv5: /ocr
// We select `PaddleOCR-VL` here
type paddleLocalOCRResponse struct {
LogId string `json:"logId"`
ErrorCode int `json:"errorCode"`
ErrorMsg string `json:"errorMsg"`
Result struct {
LayoutParsingResults []struct {
Markdown struct {
Text string `json:"text"`
} `json:"markdown"`
} `json:"layoutParsingResults"`
} `json:"result"`
}
func (p *PaddleOCRLocalModel) OCRFile(modelName *string, content []byte, fileURL *string, apiConfig *APIConfig, ocrConfig *OCRConfig) (*OCRFileResponse, error) {
if len(content) == 0 {
return nil, fmt.Errorf("local PaddleOCR requires file content, but content is empty")
}
var region = "default"
if apiConfig != nil && apiConfig.Region != nil && *apiConfig.Region != "" {
region = *apiConfig.Region
}
url := fmt.Sprintf("%s/%s", p.BaseURL[region], p.URLSuffix.OCR)
base64Str := base64.StdEncoding.EncodeToString(content)
fileType := 1
if fileURL != nil && *fileURL != "" {
if strings.HasSuffix(strings.ToLower(*fileURL), ".pdf") {
fileType = 0
}
} else if len(content) > 4 && string(content[:4]) == "%PDF" {
fileType = 0
}
reqData := map[string]interface{}{
"file": base64Str,
"fileType": fileType,
}
jsonData, err := json.Marshal(reqData)
if err != nil {
return nil, fmt.Errorf("failed to marshal local PaddleOCR request: %w", err)
}
req, err := http.NewRequest("POST", url, bytes.NewBuffer(jsonData))
if err != nil {
return nil, fmt.Errorf("failed to create request: %w", err)
}
req.Header.Set("Content-Type", "application/json")
resp, err := p.httpClient.Do(req)
if err != nil {
return nil, fmt.Errorf("failed to send request to local PaddleOCR: %w", err)
}
defer resp.Body.Close()
respBody, err := io.ReadAll(resp.Body)
if err != nil {
return nil, fmt.Errorf("failed to read response body: %w", err)
}
if resp.StatusCode != http.StatusOK {
return nil, fmt.Errorf("local PaddleOCR failed with status %d: %s", resp.StatusCode, string(respBody))
}
var ocrResp paddleLocalOCRResponse
if err := json.Unmarshal(respBody, &ocrResp); err != nil {
return nil, fmt.Errorf("failed to parse local PaddleOCR response: %w, raw: %s", err, string(respBody))
}
if ocrResp.ErrorCode != 0 {
return nil, fmt.Errorf("local PaddleOCR task failed: %s (errorCode: %d)", ocrResp.ErrorMsg, ocrResp.ErrorCode)
}
var fullMarkdown strings.Builder
for _, layoutRes := range ocrResp.Result.LayoutParsingResults {
if layoutRes.Markdown.Text != "" {
fullMarkdown.WriteString(layoutRes.Markdown.Text)
fullMarkdown.WriteString("\n\n")
}
}
extractedText := strings.TrimSpace(fullMarkdown.String())
return &OCRFileResponse{
Text: &extractedText,
}, nil
}
func (p *PaddleOCRLocalModel) ParseFile(modelName *string, content []byte, url *string, apiConfig *APIConfig, parseFileConfig *ParseFileConfig) (*ParseFileResponse, error) {
return nil, fmt.Errorf("%s no such method", p.Name())
}
func (p *PaddleOCRLocalModel) ListModels(apiConfig *APIConfig) ([]string, error) {
return nil, fmt.Errorf("%s no such method", p.Name())
}
func (p *PaddleOCRLocalModel) Balance(apiConfig *APIConfig) (map[string]interface{}, error) {
return nil, fmt.Errorf("%s no such method", p.Name())
}
func (p *PaddleOCRLocalModel) CheckConnection(apiConfig *APIConfig) error {
return fmt.Errorf("%s no such method", p.Name())
}
func (p *PaddleOCRLocalModel) ListTasks(apiConfig *APIConfig) ([]ListTaskStatus, error) {
return nil, fmt.Errorf("%s no such method", p.Name())
}
func (p *PaddleOCRLocalModel) ShowTask(taskID string, apiConfig *APIConfig) (*TaskResponse, error) {
return nil, fmt.Errorf("%s no such method", p.Name())
}