You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
458 B
Python
11 lines
458 B
Python
4 weeks ago
|
import os
|
||
|
conf = {
|
||
|
"code_path": os.environ.get('GITHUB_WORKSPACE'),
|
||
|
"pdf_dev_path" : os.environ.get('GITHUB_WORKSPACE') + "/tests/test_cli/pdf_dev",
|
||
|
#"code_path": "/home/quyuan/ci/actions-runner/MinerU",
|
||
|
#"pdf_dev_path": "/home/quyuan/ci/actions-runner/MinerU/tests/test_cli/pdf_dev",
|
||
|
"pdf_res_path": "/tmp/magic-pdf",
|
||
|
"jsonl_path": "s3://llm-qatest-pnorm/mineru/test/line1.jsonl",
|
||
|
"s3_pdf_path": "s3://llm-qatest-pnorm/mineru/test/test_rearch_report.pdf"
|
||
|
}
|