mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-07-17 05:07:23 +08:00
Ports remaining Go parser wiring and PDF backends, adds tenant-aware VLM dispatch, aligns post-processing with Python, and adds end-to-end pipeline coverage with a generated six-page PDF.
10 lines
216 B
Go
10 lines
216 B
Go
//go:build !cgo
|
|
|
|
package component
|
|
|
|
import "fmt"
|
|
|
|
func defaultRenderPDFVisionPages(_ []byte) ([]pdfVisionPage, error) {
|
|
return nil, fmt.Errorf("tenant-aware PDF IMAGE2TEXT backend requires cgo rendering support")
|
|
}
|