|
|
|
|
@ -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())
|
|
|
|
|
}
|