Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
wangsen
MinerU
Commits
5dbdbf02
Unverified
Commit
5dbdbf02
authored
Jul 04, 2025
by
Xiaomeng Zhao
Committed by
GitHub
Jul 04, 2025
Browse files
Merge pull request #2889 from myhloli/dev
Dev
parents
09eecea4
e6f817fe
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
75 additions
and
77 deletions
+75
-77
mineru/cli/client.py
mineru/cli/client.py
+2
-36
mineru/cli/fast_api.py
mineru/cli/fast_api.py
+25
-14
mineru/cli/gradio_app.py
mineru/cli/gradio_app.py
+10
-27
mineru/utils/cli_parser.py
mineru/utils/cli_parser.py
+38
-0
No files found.
mineru/cli/client.py
View file @
5dbdbf02
...
...
@@ -4,6 +4,7 @@ import click
from
pathlib
import
Path
from
loguru
import
logger
from
mineru.utils.cli_parser
import
arg_parse
from
mineru.utils.config_reader
import
get_device
from
mineru.utils.model_utils
import
get_vram
from
..version
import
__version__
...
...
@@ -145,42 +146,7 @@ def main(
device_mode
,
virtual_vram
,
model_source
,
**
kwargs
):
# 解析额外参数
extra_kwargs
=
{}
i
=
0
while
i
<
len
(
ctx
.
args
):
arg
=
ctx
.
args
[
i
]
if
arg
.
startswith
(
'--'
):
param_name
=
arg
[
2
:].
replace
(
'-'
,
'_'
)
# 转换参数名格式
i
+=
1
if
i
<
len
(
ctx
.
args
)
and
not
ctx
.
args
[
i
].
startswith
(
'--'
):
# 参数有值
try
:
# 尝试转换为适当的类型
if
ctx
.
args
[
i
].
lower
()
==
'true'
:
extra_kwargs
[
param_name
]
=
True
elif
ctx
.
args
[
i
].
lower
()
==
'false'
:
extra_kwargs
[
param_name
]
=
False
elif
'.'
in
ctx
.
args
[
i
]:
try
:
extra_kwargs
[
param_name
]
=
float
(
ctx
.
args
[
i
])
except
ValueError
:
extra_kwargs
[
param_name
]
=
ctx
.
args
[
i
]
else
:
try
:
extra_kwargs
[
param_name
]
=
int
(
ctx
.
args
[
i
])
except
ValueError
:
extra_kwargs
[
param_name
]
=
ctx
.
args
[
i
]
except
:
extra_kwargs
[
param_name
]
=
ctx
.
args
[
i
]
else
:
# 布尔型标志参数
extra_kwargs
[
param_name
]
=
True
i
-=
1
i
+=
1
# 将解析出的参数合并到kwargs
kwargs
.
update
(
extra_kwargs
)
kwargs
.
update
(
arg_parse
(
ctx
))
if
not
backend
.
endswith
(
'-client'
):
def
get_device_mode
()
->
str
:
...
...
mineru/cli/fast_api.py
View file @
5dbdbf02
import
uuid
import
os
import
uvicorn
import
argparse
import
click
from
pathlib
import
Path
from
glob
import
glob
from
fastapi
import
FastAPI
,
UploadFile
,
File
,
Form
...
...
@@ -12,6 +12,7 @@ from loguru import logger
from
base64
import
b64encode
from
mineru.cli.common
import
aio_do_parse
,
read_fn
from
mineru.utils.cli_parser
import
arg_parse
from
mineru.version
import
__version__
app
=
FastAPI
()
...
...
@@ -50,6 +51,10 @@ async def parse_pdf(
start_page_id
:
int
=
Form
(
0
),
end_page_id
:
int
=
Form
(
99999
),
):
# 获取命令行配置参数
config
=
getattr
(
app
.
state
,
"config"
,
{})
try
:
# 创建唯一的输出目录
unique_dir
=
os
.
path
.
join
(
output_dir
,
str
(
uuid
.
uuid4
()))
...
...
@@ -113,6 +118,7 @@ async def parse_pdf(
f_dump_content_list
=
return_content_list
,
start_page_id
=
start_page_id
,
end_page_id
=
end_page_id
,
**
config
)
# 构建结果路径
...
...
@@ -162,24 +168,29 @@ async def parse_pdf(
)
def
main
():
"""启动MinerU FastAPI服务器的命令行入口"""
parser
=
argparse
.
ArgumentParser
(
description
=
'Start MinerU FastAPI Service'
)
parser
.
add_argument
(
'--host'
,
type
=
str
,
default
=
'127.0.0.1'
,
help
=
'Server host (default: 127.0.0.1)'
)
parser
.
add_argument
(
'--port'
,
type
=
int
,
default
=
8000
,
help
=
'Server port (default: 8000)'
)
parser
.
add_argument
(
'--reload'
,
action
=
'store_true'
,
help
=
'Enable auto-reload (development mode)'
)
args
=
parser
.
parse_args
()
@
click
.
command
(
context_settings
=
dict
(
ignore_unknown_options
=
True
,
allow_extra_args
=
True
))
@
click
.
pass_context
@
click
.
option
(
'--host'
,
default
=
'127.0.0.1'
,
help
=
'Server host (default: 127.0.0.1)'
)
@
click
.
option
(
'--port'
,
default
=
8000
,
type
=
int
,
help
=
'Server port (default: 8000)'
)
@
click
.
option
(
'--reload'
,
is_flag
=
True
,
help
=
'Enable auto-reload (development mode)'
)
def
main
(
ctx
,
host
,
port
,
reload
,
**
kwargs
):
print
(
f
"Start MinerU FastAPI Service: http://
{
args
.
host
}
:
{
args
.
port
}
"
)
kwargs
.
update
(
arg_parse
(
ctx
))
# 将配置参数存储到应用状态中
app
.
state
.
config
=
kwargs
"""启动MinerU FastAPI服务器的命令行入口"""
print
(
f
"Start MinerU FastAPI Service: http://
{
host
}
:
{
port
}
"
)
print
(
"The API documentation can be accessed at the following address:"
)
print
(
f
"- Swagger UI: http://
{
args
.
host
}
:
{
args
.
port
}
/docs"
)
print
(
f
"- ReDoc: http://
{
args
.
host
}
:
{
args
.
port
}
/redoc"
)
print
(
f
"- Swagger UI: http://
{
host
}
:
{
port
}
/docs"
)
print
(
f
"- ReDoc: http://
{
host
}
:
{
port
}
/redoc"
)
uvicorn
.
run
(
"mineru.cli.fast_api:app"
,
host
=
args
.
host
,
port
=
args
.
port
,
reload
=
args
.
reload
host
=
host
,
port
=
port
,
reload
=
reload
)
...
...
mineru/cli/gradio_app.py
View file @
5dbdbf02
...
...
@@ -13,6 +13,7 @@ from gradio_pdf import PDF
from
loguru
import
logger
from
mineru.cli.common
import
prepare_env
,
read_fn
,
aio_do_parse
,
pdf_suffixes
,
image_suffixes
from
mineru.utils.cli_parser
import
arg_parse
from
mineru.utils.hash_utils
import
str_sha256
...
...
@@ -188,7 +189,8 @@ def update_interface(backend_choice):
pass
@
click
.
command
()
@
click
.
command
(
context_settings
=
dict
(
ignore_unknown_options
=
True
,
allow_extra_args
=
True
))
@
click
.
pass_context
@
click
.
option
(
'--enable-example'
,
'example_enable'
,
...
...
@@ -204,20 +206,6 @@ def update_interface(backend_choice):
help
=
"Enable SgLang engine backend for faster processing."
,
default
=
False
,
)
@
click
.
option
(
'--mem-fraction-static'
,
'mem_fraction_static'
,
type
=
float
,
help
=
"Set the static memory fraction for SgLang engine. "
,
default
=
None
,
)
@
click
.
option
(
'--enable-torch-compile'
,
'torch_compile_enable'
,
type
=
bool
,
help
=
"Enable torch compile for SgLang engine. "
,
default
=
False
,
)
@
click
.
option
(
'--enable-api'
,
'api_enable'
,
...
...
@@ -246,28 +234,23 @@ def update_interface(backend_choice):
help
=
"Set the server port for the Gradio app."
,
default
=
None
,
)
def
main
(
example_enable
,
sglang_engine_enable
,
mem_fraction_static
,
torch_compile_enable
,
api_enable
,
max_convert_pages
,
server_name
,
server_port
def
main
(
ctx
,
example_enable
,
sglang_engine_enable
,
api_enable
,
max_convert_pages
,
server_name
,
server_port
,
**
kwargs
):
kwargs
.
update
(
arg_parse
(
ctx
))
if
sglang_engine_enable
:
try
:
print
(
"Start init SgLang engine..."
)
from
mineru.backend.vlm.vlm_analyze
import
ModelSingleton
model_singleton
=
ModelSingleton
()
model_params
=
{
"enable_torch_compile"
:
torch_compile_enable
}
# 只有当mem_fraction_static不为None时才添加该参数
if
mem_fraction_static
is
not
None
:
model_params
[
"mem_fraction_static"
]
=
mem_fraction_static
predictor
=
model_singleton
.
get_model
(
"sglang-engine"
,
None
,
None
,
**
model_param
s
**
kwarg
s
)
print
(
"SgLang engine init successfully."
)
except
Exception
as
e
:
...
...
mineru/utils/cli_parser.py
0 → 100644
View file @
5dbdbf02
import
click
def
arg_parse
(
ctx
:
'click.Context'
)
->
dict
:
# 解析额外参数
extra_kwargs
=
{}
i
=
0
while
i
<
len
(
ctx
.
args
):
arg
=
ctx
.
args
[
i
]
if
arg
.
startswith
(
'--'
):
param_name
=
arg
[
2
:].
replace
(
'-'
,
'_'
)
# 转换参数名格式
i
+=
1
if
i
<
len
(
ctx
.
args
)
and
not
ctx
.
args
[
i
].
startswith
(
'--'
):
# 参数有值
try
:
# 尝试转换为适当的类型
if
ctx
.
args
[
i
].
lower
()
==
'true'
:
extra_kwargs
[
param_name
]
=
True
elif
ctx
.
args
[
i
].
lower
()
==
'false'
:
extra_kwargs
[
param_name
]
=
False
elif
'.'
in
ctx
.
args
[
i
]:
try
:
extra_kwargs
[
param_name
]
=
float
(
ctx
.
args
[
i
])
except
ValueError
:
extra_kwargs
[
param_name
]
=
ctx
.
args
[
i
]
else
:
try
:
extra_kwargs
[
param_name
]
=
int
(
ctx
.
args
[
i
])
except
ValueError
:
extra_kwargs
[
param_name
]
=
ctx
.
args
[
i
]
except
:
extra_kwargs
[
param_name
]
=
ctx
.
args
[
i
]
else
:
# 布尔型标志参数
extra_kwargs
[
param_name
]
=
True
i
-=
1
i
+=
1
return
extra_kwargs
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment