Public scan — anyone with this URL can view this analysis. Sign up to track your own repos privately, run scheduled re-scans, and get AI fix prompts via your dashboard.
130 of your 193 findings came from Repobility's proprietary detections. ✓ Repobility tags below mark them.
Upstream (GitHub) caused delay on this scan — not Repobility.
  • GitHub API rate-limited (HTTP 403) — preflight skipped, fell back to direct git clone.
  • Clone from GitHub took 110.17s for a 137.0 MB repo slow.
  • Repobility's analysis ran in 6.83s after the clone landed.

docling-project/docling

https://github.com/docling-project/docling · scanned 2026-06-05 09:38 UTC (5 days, 16 hours ago) · 10 languages

574 raw signals (178 security + 396 graph) 11/13 scanners ran 94th percentile · Python · medium (20-100K LoC) System graph score 70 (higher by 16)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 5 days, 16 hours ago · v2 · 237 actionable findings from 2 signal sources. 133 repeated signals grouped for readability. Security checks, system graph analysis, and verified AI-agent feedback are merged into one review queue.

JSON
Score breakdown â 2026-05-18-v5
Component Sub-score Weight Contribution
structure_score 60.0 0.15 9.00
security_score 100.0 0.25 25.00
testing_score 100.0 0.20 20.00
documentation_score 96.0 0.15 14.40
practices_score 87.0 0.15 13.05
code_quality 45.0 0.10 4.50
Overall 1.00 86.0
security_score may be inflated — optional security scanners were skipped on this fast scan
Severity distribution — click a segment to filter
Active filters: excluding tests × Reset all
Scan summary Quality grade A- (86/100). Dimensions: security 100, maintainability 60. 178 findings (17 security). 83,073 lines analyzed.

Showing 156 of 237 actionable findings. 370 raw detector signals were grouped into reader-sized issues. Click TP / FP to vote on a finding's accuracy — votes adjust the confidence weighting and improve detection across the platform.

