Title recognition #4155
Replies: 1 comment
|
To enable title recognition with vlm-http-client, set up your mineru.json like this: {
"llm-aided-config": {
"title_aided": {
"api_key": "your_api_key",
"base_url": "https://dashscope.aliyuncs.com/compatible-mode/v1", // or your OpenAI-compatible endpoint
"model": "qwen3-next-80b-a3b-instruct",
"enable": true
}
}
}You only need to configure this on the server side. MinerU loads mineru.json automatically (or from the path set by the If title_aided is enabled, MinerU will use your specified LLM to optimize and assign hierarchical levels to detected titles, resulting in multi-level Markdown output code logic. Common issues: mineru.json not loaded (wrong path, missing env var), incorrect config structure, missing/invalid api_key/base_url/model, or unsupported fields like enable_thinking. If your config isn’t in the default location, set Version compatibility matters: recommended are MinerU 2.5.3+, mineru_vl_utils >=0.1.7, vllm >=0.10.2 version notes. If you want to avoid automatic model downloads, manually download required models and set Once configured, title recognition will work automatically when you use vlm-http-client. To reply, just mention @dosu. Docs are dead. Just use Dosu. |
Uh oh!
There was an error while loading. Please reload this page.
When I call the server mineru service using the vlm-http-client method, how can I configure it to achieve the configuration using title_aided_config in mineru.json
All reactions