mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-06-29 15:31:05 +08:00
## Summary - route hosted MinerU.Net and PaddleOCR.Net provider names to their existing Go drivers - add regression coverage for loading the hosted OCR provider configs through ProviderManager ## What changed - Added canonical provider-name aliases for the hosted OCR provider display names. - Covered both bundled configs with a focused provider-manager test. ## Why The hosted provider configs use display names with `.Net`, while model factory dispatch lowercases the provider name. Without aliases, those configs fall through to `DummyModel` instead of using the existing MinerU and PaddleOCR drivers. --------- Co-authored-by: Jin Hai <haijin.chn@gmail.com>
26 lines
375 B
JSON
26 lines
375 B
JSON
{
|
|
"name": "MinerU.Net",
|
|
"url": {
|
|
"default": "https://mineru.net"
|
|
},
|
|
"url_suffix": {
|
|
"doc_parse": "v4/extract/task",
|
|
"tasks": ""
|
|
},
|
|
"class": "mineru.net",
|
|
"models": [
|
|
{
|
|
"name": "vlm",
|
|
"model_types": [
|
|
"doc_parse"
|
|
]
|
|
},
|
|
{
|
|
"name": "MinerU-HTML",
|
|
"model_types": [
|
|
"doc_parse"
|
|
]
|
|
}
|
|
]
|
|
}
|