high Security checks quality Quality conf 1.00 ✓ Repobility 8 occurrences [MINED107] Missing import: `html` used but not imported: The file uses `html.something(...)` but never imports `html`. This raises NameError at runtime the first time the line executes.
Add `import html` at the top of the file.
8 files, 8 locations
docling/backend/email_backend.py:74
docling/backend/msexcel_backend.py:543
docling/models/inference_engines/common/kserve_v2_grpc.py:389
docling/models/inference_engines/common/kserve_v2_http.py:102
docling/service_client/_scheduler.py:71
docling/utils/utils.py:42
perfs/iterate_pdf_pages.py:284
scripts/check_max_lines.py:174
low Security checks cicd CI/CD security conf 0.35 ✓ Repobility Workflow references repository secrets in a pull_request workflow
Fork pull_request runs do not receive normal repository secrets on GitHub Actions. Review this as a reliability/intent signal, not as direct fork-secret exfiltration. Raise severity only for pull_request_target or another trusted-context path that runs untrusted PR code with secrets.
.github/workflows/ci.yml:149 CI/CD securityworkflow secretsGitHub Actions
low Security checks quality Quality conf 1.00 ✓ Repobility [MINED006] Overcatch Baseexception: except BaseException: ... — prevents Ctrl+C and SystemExit from working.
Review and fix per the pattern semantics. See CWE-705 / for context.
docling/service_client/_scheduler.py:66
low Security checks quality Quality conf 1.00 ✓ Repobility [MINED012] Curl Pipe Bash: curl ... | sh / bash — runs unverified network code.
Review and fix per the pattern semantics. See CWE-494 / A08:2021 for context.
docling/backend/latex/engines/tectonic.py:86
high Security checks quality Quality conf 1.00 ✓ Repobility [MINED020] Logging Credential Via Fstring: logger.error(f"failed for {api_key}") — secrets end up in log aggregators / sentry.
Review and fix per the pattern semantics. See CWE-532 / A09:2021 for context.
docling/models/extraction/transformers_extraction_model.py:201
high Security checks quality Quality conf 1.00 ✓ Repobility [MINED020] Logging Credential Via Fstring: logger.error(f"failed for {api_key}") — secrets end up in log aggregators / sentry.
Review and fix per the pattern semantics. See CWE-532 / A09:2021 for context.
docling/models/extraction/nuextract_transformers_model.py:294
high Security checks quality Quality conf 1.00 ✓ Repobility 19 occurrences [MINED108] `self.pipeline_options` used but never assigned in __init__: Method `set_optional_field_default` of class `FormatOption` reads `self.pipeline_options`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance.
Initialize `self.pipeline_options = <default>` in __init__, or add a class-level default.
2 files, 19 locations
docling/document_converter.py:90, 91, 354, 414, 478, 559, 567, 582, +3 more (11 hits)
docling/document_extractor.py:61, 63, 135, 166, 204, 243, 272, 295 (8 hits)
high Security checks software dependencies conf 0.90 ✓ Repobility 3 occurrences [MINED118] Dockerfile FROM `node:20-slim` not pinned by digest: `FROM node:20-slim` resolves the tag at build time. The registry CAN re-push a different image for the same tag, so every build is potentially different. Production images should pin to `image@sha256:...` for reproducibility + supply-chain integrity.
Replace with: `FROM node:20-slim@sha256:<digest>`. Get the digest from `docker manifest inspect`. Re-pin via a scheduled bot (Renovate, Dependabot).
2 files, 3 locations
.actor/Dockerfile:2, 23 (2 hits)
Dockerfile:1
high Security checks software dependencies conf 0.90 ✓ Repobility 3 occurrences [MINED131] pre-commit hook `https://github.com/pre-commit/pre-commit-hooks` pinned to mutable rev `v6.0.0`: `.pre-commit-config.yaml` references `https://github.com/pre-commit/pre-commit-hooks` at `rev: v6.0.0`. If `{rev}` is a branch or version tag, the repo owner can push new code there and `pre-commit install --install-hooks` will fetch it on every developer's machine.
Pin to a commit SHA: `rev: <40-char-sha>` and bump it through `pre-commit autoupdate` (which writes to PRs that are reviewed).
lines 4, 17, 62
.pre-commit-config.yaml:4, 17, 62 (3 hits)
low Security checks cicd CI/CD security conf 0.90 ✓ Repobility 6 occurrences GitHub Action is tag-pinned rather than SHA-pinned
[MINED115] Action `actions/upload-artifact` pinned to mutable ref `@v4`: `uses: actions/upload-artifact@v4` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char c…
lines 28, 43, 66
.github/workflows/pypi.yml:28, 43, 66 (6 hits)
CI/CD securitySupply chainGitHub Actions
medium Security checks cicd CI/CD security conf 0.90 ✓ Repobility 12 occurrences GitHub Action is tag-pinned rather than SHA-pinned
[MINED115] Action `astral-sh/setup-uv` pinned to mutable ref `@v7`: `uses: astral-sh/setup-uv@v7` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA …
lines 352, 398, 435, 473, 553, 595
.github/workflows/checks.yml:352, 398, 435, 473, 553, 595 (12 hits)
CI/CD securitySupply chainGitHub Actions
high System graph security security conf 1.00 Insecure pattern 'eval_used' in docling/models/extraction/nuextract_transformers_model.py:163
Found a known-risky pattern (eval_used). Review and replace if possible.
docling/models/extraction/nuextract_transformers_model.py:163 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in docling/models/extraction/transformers_extraction_model.py:105
Found a known-risky pattern (eval_used). Review and replace if possible.
docling/models/extraction/transformers_extraction_model.py:105 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in docling/models/inference_engines/image_classification/transformers_engine.py:130
Found a known-risky pattern (eval_used). Review and replace if possible.
docling/models/inference_engines/image_classification/transformers_engine.py:130 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in docling/models/inference_engines/object_detection/transformers_engine.py:151
Found a known-risky pattern (eval_used). Review and replace if possible.
docling/models/inference_engines/object_detection/transformers_engine.py:151 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in docling/models/inference_engines/vlm/transformers_engine.py:222
Found a known-risky pattern (eval_used). Review and replace if possible.
docling/models/inference_engines/vlm/transformers_engine.py:222 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in docling/models/stages/chart_extraction/granite_vision.py:212
Found a known-risky pattern (eval_used). Review and replace if possible.
docling/models/stages/chart_extraction/granite_vision.py:212 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in docling/models/stages/code_formula/code_formula_model.py:120
Found a known-risky pattern (eval_used). Review and replace if possible.
docling/models/stages/code_formula/code_formula_model.py:120 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in docling/models/stages/picture_description/picture_description_vlm_model.py:87
Found a known-risky pattern (eval_used). Review and replace if possible.
docling/models/stages/picture_description/picture_description_vlm_model.py:87 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in docling/models/stages/table_structure/table_structure_model_granite_vision.py:227
Found a known-risky pattern (eval_used). Review and replace if possible.
docling/models/stages/table_structure/table_structure_model_granite_vision.py:227 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in docling/models/stages/table_structure/table_structure_model_v2.py:77
Found a known-risky pattern (eval_used). Review and replace if possible.
docling/models/stages/table_structure/table_structure_model_v2.py:77 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in docling/models/vlm_pipeline_models/hf_transformers_model.py:146
Found a known-risky pattern (eval_used). Review and replace if possible.
docling/models/vlm_pipeline_models/hf_transformers_model.py:146 Eval used
low Security checks quality Error handling conf 1.00 3 occurrences [ERR001] Silent Exception Swallowing: Silently swallowing all exceptions hides bugs. Even in cleanup code, log at DEBUG level.
Log the error: `except Exception: logger.debug('cleanup failed', exc_info=True)`. Or handle specific exception types.
3 files, 3 locations
docling/models/inference_engines/image_classification/api_kserve_v2_engine.py:195
docling/models/inference_engines/object_detection/api_kserve_v2_engine.py:256
docling/models/stages/ocr/kserve_v2_ocr_model.py:286
medium Security checks quality Quality conf 1.00 ✓ Repobility [MINED109] Mutable default argument in `api_image_request_streaming` (list): `def api_image_request_streaming(... = []/{}/set())` — Python's default value is constructed ONCE at function definition time and shared across all calls. Mutating it in one call mutates it for every future call too.
Use None as the default and create the collection inside the function: `def api_image_request_streaming(x=None): x = x or []`
docling/utils/api_image_request.py:146
medium Security checks quality Quality conf 1.00 ✓ Repobility [MINED109] Mutable default argument in `download_models` (list): `def download_models(... = []/{}/set())` — Python's default value is constructed ONCE at function definition time and shared across all calls. Mutating it in one call mutates it for every future call too.
Use None as the default and create the collection inside the function: `def download_models(x=None): x = x or []`
docling/models/stages/ocr/easyocr_model.py:96
low Security checks quality Error handling conf 0.55 ✓ Repobility 7 occurrences Broad exception handler needs review
This handler catches Exception/BaseException. It is actionable when it swallows errors without logging, re-raising, or returning a structured error. Handlers that intentionally convert exceptions into typed error results should not be treated as high risk.
6 files, 7 locations
docling/backend/mets_gbs_backend.py:185, 197 (2 hits)
docling/backend/mspowerpoint_backend.py:431
docling/pipeline/base_extraction_pipeline.py:42
docling/pipeline/base_pipeline.py:83
docling/pipeline/standard_pdf_pipeline.py:716
docling/pipeline/vlm_pipeline.py:407
Error handlingquality
medium Security checks cicd CI/CD security conf 0.90 Docker build context has no .dockerignore
Add .dockerignore with at least .git, .env, private keys, dependency folders, build outputs, and local databases.
.dockerignore CI/CD securitycontainers
high Security checks cicd CI/CD security conf 0.82 Docker final stage has no non-root USER
Add a non-root USER in the final runtime stage after files and permissions are prepared.
Dockerfile:1 CI/CD securitycontainers
medium Security checks cicd CI/CD security conf 0.94 Dockerfile base image uses the latest tag
Pin to a maintained version tag or digest and update it deliberately through dependency automation.
.actor/Dockerfile:23 CI/CD securitycontainers
high Security checks software dependencies conf 0.70 Remote install command pipes network code directly to a shell
Publish a package-manager install path or add checksum/signature verification before execution. For docs, show the inspect-then-run flow and pin the downloaded artifact version.
docling/backend/latex/engines/tectonic.py:86
medium System graph hardware Security conf 1.00 Dockerfile runs as root: Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
Container
medium System graph cicd CI/CD security conf 1.00 GitHub Actions workflow grants broad write permissions
CI tokens with write permissions increase blast radius when an action, dependency, or PR workflow is compromised. Prefer job-level least-privilege permissions.
.github/workflows/pypi.yml CI/CD securitySupply chainGithub actions
medium System graph cicd CI/CD security conf 1.00 GitHub Actions workflow grants broad write permissions
CI tokens with write permissions increase blast radius when an action, dependency, or PR workflow is compromised. Prefer job-level least-privilege permissions.
.github/workflows/cd-docs.yml CI/CD securitySupply chainGithub actions
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — .github/scripts/run_pr_fast_checks.py:70
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — .github/scripts/run_selected_examples.py:122
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — docling/backend/docx/drawingml/utils.py:31
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — docling/models/stages/ocr/tesseract_ocr_cli_model.py:127
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — docling/utils/utils.py:49
`requests.get(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — docs/examples/legacy/pictures_description_api_legacy.py:87
`requests.post(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — docs/examples/legacy/vlm_pipeline_api_model_legacy.py:178
`requests.post(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — docs/examples/pictures_description_api.py:121
`requests.post(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — docs/examples/vlm_pipeline_api_model.py:378
`requests.post(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
low Security checks cicd CI/CD security conf 0.72 Dockerfile installs recommended OS packages
Add `--no-install-recommends` and explicitly list only packages the image needs.
Dockerfile:5 CI/CD securitycontainers
low Security checks quality Quality conf 0.60 30 occurrences Duplicated implementation block across source files
Duplicate implementation blocks are maintenance debt. Keep them visible, but they are not a high-severity defect unless the duplicated logic is security-sensitive or drifting.
12 files, 17 locations
docling/models/vlm_pipeline_models/vllm_model.py:41, 100, 211 (3 hits)
docling/models/inference_engines/object_detection/onnxruntime_engine.py:58, 151 (2 hits)
docling/models/inference_engines/object_detection/transformers_engine.py:14, 53 (2 hits)
docling/models/vlm_pipeline_models/mlx_model.py:58, 131 (2 hits)
docling/backend/mets_gbs_backend.py:55
docling/backend/pypdfium2_backend.py:290
docling/backend/xml/jats_backend.py:121
docling/cli/tools.py:6
duplicationquality
low System graph quality Maintenance conf 1.00 48 TODO/FIXME markers
High count of TODO/FIXME/HACK markers — track them as issues so they're not forgotten.
low System graph hardware Coverage conf 1.00 Containers defined but no K8s/orchestration manifest found
Repo has Dockerfiles/compose but no Kubernetes/Nomad manifests. If the target deployment is K8s, the manifests may live in a separate ops repo.
Deployment
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: python:3.11-slim-bookworm
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
Dockerfile:1 containersPinned dependencies
low System graph software Dead code candidate conf 1.00 File has no detected symbols: docling/backend/docx/latex/latex_dict.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: docling/backend/latex/constants.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: docling/backend/latex_backend.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: docling/cli/tools.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: docling/utils/locks.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: docs/examples/granitedocling_repetition_stopping.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: docs/examples/inspect_picture_content.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: docs/examples/legacy/minimal_vlm_pipeline_legacy.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: docs/examples/legacy/picture_description_inline_legacy.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: docs/examples/minimal.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: docs/examples/minimal_vlm_pipeline.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: docs/examples/picture_description_inline.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph quality Integrity conf 1.00 12 occurrences Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: docs/examples/translate.py:main, docs/examples/pii_obfuscate.py:main This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygiene). Consolidate or document why they're separate.
12 occurrences
repo-level (12 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 5 occurrences Near-duplicate function bodies in 3 places
Functions with the same first-5-line body hash: docs/examples/export_tables.py:main, docs/examples/export_multimodal.py:main, docs/examples/export_figures.py:main This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygiene). Consolidate or docum…
5 occurrences
repo-level (5 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 2 occurrences Near-duplicate function bodies in 4 places
Functions with the same first-5-line body hash: docs/examples/granite_vision_table_structure.py:main, docs/examples/custom_convert.py:main, docs/examples/pictures_description_api.py:main, docs/examples/develop_picture_enrichment.py:main This is *the* AI-coder failure mode (4× more duplication in v…
2 occurrences
repo-level (2 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 6 places
Functions with the same first-5-line body hash: docling/models/base_ocr_model.py:get_options_type, docling/pipeline/base_extraction_pipeline.py:get_default_options, docling/pipeline/base_pipeline.py:initialize_page, docling/backend/abstract_backend.py:convert This is *the* AI-coder failure mode (4…
duplicatesduplication
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `api_kserve_v2` in docling/models/inference_engines/image_classification/base.py:36
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `api_kserve_v2` in docling/models/inference_engines/object_detection/base.py:36
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `ch_ppocr_mobile_v2` in docling/models/stages/ocr/rapid_ocr_model.py:45
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `ch_ppocr_mobile_v2` in docs/examples/rapidocr_with_custom_models.py:51
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `ch_ppocr_mobile_v2` in tests/test_rapid_ocr_model.py:21
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `docling_document_to_legacy` in docling/datamodel/document.py:53
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `docling_layout_v2` in docling/datamodel/layout_model_specs.py:85
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `docling_tableformer_v2` in docling/datamodel/pipeline_options.py:149
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `docling_v2` in docs/examples/enrich_doclingdocument.py:126
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `docling_v2` in tests/test_backend_asciidoc.py:61
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `docling_v2` in tests/test_backend_csv.py:43
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `docling_v2` in tests/test_backend_docling_json.py:13
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `docling_v2` in tests/test_backend_html.py:279
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `docling_v2` in tests/test_backend_jats.py:117
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `docling_v2` in tests/test_backend_markdown.py:33
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `docling_v2` in tests/test_backend_msexcel.py:48
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `docling_v2` in tests/test_backend_msword.py:70
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `docling_v2` in tests/test_backend_patent_uspto.py:21
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `docling_v2` in tests/test_backend_pptx.py:38
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `docling_v2` in tests/test_backend_vtt.py:25
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `docling_v2` in tests/test_backend_xbrl.py:54
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `docling_v2` in tests/test_deepseekocr_vlm.py:70
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `docling_v2` in tests/test_latex/test_basic.py:207
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `document_figure_classifier_v2` in docling/datamodel/stage_model_specs.py:964
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `document_figure_classifier_v2` in docs/examples/model_family_engines_example.py:110
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `extract_macro_name_old` in tests/test_latex/test_macros.py:223
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `minimal_vlm_pipeline_legacy` in docs/examples/legacy/minimal_vlm_pipeline_legacy.py:18
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `minimal_vlm_pipeline_legacy` in docs/examples/minimal_vlm_pipeline.py:19
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `model_copy` in docling/backend/docling_parse_backend.py:207
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `model_copy` in docling/backend/pypdfium2_backend.py:372
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `model_copy` in docling/backend/webvtt_backend.py:43
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `model_copy` in docling/cli/main.py:931
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `model_copy` in docling/datamodel/picture_classification_options.py:35
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `model_copy` in docling/datamodel/settings.py:88
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `model_copy` in docling/datamodel/vlm_model_specs.py:41
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `model_copy` in docling/pipeline/standard_pdf_pipeline.py:524
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `model_copy` in docling/service_client/client.py:166
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `model_copy` in docs/examples/experimental/demo_layout_vlm.py:92
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `model_copy` in docs/examples/granitedocling_repetition_stopping.py:45
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `model_copy` in tests/test_settings_load.py:64
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `picture_description_inline_legacy` in docs/examples/legacy/picture_description_inline_legacy.py:18
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `picture_description_inline_legacy` in docs/examples/picture_description_inline.py:19
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `pictures_description_api_legacy` in docs/examples/pictures_description_api.py:20
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `ppocr_keys_v1` in tests/test_rapid_ocr_lang.py:82
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `response_format_legacy` in docling/pipeline/vlm_pipeline.py:278
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `table_structure_model_v2` in docling/models/plugins/defaults.py:68
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `table_structure_model_v2` in docling/utils/model_downloader.py:33
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `tableformer_v2` in docling/datamodel/service/options.py:719
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `tableformer_v2` in docling/models/stages/table_structure/table_structure_model_v2.py:71
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `verify_conversion_result_v2` in tests/test_backend_webp.py:19
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `verify_conversion_result_v2` in tests/test_e2e_conversion.py:12
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `verify_conversion_result_v2` in tests/test_e2e_ocr_conversion.py:24
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `verify_conversion_result_v2` in tests/test_interfaces.py:19
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `verify_conversion_result_v2` in tests/test_kserve_v2_ocr_integration.py:17
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `verify_tables_v1` in tests/verify_utils.py:158
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `with_tableformer_v2` in docling/cli/models.py:131
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph software Dead code conf 1.00 Possibly dead Python function: do_brk
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
docling/backend/docx/latex/omml.py:256
low System graph software Dead code conf 1.00 Possibly dead Python function: do_common
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
docling/backend/docx/latex/omml.py:268
low System graph software Dead code conf 1.00 3 occurrences Possibly dead Python function: download_wrapper
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
3 files, 3 locations
docling/models/inference_engines/common/hf_vision_base.py:53
docling/models/inference_engines/vlm/transformers_engine.py:160
docling/models/inference_engines/vlm/vllm_engine.py:172
low System graph software Dead code conf 1.00 Possibly dead Python function: initialize_page
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
docling/pipeline/vlm_pipeline.py:205
low System graph software Dead code conf 1.00 Possibly dead Python function: initialize_page
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
docling/pipeline/legacy_standard_pdf_pipeline.py:148
low System graph software Dead code conf 1.00 Possibly dead Python function: load_string
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
docling/backend/docx/latex/omml.py:68
low System graph software Dead code conf 1.00 Possibly dead Python function: logo_callback
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
docling/cli/main.py:246
low System graph software Dead code conf 1.00 Possibly dead Python function: parse_brace_args
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
docling/backend/latex/utils/table.py:107
low System graph software Dead code conf 1.00 Possibly dead Python function: remove_cluster
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
docling/utils/layout_postprocessor.py:73
low System graph software Dead code conf 1.00 Possibly dead Python function: replace_match
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
docling/backend/md_backend.py:93
low System graph software Dead code conf 1.00 Possibly dead Python function: show_external_plugins_callback
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
docling/cli/main.py:269
low System graph software Dead code conf 1.00 Possibly dead Python function: to_docling_document
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
docling/utils/glm_utils.py:70
low System graph software Dead code conf 1.00 Possibly dead Python function: to_document_stream
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
docling/datamodel/service/sources.py:41
low System graph software Dead code conf 1.00 Possibly dead Python function: to_string
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
docling/pipeline/asr_pipeline.py:150
low System graph software Dead code conf 1.00 Possibly dead Python function: version_callback
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
docling/cli/main.py:252
low System graph quality Integrity conf 1.00 Stub function `_build_document` (body is just `pass`/`return`) — docling/pipeline/base_pipeline.py:100
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `_close_native_document` (body is just `pass`/`return`) — docling/backend/managed_pdfium_backend.py:30
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `backend_options_for_input` (body is just `pass`/`return`) — docling/datamodel/base_models.py:50
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `environments` (body is just `pass`/`return`) — docling/backend/latex/libraries/base.py:8
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `get_default_options` (body is just `pass`/`return`) — docling/pipeline/base_extraction_pipeline.py:71
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `get_options_type` (body is just `pass`/`return`) — docling/models/base_ocr_model.py:242
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `get_options_type` (body is just `pass`/`return`) — docling/models/picture_description_base_model.py:116
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `is_available` (body is just `pass`/`return`) — docling/backend/latex/engines/base.py:6
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `is_processable` (body is just `pass`/`return`) — docling/models/base_model.py:150
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `is_valid` (body is just `pass`/`return`) — docling/backend/abstract_backend.py:34
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `page_no` (body is just `pass`/`return`) — docling/backend/pdf_backend.py:20
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `should_stop` (body is just `pass`/`return`) — docling/models/utils/generation_utils.py:19
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `unload` (body is just `pass`/`return`) — docling/backend/asciidoc_backend.py:57
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `unload` (body is just `pass`/`return`) — docling/backend/docling_parse_backend.py:419
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `unload` (body is just `pass`/`return`) — docling/backend/xml/uspto_backend.py:147
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Complexity conf 1.00 Very large file: docling/backend/html_backend.py (4524 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: docling/backend/msword_backend.py (2644 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: docling/backend/xml/uspto_backend.py (1985 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: docling/datamodel/pipeline_options.py (1731 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: docling/datamodel/stage_model_specs.py (1500 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: docling/service_client/client.py (1683 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: tests/test_service_client_sdk_unit.py (1967 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
For AI agents: Voting guide (TP/FP) MCP manifest Stdio wrapper SARIF Integrate Findings queue Vote TP/FP on findings to calibrate the engine.
For AI agents + API integrations
Email me when this repo regresses
Free. We re-scan periodically; new criticals → your inbox. No signup required for the scan itself.
API access

This page is publicly accessible at: https://repobility.com/scan/85f49a77-72bd-4c75-996a-7b2ce912526b/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/85f49a77-72bd-4c75-996a-7b2ce912526b/

Important — please don't re-submit the same URL repeatedly. The submission endpoint is idempotent: re-submitting the same git URL returns this same scan_token, not a new one. To re-scan this repo, sign up free and use the dashboard.