Skip to content

Docling Serve API#

docling-serve-api version

The docling-serve-api module defines the core, framework-agnostic Java API used to communicate with a Docling Serve backend. It provides the request/response model and the main DoclingServeApi interface. You can use any implementation of this interface to talk to a running Docling Serve instance.

The base Java version is 17. This module has no other required dependencies, although it is compatible with both Jackson 2.x and 3.x.

If you need a ready-to-use HTTP implementation, see the reference client: - Docling Serve Client: docling-serve-client

When to use this module#

  • You want a stable, typed Java model for Docling Serve requests/responses without committing to a specific HTTP stack.
  • You plan to create your own client implementation (e.g., different HTTP lib, reactive runtime) but still rely on the shared API model.
  • You want to write code that is portable across different client implementations.

Installation#

Add the API dependency to your project.

dependencies {
  implementation("ai.docling:docling-serve-api:0.5.1")
}
<dependency>
  <groupId>ai.docling</groupId>
  <artifactId>docling-serve-api</artifactId>
  <version>0.5.1</version>
</dependency>

Note: The API module does not perform network I/O by itself. To call a live service, combine it with an implementation such as docling-serve-client.

Quick start#

Below is a minimal example using the reference client to create an implementation of DoclingServeApi, build a conversion request, and retrieve Markdown output. The request/response types all come from docling-serve-api.

import java.net.URI;
import ai.docling.serve.api.DoclingServeApi;
import ai.docling.serve.api.convert.request.ConvertDocumentRequest;
import ai.docling.serve.api.convert.request.options.ConvertDocumentOptions;
import ai.docling.serve.api.convert.request.options.OutputFormat;
import ai.docling.serve.api.convert.request.source.HttpSource;
import ai.docling.serve.api.convert.request.target.InBodyTarget;
import ai.docling.serve.api.convert.response.InBodyConvertDocumentResponse;

DoclingServeApi api = DoclingServeApi.builder()
    .baseUrl("http://localhost:8000") // your Docling Serve URL
    .logRequests() // log HTTP requests
    .logResponses() // log HTTP responses
    .prettyPrint() // pretty-print JSON requests/responses
    .apiKey("optionally your api key")
    .build();

ConvertDocumentRequest request = ConvertDocumentRequest.builder()
    .source(HttpSource.builder().url(URI.create("https://arxiv.org/pdf/2408.09869"))
        .build())
    .options(ConvertDocumentOptions.builder()
        .toFormat(OutputFormat.MARKDOWN) // request Markdown output
        .includeImages(true)
        .build())
    .target(InBodyTarget.builder().build()) // get results in the HTTP response body
    .build();

InBodyConvertDocumentResponse response = (InBodyConvertDocumentResponse) api.convertSource(request);
System.out.println(response.getDocument().getMarkdownContent());

Core concepts#

The DoclingServeApi interface#

Defined in ai.docling.serve.api.DoclingServeApi, this interface exposes many operations:

Any HTTP or non-HTTP implementation can implement this interface. The reference implementation is provided by the docling-serve-client module.

Extension Points#

The docling-serve-api module uses the Java Service Provider Interface to define an extension point for building/customizing instances of DoclingServeApi. An application (or downstream framework) can create an implementation of ai.docling.serve.api.spi.DoclingServeApiBuilderFactory and register it via the META-INF/services/ai.docling.serve.api.spi.DoclingServeApiBuilderFactory file, or providing an implementation using Java modules.

This is exactly what the docling-serve-client module does to provide its implementation. See module-info.java and DoclingServeClientBuilderFactory.java.

Requests: ConvertDocumentRequest#

Create a request via the builder:

ConvertDocumentRequest request = ConvertDocumentRequest.builder()
    .source(/* one of the supported sources */)
    .options(/* conversion options */)
    .target(/* optional delivery target */)
    .build();

Supported sources (ai.docling.serve.api.convert.request.source): - HttpSource — fetch content from a URL (optional custom headers) - FileSource — embed content as Base64 with a filename - S3Source — fetch content from an S3 bucket

Targets (ai.docling.serve.api.convert.request.target): - InBodyTarget — receive results directly in the API response body (default use case) - PutTarget — the service uploads converted content via HTTP PUT to a specified URI - ZipTarget — receive a zipped result - S3Target — upload converted content to an S3 bucket

Options (ai.docling.serve.api.convert.request.options.ConvertDocumentOptions) let you control: - Input/output formats (e.g., fromFormats, toFormats) - OCR (e.g., doOcr, forceOcr, ocrEngine, ocrLang) - PDF processing (e.g., pdfBackend) - Tables (e.g., tableMode, tableCellMatching) - Pipelines and page ranges (e.g., pipeline, pageRange) - Timeouts and error behavior (e.g., documentTimeout, abortOnError) - Enrichments (code/formula/picture), image handling, scaling, page break placeholder - VLM pipeline hints

Explore the options package for the full list of knobs you can turn.

Responses: InBodyConvertDocumentResponse, PreSignedUrlConvertDocumentResponse, ZipArchiveConvertDocumentResponse and DocumentResponse#

  • InBodyConvertDocumentResponse contains the converted document (if any), errors, processing status, total processing_time, and detailed timings map.
  • PreSignedUrlConvertDocumentResponse contains processing statistics - total processing_time and conversion metrics num_converted, num_succeeded, num_failed.
  • ZipArchiveConvertDocumentResponse contains file_name and an input stream for the archive.
  • DocumentResponse holds the actual content fields you requested, such as md_content (Markdown), html_content, text_content, and a json_content map. It also includes the filename and doctags_content when relevant.

Health checks#

You can ping the service to check readiness and basic status:

import ai.docling.serve.api.health.HealthCheckResponse;

HealthCheckResponse health = api.health();
System.out.println("Service status: " + health.getStatus());

Error handling#

Conversion may succeed partially (e.g., some pages) while returning warnings or errors. Always inspect InBodyConvertDocumentResponse#getErrors() and consider status:

InBodyConvertDocumentResponse response = (InBodyConvertDocumentResponse) api.convertSource(request);

if (response.getErrors() != null && !response.getErrors().isEmpty()) {
  response.getErrors().forEach(err ->
      System.err.println("Component: " + err.getComponentType() + 
          ", Module: " + err.getModuleName() + 
          ", Message: " + err.getErrorMessage()));
}

if (response.getDocument() != null && response.getDocument().getMarkdownContent() != null) {
  // Use the output
}

The exact transport-level exceptions (e.g., timeouts, connectivity) depend on the client implementation you use. The reference client throws standard Java exceptions for HTTP and I/O failures.

Validation errors#

In the case of a request validation error (i.e. docling-serve throws a 422 error), the docling-java API will throw an ai.docling.serve.api.validation.ValidationException which can be caught and inspected.

Logging and builders#

DoclingServeApi exposes a toBuilder() method so implementations can be duplicated and tweaked. Most client builders, including the reference client, also expose logRequests() and logResponses() for simple diagnostics:

DoclingServeApi newApi = api.toBuilder()
    .logRequests()
    .logResponses()
    .build();

Version compatibility#

The API is tested against all published versions of Docling Serve each week. Below are the latest run results:

Results for ghcr.io/docling-project/docling-serve as of 2026-05-04T06:45:07.775508973Z#

Here are the results:

Tag Result Details
v1.17.0 ✅ SUCCESS Click for run details
v1.16.1 ✅ SUCCESS Click for run details
v1.15.0 ✅ SUCCESS Click for run details
v1.14.3 ✅ SUCCESS Click for run details
v1.14.2 ✅ SUCCESS Click for run details
v1.14.1 ✅ SUCCESS Click for run details
v1.14.0 ✅ SUCCESS Click for run details
v1.13.1 ✅ SUCCESS Click for run details
v1.13.0 ✅ SUCCESS Click for run details
v1.12.0 ✅ SUCCESS Click for run details
v1.11.0 ✅ SUCCESS Click for run details
v1.10.0 ✅ SUCCESS Click for run details
v1.9.0 ✅ SUCCESS Click for run details
v1.8.0 ✅ SUCCESS Click for run details
v1.7.2 ✅ SUCCESS Click for run details
v1.7.1 ✅ SUCCESS Click for run details
v1.7.0 ✅ SUCCESS Click for run details
v1.6.0 ✅ SUCCESS Click for run details
v1.5.1 ✅ SUCCESS Click for run details
v1.5.0 ✅ SUCCESS Click for run details
v1.4.1 ✅ SUCCESS Click for run details
v1.4.0 ✅ SUCCESS Click for run details
v1.3.1 ✅ SUCCESS Click for run details
v1.3.0 ✅ SUCCESS Click for run details
v1.2.2 ✅ SUCCESS Click for run details
v1.2.1 ✅ SUCCESS Click for run details
v1.2.0 ✅ SUCCESS Click for run details
v1.1.0 ✅ SUCCESS Click for run details
v1.0.1 ✅ SUCCESS Click for run details
v1.0.0 ✅ SUCCESS Click for run details

Details#

ghcr.io/docling-project/docling-serve:v1.17.0#
Click to expand ###### Message
Click to collapse
Tag v1.17.0 is ok
###### Docling server logs
click to expand
Starting production server 🚀

Server started at http://0.0.0.0:5001
Documentation at http://0.0.0.0:5001/docs
Scalar docs at http://0.0.0.0:5001/scalar

Logs:
INFO:     Started server process [1]
INFO:     Waiting for application startup.
2026-05-04 06:44:46.739245083 [W:onnxruntime:Default, device_discovery.cc:132 GetPciBusId] Skipping pci_bus_id for PCI path at "/sys/devices/LNXSYSTM:00/LNXSYBUS:00/ACPI0004:00/MSFT1000:00/5620e0c7-8062-4dce-aeb7-520c7ef76171" because filename ""5620e0c7-8062-4dce-aeb7-520c7ef76171"" dit not match expected pattern of [0-9a-f]+:[0-9a-f]+:[0-9a-f]+[.][0-9a-f]+
[INFO] 2026-05-04 06:44:47,981 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:44:47,983 [RapidOCR] main.py:57: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/det/ch_PP-OCRv4_det_mobile.onnx
[INFO] 2026-05-04 06:44:48,099 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:44:48,099 [RapidOCR] main.py:57: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/cls/ch_ppocr_mobile_v2.0_cls_mobile.onnx
[INFO] 2026-05-04 06:44:48,163 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:44:48,163 [RapidOCR] main.py:57: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/rec/ch_PP-OCRv4_rec_mobile.onnx

Loading weights:   0%|          | 0/770 [00:00<?, ?it/s]
Loading weights:  72%|███████▏  | 551/770 [00:00<00:00, 5501.35it/s]
Loading weights: 100%|██████████| 770/770 [00:00<00:00, 5602.54it/s]
INFO:     Application startup complete.
INFO:     Uvicorn running on http://0.0.0.0:5001 (Press CTRL+C to quit)
INFO:     172.17.0.1:54846 - "GET /health HTTP/1.1" 200 OK
INFO:     172.17.0.1:54858 - "GET /health HTTP/1.1" 200 OK
[INFO] 2026-05-04 06:44:49,670 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:44:49,670 [RapidOCR] main.py:57: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/det/ch_PP-OCRv4_det_mobile.onnx
[INFO] 2026-05-04 06:44:49,770 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:44:49,771 [RapidOCR] main.py:57: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/cls/ch_ppocr_mobile_v2.0_cls_mobile.onnx
[INFO] 2026-05-04 06:44:49,814 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:44:49,814 [RapidOCR] main.py:57: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/rec/ch_PP-OCRv4_rec_mobile.onnx

Loading weights:   0%|          | 0/770 [00:00<?, ?it/s]
Loading weights:  74%|███████▎  | 567/770 [00:00<00:00, 5648.87it/s]
Loading weights: 100%|██████████| 770/770 [00:00<00:00, 6193.57it/s]
WARNING:docling_core.types.doc.document:Parameter `strict_text` has been deprecated and will be ignored.
INFO:     172.17.0.1:54858 - "POST /v1/convert/source HTTP/1.1" 200 OK
[INFO] 2026-05-04 06:44:51,719 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:44:51,719 [RapidOCR] main.py:57: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/det/ch_PP-OCRv4_det_mobile.onnx
[INFO] 2026-05-04 06:44:51,838 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:44:51,838 [RapidOCR] main.py:57: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/cls/ch_ppocr_mobile_v2.0_cls_mobile.onnx
[INFO] 2026-05-04 06:44:51,886 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:44:51,886 [RapidOCR] main.py:57: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/rec/ch_PP-OCRv4_rec_mobile.onnx

Loading weights:   0%|          | 0/770 [00:00<?, ?it/s]
Loading weights:  72%|███████▏  | 557/770 [00:00<00:00, 5568.68it/s]
Loading weights: 100%|██████████| 770/770 [00:00<00:00, 5622.83it/s]
INFO:     172.17.0.1:54858 - "POST /v1/convert/source HTTP/1.1" 200 OK
[INFO] 2026-05-04 06:44:53,733 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:44:53,733 [RapidOCR] main.py:57: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/det/ch_PP-OCRv4_det_mobile.onnx
[INFO] 2026-05-04 06:44:53,860 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:44:53,860 [RapidOCR] main.py:57: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/cls/ch_ppocr_mobile_v2.0_cls_mobile.onnx
[INFO] 2026-05-04 06:44:53,923 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:44:53,923 [RapidOCR] main.py:57: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/rec/ch_PP-OCRv4_rec_mobile.onnx

Loading weights:   0%|          | 0/770 [00:00<?, ?it/s]
Loading weights:  69%|██████▉   | 532/770 [00:00<00:00, 5290.72it/s]
Loading weights: 100%|██████████| 770/770 [00:00<00:00, 5317.33it/s]
INFO:     172.17.0.1:54858 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:54858 - "GET /v1/clear/converters HTTP/1.1" 200 OK
INFO:     172.17.0.1:54858 - "GET /v1/clear/results?older_then=3600 HTTP/1.1" 200 OK
ghcr.io/docling-project/docling-serve:v1.16.1#
Click to expand ###### Message
Click to collapse
Tag v1.16.1 is ok
###### Docling server logs
click to expand
Starting production server 🚀

Server started at http://0.0.0.0:5001
Documentation at http://0.0.0.0:5001/docs
Scalar docs at http://0.0.0.0:5001/scalar

Logs:
INFO:     Started server process [1]
INFO:     Waiting for application startup.
2026-05-04 06:44:54.749387513 [W:onnxruntime:Default, device_discovery.cc:132 GetPciBusId] Skipping pci_bus_id for PCI path at "/sys/devices/LNXSYSTM:00/LNXSYBUS:00/ACPI0004:00/MSFT1000:00/5620e0c7-8062-4dce-aeb7-520c7ef76171" because filename ""5620e0c7-8062-4dce-aeb7-520c7ef76171"" dit not match expected pattern of [0-9a-f]+:[0-9a-f]+:[0-9a-f]+[.][0-9a-f]+
[INFO] 2026-05-04 06:44:55,423 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:44:55,425 [RapidOCR] main.py:53: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/det/ch_PP-OCRv4_det_infer.onnx
[INFO] 2026-05-04 06:44:55,512 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:44:55,512 [RapidOCR] main.py:53: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/cls/ch_ppocr_mobile_v2.0_cls_infer.onnx
[INFO] 2026-05-04 06:44:55,554 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:44:55,554 [RapidOCR] main.py:53: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/rec/ch_PP-OCRv4_rec_infer.onnx

Loading weights:   0%|          | 0/770 [00:00<?, ?it/s]
Loading weights:  82%|████████▏ | 632/770 [00:00<00:00, 6290.37it/s]
Loading weights: 100%|██████████| 770/770 [00:00<00:00, 6316.97it/s]
INFO:     Application startup complete.
INFO:     Uvicorn running on http://0.0.0.0:5001 (Press CTRL+C to quit)
INFO:     172.17.0.1:39228 - "GET /health HTTP/1.1" 200 OK
INFO:     172.17.0.1:39230 - "GET /health HTTP/1.1" 200 OK
[INFO] 2026-05-04 06:44:57,691 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:44:57,692 [RapidOCR] main.py:53: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/det/ch_PP-OCRv4_det_infer.onnx
[INFO] 2026-05-04 06:44:57,779 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:44:57,779 [RapidOCR] main.py:53: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/cls/ch_ppocr_mobile_v2.0_cls_infer.onnx
[INFO] 2026-05-04 06:44:57,821 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:44:57,821 [RapidOCR] main.py:53: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/rec/ch_PP-OCRv4_rec_infer.onnx

Loading weights:   0%|          | 0/770 [00:00<?, ?it/s]
Loading weights:  77%|███████▋  | 593/770 [00:00<00:00, 5928.08it/s]
Loading weights: 100%|██████████| 770/770 [00:00<00:00, 6004.00it/s]
WARNING:docling_core.types.doc.document:Parameter `strict_text` has been deprecated and will be ignored.
INFO:     172.17.0.1:39230 - "POST /v1/convert/source HTTP/1.1" 200 OK
[INFO] 2026-05-04 06:44:59,734 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:44:59,735 [RapidOCR] main.py:53: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/det/ch_PP-OCRv4_det_infer.onnx
[INFO] 2026-05-04 06:44:59,835 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:44:59,836 [RapidOCR] main.py:53: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/cls/ch_ppocr_mobile_v2.0_cls_infer.onnx
[INFO] 2026-05-04 06:44:59,879 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:44:59,879 [RapidOCR] main.py:53: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/rec/ch_PP-OCRv4_rec_infer.onnx

Loading weights:   0%|          | 0/770 [00:00<?, ?it/s]
Loading weights:  65%|██████▌   | 502/770 [00:00<00:00, 5014.28it/s]
Loading weights: 100%|██████████| 770/770 [00:00<00:00, 5175.46it/s]
INFO:     172.17.0.1:39230 - "POST /v1/convert/source HTTP/1.1" 200 OK
[INFO] 2026-05-04 06:45:01,720 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:45:01,721 [RapidOCR] main.py:53: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/det/ch_PP-OCRv4_det_infer.onnx
[INFO] 2026-05-04 06:45:01,806 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:45:01,806 [RapidOCR] main.py:53: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/cls/ch_ppocr_mobile_v2.0_cls_infer.onnx
[INFO] 2026-05-04 06:45:01,848 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:45:01,848 [RapidOCR] main.py:53: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/rec/ch_PP-OCRv4_rec_infer.onnx

Loading weights:   0%|          | 0/770 [00:00<?, ?it/s]
Loading weights:  77%|███████▋  | 591/770 [00:00<00:00, 5877.44it/s]
Loading weights: 100%|██████████| 770/770 [00:00<00:00, 5747.63it/s]
INFO:     172.17.0.1:39230 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:39230 - "GET /v1/clear/converters HTTP/1.1" 200 OK
INFO:     172.17.0.1:39230 - "GET /v1/clear/results?older_then=3600 HTTP/1.1" 200 OK
ghcr.io/docling-project/docling-serve:v1.15.0#
Click to expand ###### Message
Click to collapse
Tag v1.15.0 is ok
###### Docling server logs
click to expand
Starting production server 🚀

Server started at http://0.0.0.0:5001
Documentation at http://0.0.0.0:5001/docs
Scalar docs at http://0.0.0.0:5001/scalar

Logs:
INFO:     Started server process [1]
INFO:     Waiting for application startup.
2026-05-04 06:42:03.651383906 [W:onnxruntime:Default, device_discovery.cc:132 GetPciBusId] Skipping pci_bus_id for PCI path at "/sys/devices/LNXSYSTM:00/LNXSYBUS:00/ACPI0004:00/MSFT1000:00/5620e0c7-8062-4dce-aeb7-520c7ef76171" because filename ""5620e0c7-8062-4dce-aeb7-520c7ef76171"" dit not match expected pattern of [0-9a-f]+:[0-9a-f]+:[0-9a-f]+[.][0-9a-f]+
[INFO] 2026-05-04 06:42:04,397 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:42:04,403 [RapidOCR] main.py:53: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/det/ch_PP-OCRv4_det_infer.onnx
[INFO] 2026-05-04 06:42:04,525 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:42:04,525 [RapidOCR] main.py:53: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/cls/ch_ppocr_mobile_v2.0_cls_infer.onnx
[INFO] 2026-05-04 06:42:04,584 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:42:04,584 [RapidOCR] main.py:53: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/rec/ch_PP-OCRv4_rec_infer.onnx
INFO:     Application startup complete.
INFO:     Uvicorn running on http://0.0.0.0:5001 (Press CTRL+C to quit)
INFO:     172.17.0.1:53166 - "GET /health HTTP/1.1" 200 OK
INFO:     172.17.0.1:53172 - "GET /health HTTP/1.1" 200 OK
WARNING:docling_core.types.doc.document:Parameter `strict_text` has been deprecated and will be ignored.
INFO:     172.17.0.1:53172 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:53172 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:53172 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:53172 - "GET /v1/clear/converters HTTP/1.1" 200 OK
INFO:     172.17.0.1:53172 - "GET /v1/clear/results?older_then=3600 HTTP/1.1" 200 OK
ghcr.io/docling-project/docling-serve:v1.14.3#
Click to expand ###### Message
Click to collapse
Tag v1.14.3 is ok
###### Docling server logs
click to expand
Starting production server 🚀

Server started at http://0.0.0.0:5001
Documentation at http://0.0.0.0:5001/docs
Scalar docs at http://0.0.0.0:5001/scalar

Logs:
INFO:     Started server process [1]
INFO:     Waiting for application startup.
2026-05-04 06:42:03.639130053 [W:onnxruntime:Default, device_discovery.cc:131 GetPciBusId] Skipping pci_bus_id for PCI path at "/sys/devices/LNXSYSTM:00/LNXSYBUS:00/ACPI0004:00/MSFT1000:00/5620e0c7-8062-4dce-aeb7-520c7ef76171" because filename ""5620e0c7-8062-4dce-aeb7-520c7ef76171"" dit not match expected pattern of [0-9a-f]+:[0-9a-f]+:[0-9a-f]+[.][0-9a-f]+
[INFO] 2026-05-04 06:42:04,382 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:42:04,384 [RapidOCR] main.py:53: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/det/ch_PP-OCRv4_det_infer.onnx
[INFO] 2026-05-04 06:42:04,516 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:42:04,517 [RapidOCR] main.py:53: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/cls/ch_ppocr_mobile_v2.0_cls_infer.onnx
[INFO] 2026-05-04 06:42:04,601 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:42:04,602 [RapidOCR] main.py:53: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/rec/ch_PP-OCRv4_rec_infer.onnx
INFO:     Application startup complete.
INFO:     Uvicorn running on http://0.0.0.0:5001 (Press CTRL+C to quit)
INFO:     172.17.0.1:38854 - "GET /health HTTP/1.1" 200 OK
INFO:     172.17.0.1:38866 - "GET /health HTTP/1.1" 200 OK
WARNING:docling_core.types.doc.document:Parameter `strict_text` has been deprecated and will be ignored.
INFO:     172.17.0.1:38866 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:38866 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:38866 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:38866 - "GET /v1/clear/converters HTTP/1.1" 200 OK
INFO:     172.17.0.1:38866 - "GET /v1/clear/results?older_then=3600 HTTP/1.1" 200 OK
ghcr.io/docling-project/docling-serve:v1.14.2#
Click to expand ###### Message
Click to collapse
Tag v1.14.2 is ok
###### Docling server logs
click to expand
Starting production server 🚀

Server started at http://0.0.0.0:5001
Documentation at http://0.0.0.0:5001/docs
Scalar docs at http://0.0.0.0:5001/scalar

Logs:
INFO:     Started server process [1]
INFO:     Waiting for application startup.
2026-05-04 06:39:11.659097631 [W:onnxruntime:Default, device_discovery.cc:131 GetPciBusId] Skipping pci_bus_id for PCI path at "/sys/devices/LNXSYSTM:00/LNXSYBUS:00/ACPI0004:00/MSFT1000:00/5620e0c7-8062-4dce-aeb7-520c7ef76171" because filename ""5620e0c7-8062-4dce-aeb7-520c7ef76171"" dit not match expected pattern of [0-9a-f]+:[0-9a-f]+:[0-9a-f]+[.][0-9a-f]+
[INFO] 2026-05-04 06:39:12,533 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:39:12,535 [RapidOCR] main.py:53: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/det/ch_PP-OCRv4_det_infer.onnx
[INFO] 2026-05-04 06:39:12,628 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:39:12,628 [RapidOCR] main.py:53: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/cls/ch_ppocr_mobile_v2.0_cls_infer.onnx
[INFO] 2026-05-04 06:39:12,669 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:39:12,669 [RapidOCR] main.py:53: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/rec/ch_PP-OCRv4_rec_infer.onnx
INFO:     Application startup complete.
INFO:     Uvicorn running on http://0.0.0.0:5001 (Press CTRL+C to quit)
INFO:     172.17.0.1:51286 - "GET /health HTTP/1.1" 200 OK
INFO:     172.17.0.1:51292 - "GET /health HTTP/1.1" 200 OK
WARNING:docling_core.types.doc.document:Parameter `strict_text` has been deprecated and will be ignored.
INFO:     172.17.0.1:51292 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:51292 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:51292 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:51292 - "GET /v1/clear/converters HTTP/1.1" 200 OK
INFO:     172.17.0.1:51292 - "GET /v1/clear/results?older_then=3600 HTTP/1.1" 200 OK
ghcr.io/docling-project/docling-serve:v1.14.1#
Click to expand ###### Message
Click to collapse
Tag v1.14.1 is ok
###### Docling server logs
click to expand
Starting production server 🚀

Server started at http://0.0.0.0:5001
Documentation at http://0.0.0.0:5001/docs
Scalar docs at http://0.0.0.0:5001/scalar

Logs:
INFO:     Started server process [1]
INFO:     Waiting for application startup.
2026-05-04 06:39:11.683820746 [W:onnxruntime:Default, device_discovery.cc:131 GetPciBusId] Skipping pci_bus_id for PCI path at "/sys/devices/LNXSYSTM:00/LNXSYBUS:00/ACPI0004:00/MSFT1000:00/5620e0c7-8062-4dce-aeb7-520c7ef76171" because filename ""5620e0c7-8062-4dce-aeb7-520c7ef76171"" dit not match expected pattern of [0-9a-f]+:[0-9a-f]+:[0-9a-f]+[.][0-9a-f]+
[INFO] 2026-05-04 06:39:12,546 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:39:12,548 [RapidOCR] main.py:53: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/det/ch_PP-OCRv4_det_infer.onnx
[INFO] 2026-05-04 06:39:12,717 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:39:12,718 [RapidOCR] main.py:53: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/cls/ch_ppocr_mobile_v2.0_cls_infer.onnx
[INFO] 2026-05-04 06:39:12,779 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:39:12,780 [RapidOCR] main.py:53: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/rec/ch_PP-OCRv4_rec_infer.onnx
INFO:     Application startup complete.
INFO:     Uvicorn running on http://0.0.0.0:5001 (Press CTRL+C to quit)
INFO:     172.17.0.1:45242 - "GET /health HTTP/1.1" 200 OK
INFO:     172.17.0.1:45254 - "GET /health HTTP/1.1" 200 OK
WARNING:docling_core.types.doc.document:Parameter `strict_text` has been deprecated and will be ignored.
INFO:     172.17.0.1:45254 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:45254 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:45254 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:45254 - "GET /v1/clear/converters HTTP/1.1" 200 OK
INFO:     172.17.0.1:45254 - "GET /v1/clear/results?older_then=3600 HTTP/1.1" 200 OK
ghcr.io/docling-project/docling-serve:v1.14.0#
Click to expand ###### Message
Click to collapse
Tag v1.14.0 is ok
###### Docling server logs
click to expand
Starting production server 🚀

Server started at http://0.0.0.0:5001
Documentation at http://0.0.0.0:5001/docs
Scalar docs at http://0.0.0.0:5001/scalar

Logs:
INFO:     Started server process [1]
INFO:     Waiting for application startup.
2026-05-04 06:36:26.245284786 [W:onnxruntime:Default, device_discovery.cc:131 GetPciBusId] Skipping pci_bus_id for PCI path at "/sys/devices/LNXSYSTM:00/LNXSYBUS:00/ACPI0004:00/MSFT1000:00/5620e0c7-8062-4dce-aeb7-520c7ef76171" because filename ""5620e0c7-8062-4dce-aeb7-520c7ef76171"" dit not match expected pattern of [0-9a-f]+:[0-9a-f]+:[0-9a-f]+[.][0-9a-f]+
[INFO] 2026-05-04 06:36:26,854 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:36:26,858 [RapidOCR] main.py:53: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/det/ch_PP-OCRv4_det_infer.onnx
[INFO] 2026-05-04 06:36:26,948 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:36:26,948 [RapidOCR] main.py:53: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/cls/ch_ppocr_mobile_v2.0_cls_infer.onnx
[INFO] 2026-05-04 06:36:26,989 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:36:26,989 [RapidOCR] main.py:53: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/rec/ch_PP-OCRv4_rec_infer.onnx
INFO:     Application startup complete.
INFO:     Uvicorn running on http://0.0.0.0:5001 (Press CTRL+C to quit)
INFO:     172.17.0.1:55208 - "GET /health HTTP/1.1" 200 OK
INFO:     172.17.0.1:55218 - "GET /health HTTP/1.1" 200 OK
WARNING:docling_core.types.doc.document:Parameter `strict_text` has been deprecated and will be ignored.
INFO:     172.17.0.1:55218 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:55218 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:55218 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:55218 - "GET /v1/clear/converters HTTP/1.1" 200 OK
INFO:     172.17.0.1:55218 - "GET /v1/clear/results?older_then=3600 HTTP/1.1" 200 OK
ghcr.io/docling-project/docling-serve:v1.13.1#
Click to expand ###### Message
Click to collapse
Tag v1.13.1 is ok
###### Docling server logs
click to expand
Starting production server 🚀

Server started at http://0.0.0.0:5001
Documentation at http://0.0.0.0:5001/docs
Scalar docs at http://0.0.0.0:5001/scalar

Logs:
INFO:     Started server process [1]
INFO:     Waiting for application startup.
2026-05-04 06:36:26.522181139 [W:onnxruntime:Default, device_discovery.cc:131 GetPciBusId] Skipping pci_bus_id for PCI path at "/sys/devices/LNXSYSTM:00/LNXSYBUS:00/ACPI0004:00/MSFT1000:00/5620e0c7-8062-4dce-aeb7-520c7ef76171" because filename ""5620e0c7-8062-4dce-aeb7-520c7ef76171"" dit not match expected pattern of [0-9a-f]+:[0-9a-f]+:[0-9a-f]+[.][0-9a-f]+
[INFO] 2026-05-04 06:36:27,179 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:36:27,182 [RapidOCR] main.py:53: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/det/ch_PP-OCRv4_det_infer.onnx
[INFO] 2026-05-04 06:36:27,292 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:36:27,292 [RapidOCR] main.py:53: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/cls/ch_ppocr_mobile_v2.0_cls_infer.onnx
[INFO] 2026-05-04 06:36:27,365 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:36:27,365 [RapidOCR] main.py:53: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/rec/ch_PP-OCRv4_rec_infer.onnx
INFO:     Application startup complete.
INFO:     Uvicorn running on http://0.0.0.0:5001 (Press CTRL+C to quit)
INFO:     172.17.0.1:46920 - "GET /health HTTP/1.1" 200 OK
INFO:     172.17.0.1:46926 - "GET /health HTTP/1.1" 200 OK
WARNING:docling_core.types.doc.document:Parameter `strict_text` has been deprecated and will be ignored.
INFO:     172.17.0.1:46926 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:46926 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:46926 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:46926 - "GET /v1/clear/converters HTTP/1.1" 200 OK
INFO:     172.17.0.1:46926 - "GET /v1/clear/results?older_then=3600 HTTP/1.1" 200 OK
ghcr.io/docling-project/docling-serve:v1.13.0#
Click to expand ###### Message
Click to collapse
Tag v1.13.0 is ok
###### Docling server logs
click to expand
Starting production server 🚀

Server started at http://0.0.0.0:5001
Documentation at http://0.0.0.0:5001/docs
Scalar docs at http://0.0.0.0:5001/scalar

Logs:
INFO:     Started server process [1]
INFO:     Waiting for application startup.
2026-05-04 06:33:33.017078403 [W:onnxruntime:Default, device_discovery.cc:131 GetPciBusId] Skipping pci_bus_id for PCI path at "/sys/devices/LNXSYSTM:00/LNXSYBUS:00/ACPI0004:00/MSFT1000:00/5620e0c7-8062-4dce-aeb7-520c7ef76171" because filename ""5620e0c7-8062-4dce-aeb7-520c7ef76171"" dit not match expected pattern of [0-9a-f]+:[0-9a-f]+:[0-9a-f]+[.][0-9a-f]+
[INFO] 2026-05-04 06:33:33,656 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:33:33,658 [RapidOCR] main.py:53: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/det/ch_PP-OCRv4_det_infer.onnx
[INFO] 2026-05-04 06:33:33,800 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:33:33,800 [RapidOCR] main.py:53: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/cls/ch_ppocr_mobile_v2.0_cls_infer.onnx
[INFO] 2026-05-04 06:33:33,849 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:33:33,849 [RapidOCR] main.py:53: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/rec/ch_PP-OCRv4_rec_infer.onnx
INFO:     Application startup complete.
INFO:     Uvicorn running on http://0.0.0.0:5001 (Press CTRL+C to quit)
INFO:     172.17.0.1:50608 - "GET /health HTTP/1.1" 200 OK
INFO:     172.17.0.1:50616 - "GET /health HTTP/1.1" 200 OK
WARNING:docling_core.types.doc.document:Parameter `strict_text` has been deprecated and will be ignored.
INFO:     172.17.0.1:50616 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:50616 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:50616 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:50616 - "GET /v1/clear/converters HTTP/1.1" 200 OK
INFO:     172.17.0.1:50616 - "GET /v1/clear/results?older_then=3600 HTTP/1.1" 200 OK
ghcr.io/docling-project/docling-serve:v1.12.0#
Click to expand ###### Message
Click to collapse
Tag v1.12.0 is ok
###### Docling server logs
click to expand
Starting production server 🚀

Server started at http://0.0.0.0:5001
Documentation at http://0.0.0.0:5001/docs
Scalar docs at http://0.0.0.0:5001/scalar

Logs:
INFO:     Started server process [1]
INFO:     Waiting for application startup.
2026-05-04 06:33:32.708721794 [W:onnxruntime:Default, device_discovery.cc:131 GetPciBusId] Skipping pci_bus_id for PCI path at "/sys/devices/LNXSYSTM:00/LNXSYBUS:00/ACPI0004:00/MSFT1000:00/5620e0c7-8062-4dce-aeb7-520c7ef76171" because filename ""5620e0c7-8062-4dce-aeb7-520c7ef76171"" dit not match expected pattern of [0-9a-f]+:[0-9a-f]+:[0-9a-f]+[.][0-9a-f]+
[INFO] 2026-05-04 06:33:33,331 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:33:33,334 [RapidOCR] main.py:53: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/det/ch_PP-OCRv4_det_infer.onnx
[INFO] 2026-05-04 06:33:33,441 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:33:33,441 [RapidOCR] main.py:53: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/cls/ch_ppocr_mobile_v2.0_cls_infer.onnx
[INFO] 2026-05-04 06:33:33,511 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:33:33,512 [RapidOCR] main.py:53: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/rec/ch_PP-OCRv4_rec_infer.onnx
INFO:     Application startup complete.
INFO:     Uvicorn running on http://0.0.0.0:5001 (Press CTRL+C to quit)
INFO:     172.17.0.1:50030 - "GET /health HTTP/1.1" 200 OK
INFO:     172.17.0.1:50040 - "GET /health HTTP/1.1" 200 OK
WARNING:docling_core.types.doc.document:Parameter `strict_text` has been deprecated and will be ignored.
INFO:     172.17.0.1:50040 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:50040 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:50040 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:50040 - "GET /v1/clear/converters HTTP/1.1" 200 OK
INFO:     172.17.0.1:50040 - "GET /v1/clear/results?older_then=3600 HTTP/1.1" 200 OK
ghcr.io/docling-project/docling-serve:v1.11.0#
Click to expand ###### Message
Click to collapse
Tag v1.11.0 is ok
###### Docling server logs
click to expand
Starting production server 🚀

Server started at http://0.0.0.0:5001
Documentation at http://0.0.0.0:5001/docs
Scalar docs at http://0.0.0.0:5001/scalar

Logs:
INFO:     Started server process [1]
INFO:     Waiting for application startup.
[INFO] 2026-05-04 06:30:37,915 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:30:37,917 [RapidOCR] main.py:53: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/det/ch_PP-OCRv4_det_infer.onnx
[INFO] 2026-05-04 06:30:38,005 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:30:38,005 [RapidOCR] main.py:53: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/cls/ch_ppocr_mobile_v2.0_cls_infer.onnx
[INFO] 2026-05-04 06:30:38,063 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:30:38,063 [RapidOCR] main.py:53: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/rec/ch_PP-OCRv4_rec_infer.onnx
INFO:     Application startup complete.
INFO:     Uvicorn running on http://0.0.0.0:5001 (Press CTRL+C to quit)
INFO:     172.17.0.1:52394 - "GET /health HTTP/1.1" 200 OK
INFO:     172.17.0.1:52408 - "GET /health HTTP/1.1" 200 OK
WARNING:docling_core.types.doc.document:Parameter `strict_text` has been deprecated and will be ignored.
INFO:     172.17.0.1:52408 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:52408 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:52408 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:52408 - "GET /v1/clear/converters HTTP/1.1" 200 OK
INFO:     172.17.0.1:52408 - "GET /v1/clear/results?older_then=3600 HTTP/1.1" 200 OK
ghcr.io/docling-project/docling-serve:v1.10.0#
Click to expand ###### Message
Click to collapse
Tag v1.10.0 is ok
###### Docling server logs
click to expand
Starting production server 🚀

Server started at http://0.0.0.0:5001
Documentation at http://0.0.0.0:5001/docs
Scalar docs at http://0.0.0.0:5001/scalar

Logs:
INFO:     Started server process [1]
INFO:     Waiting for application startup.
[INFO] 2026-05-04 06:30:43,108 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:30:43,110 [RapidOCR] main.py:53: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/det/ch_PP-OCRv4_det_infer.onnx
[INFO] 2026-05-04 06:30:43,176 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:30:43,176 [RapidOCR] main.py:53: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/cls/ch_ppocr_mobile_v2.0_cls_infer.onnx
[INFO] 2026-05-04 06:30:43,209 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:30:43,210 [RapidOCR] main.py:53: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/rec/ch_PP-OCRv4_rec_infer.onnx
INFO:     Application startup complete.
INFO:     Uvicorn running on http://0.0.0.0:5001 (Press CTRL+C to quit)
INFO:     172.17.0.1:60130 - "GET /health HTTP/1.1" 200 OK
INFO:     172.17.0.1:60144 - "GET /health HTTP/1.1" 200 OK
WARNING:docling_core.types.doc.document:Parameter `strict_text` has been deprecated and will be ignored.
INFO:     172.17.0.1:60144 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:60144 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:60144 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:60144 - "GET /v1/clear/converters HTTP/1.1" 200 OK
INFO:     172.17.0.1:60144 - "GET /v1/clear/results?older_then=3600 HTTP/1.1" 200 OK
ghcr.io/docling-project/docling-serve:v1.9.0#
Click to expand ###### Message
Click to collapse
Tag v1.9.0 is ok
###### Docling server logs
click to expand
Starting production server 🚀

Server started at http://0.0.0.0:5001
Documentation at http://0.0.0.0:5001/docs
Scalar docs at http://0.0.0.0:5001/scalar

Logs:
INFO:     Started server process [1]
INFO:     Waiting for application startup.
[INFO] 2026-05-04 06:27:29,908 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:27:29,910 [RapidOCR] main.py:53: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/det/ch_PP-OCRv4_det_infer.onnx
[INFO] 2026-05-04 06:27:29,979 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:27:29,979 [RapidOCR] main.py:53: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/cls/ch_ppocr_mobile_v2.0_cls_infer.onnx
[INFO] 2026-05-04 06:27:30,014 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:27:30,015 [RapidOCR] main.py:53: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/rec/ch_PP-OCRv4_rec_infer.onnx
INFO:     Application startup complete.
INFO:     Uvicorn running on http://0.0.0.0:5001 (Press CTRL+C to quit)
INFO:     172.17.0.1:35202 - "GET /health HTTP/1.1" 200 OK
INFO:     172.17.0.1:35214 - "GET /health HTTP/1.1" 200 OK
WARNING:docling_core.types.doc.document:Parameter `strict_text` has been deprecated and will be ignored.
INFO:     172.17.0.1:35214 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:35214 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:35214 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:35214 - "GET /v1/clear/converters HTTP/1.1" 200 OK
INFO:     172.17.0.1:35214 - "GET /v1/clear/results?older_then=3600 HTTP/1.1" 200 OK
ghcr.io/docling-project/docling-serve:v1.8.0#
Click to expand ###### Message
Click to collapse
Tag v1.8.0 is ok
###### Docling server logs
click to expand
Starting production server 🚀

Server started at http://0.0.0.0:5001
Documentation at http://0.0.0.0:5001/docs
Scalar docs at http://0.0.0.0:5001/scalar

Logs:
INFO:     Started server process [1]
INFO:     Waiting for application startup.
[INFO] 2026-05-04 06:27:29,873 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:27:29,875 [RapidOCR] main.py:53: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/det/ch_PP-OCRv4_det_infer.onnx
[INFO] 2026-05-04 06:27:30,013 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:27:30,016 [RapidOCR] main.py:53: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/cls/ch_ppocr_mobile_v2.0_cls_infer.onnx
[INFO] 2026-05-04 06:27:30,100 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:27:30,101 [RapidOCR] main.py:53: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/rec/ch_PP-OCRv4_rec_infer.onnx
INFO:     Application startup complete.
INFO:     Uvicorn running on http://0.0.0.0:5001 (Press CTRL+C to quit)
INFO:     172.17.0.1:57762 - "GET /health HTTP/1.1" 200 OK
INFO:     172.17.0.1:57776 - "GET /health HTTP/1.1" 200 OK
WARNING:docling_core.types.doc.document:Parameter `strict_text` has been deprecated and will be ignored.
INFO:     172.17.0.1:57776 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:57776 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:57776 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:57776 - "GET /v1/clear/converters HTTP/1.1" 200 OK
INFO:     172.17.0.1:57776 - "GET /v1/clear/results?older_then=3600 HTTP/1.1" 200 OK
ghcr.io/docling-project/docling-serve:v1.7.2#
Click to expand ###### Message
Click to collapse
Tag v1.7.2 is ok
###### Docling server logs
click to expand
Starting production server 🚀

Server started at http://0.0.0.0:5001
Documentation at http://0.0.0.0:5001/docs
Scalar docs at http://0.0.0.0:5001/scalar

Logs:
INFO:     Started server process [1]
INFO:     Waiting for application startup.
[INFO] 2026-05-04 06:24:07,503 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:24:07,505 [RapidOCR] main.py:53: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/det/ch_PP-OCRv4_det_infer.onnx
[INFO] 2026-05-04 06:24:07,576 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:24:07,576 [RapidOCR] main.py:53: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/cls/ch_ppocr_mobile_v2.0_cls_infer.onnx
[INFO] 2026-05-04 06:24:07,611 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:24:07,611 [RapidOCR] main.py:53: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/rec/ch_PP-OCRv4_rec_infer.onnx
INFO:     Application startup complete.
INFO:     Uvicorn running on http://0.0.0.0:5001 (Press CTRL+C to quit)
INFO:     172.17.0.1:54942 - "GET /health HTTP/1.1" 200 OK
INFO:     172.17.0.1:54944 - "GET /health HTTP/1.1" 200 OK
WARNING:docling_core.types.doc.document:Parameter `strict_text` has been deprecated and will be ignored.
INFO:     172.17.0.1:54944 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:54944 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:54944 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:54944 - "GET /v1/clear/converters HTTP/1.1" 200 OK
INFO:     172.17.0.1:54944 - "GET /v1/clear/results?older_then=3600 HTTP/1.1" 200 OK
ghcr.io/docling-project/docling-serve:v1.7.1#
Click to expand ###### Message
Click to collapse
Tag v1.7.1 is ok
###### Docling server logs
click to expand
Starting production server 🚀

Server started at http://0.0.0.0:5001
Documentation at http://0.0.0.0:5001/docs
Scalar docs at http://0.0.0.0:5001/scalar

Logs:
INFO:     Started server process [1]
INFO:     Waiting for application startup.
[INFO] 2026-05-04 06:24:07,573 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:24:07,576 [RapidOCR] main.py:53: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/det/ch_PP-OCRv4_det_infer.onnx
[INFO] 2026-05-04 06:24:07,709 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:24:07,711 [RapidOCR] main.py:53: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/cls/ch_ppocr_mobile_v2.0_cls_infer.onnx
[INFO] 2026-05-04 06:24:07,770 [RapidOCR] base.py:22: Using engine_name: onnxruntime
[INFO] 2026-05-04 06:24:07,771 [RapidOCR] main.py:53: Using /opt/app-root/src/.cache/docling/models/RapidOcr/onnx/PP-OCRv4/rec/ch_PP-OCRv4_rec_infer.onnx
INFO:     Application startup complete.
INFO:     Uvicorn running on http://0.0.0.0:5001 (Press CTRL+C to quit)
INFO:     172.17.0.1:45000 - "GET /health HTTP/1.1" 200 OK
INFO:     172.17.0.1:45016 - "GET /health HTTP/1.1" 200 OK
WARNING:docling_core.types.doc.document:Parameter `strict_text` has been deprecated and will be ignored.
INFO:     172.17.0.1:45016 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:45016 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:45016 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:45016 - "GET /v1/clear/converters HTTP/1.1" 200 OK
INFO:     172.17.0.1:45016 - "GET /v1/clear/results?older_then=3600 HTTP/1.1" 200 OK
ghcr.io/docling-project/docling-serve:v1.7.0#
Click to expand ###### Message
Click to collapse
Tag v1.7.0 is ok
###### Docling server logs
click to expand
Starting production server 🚀

Server started at http://0.0.0.0:5001
Documentation at http://0.0.0.0:5001/docs
Scalar docs at http://0.0.0.0:5001/scalar

Logs:
INFO:     Started server process [1]
INFO:     Waiting for application startup.
INFO:     Application startup complete.
INFO:     Uvicorn running on http://0.0.0.0:5001 (Press CTRL+C to quit)
INFO:     172.17.0.1:42642 - "GET /health HTTP/1.1" 200 OK
INFO:     172.17.0.1:42652 - "GET /health HTTP/1.1" 200 OK
WARNING:docling_core.types.doc.document:Parameter `strict_text` has been deprecated and will be ignored.
INFO:     172.17.0.1:42652 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:42652 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:42652 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:42652 - "GET /v1/clear/converters HTTP/1.1" 200 OK
INFO:     172.17.0.1:42652 - "GET /v1/clear/results?older_then=3600 HTTP/1.1" 200 OK
ghcr.io/docling-project/docling-serve:v1.6.0#
Click to expand ###### Message
Click to collapse
Tag v1.6.0 is ok
###### Docling server logs
click to expand
Starting production server 🚀

Server started at http://0.0.0.0:5001
Documentation at http://0.0.0.0:5001/docs
Scalar docs at http://0.0.0.0:5001/scalar

Logs:
INFO:     Started server process [1]
INFO:     Waiting for application startup.
INFO:     Application startup complete.
INFO:     Uvicorn running on http://0.0.0.0:5001 (Press CTRL+C to quit)
INFO:     172.17.0.1:58162 - "GET /health HTTP/1.1" 200 OK
INFO:     172.17.0.1:58166 - "GET /health HTTP/1.1" 200 OK
WARNING:docling_core.types.doc.document:Parameter `strict_text` has been deprecated and will be ignored.
INFO:     172.17.0.1:58166 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:58166 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:58166 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:58166 - "GET /v1/clear/converters HTTP/1.1" 200 OK
INFO:     172.17.0.1:58166 - "GET /v1/clear/results?older_then=3600 HTTP/1.1" 200 OK
ghcr.io/docling-project/docling-serve:v1.5.1#
Click to expand ###### Message
Click to collapse
Tag v1.5.1 is ok
###### Docling server logs
click to expand
Starting production server 🚀

Server started at http://0.0.0.0:5001
Documentation at http://0.0.0.0:5001/docs
Scalar docs at http://0.0.0.0:5001/scalar

Logs:
INFO:     Started server process [1]
INFO:     Waiting for application startup.
INFO:     Application startup complete.
INFO:     Uvicorn running on http://0.0.0.0:5001 (Press CTRL+C to quit)
INFO:     172.17.0.1:40766 - "GET /health HTTP/1.1" 200 OK
INFO:     172.17.0.1:40772 - "GET /health HTTP/1.1" 200 OK
WARNING:docling_core.types.doc.document:Parameter `strict_text` has been deprecated and will be ignored.
INFO:     172.17.0.1:40772 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:40772 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:40772 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:40772 - "GET /v1/clear/converters HTTP/1.1" 200 OK
INFO:     172.17.0.1:40772 - "GET /v1/clear/results?older_then=3600 HTTP/1.1" 200 OK
ghcr.io/docling-project/docling-serve:v1.5.0#
Click to expand ###### Message
Click to collapse
Tag v1.5.0 is ok
###### Docling server logs
click to expand
Starting production server 🚀

Server started at http://0.0.0.0:5001
Documentation at http://0.0.0.0:5001/docs
Scalar docs at http://0.0.0.0:5001/scalar

Logs:
INFO:     Started server process [1]
INFO:     Waiting for application startup.
INFO:     Application startup complete.
INFO:     Uvicorn running on http://0.0.0.0:5001 (Press CTRL+C to quit)
INFO:     172.17.0.1:43000 - "GET /health HTTP/1.1" 200 OK
INFO:     172.17.0.1:43014 - "GET /health HTTP/1.1" 200 OK
WARNING:docling_core.types.doc.document:Parameter `strict_text` has been deprecated and will be ignored.
INFO:     172.17.0.1:43014 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:43014 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:43014 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:43014 - "GET /v1/clear/converters HTTP/1.1" 200 OK
INFO:     172.17.0.1:43014 - "GET /v1/clear/results?older_then=3600 HTTP/1.1" 200 OK
ghcr.io/docling-project/docling-serve:v1.4.1#
Click to expand ###### Message
Click to collapse
Tag v1.4.1 is ok
###### Docling server logs
click to expand
Starting production server 🚀

Server started at http://0.0.0.0:5001
Documentation at http://0.0.0.0:5001/docs
Scalar docs at http://0.0.0.0:5001/scalar

Logs:
INFO:     Started server process [1]
INFO:     Waiting for application startup.
INFO:     Application startup complete.
INFO:     Uvicorn running on http://0.0.0.0:5001 (Press CTRL+C to quit)
INFO:     172.17.0.1:39424 - "GET /health HTTP/1.1" 200 OK
INFO:     172.17.0.1:39426 - "GET /health HTTP/1.1" 200 OK
WARNING:docling_core.types.doc.document:Parameter `strict_text` has been deprecated and will be ignored.
INFO:     172.17.0.1:39426 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:39426 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:39426 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:39426 - "GET /v1/clear/converters HTTP/1.1" 200 OK
INFO:     172.17.0.1:39426 - "GET /v1/clear/results?older_then=3600 HTTP/1.1" 200 OK
ghcr.io/docling-project/docling-serve:v1.4.0#
Click to expand ###### Message
Click to collapse
Tag v1.4.0 is ok
###### Docling server logs
click to expand
Starting production server 🚀

Server started at http://0.0.0.0:5001
Documentation at http://0.0.0.0:5001/docs
Scalar docs at http://0.0.0.0:5001/scalar

Logs:
INFO:     Started server process [1]
INFO:     Waiting for application startup.
INFO:     Application startup complete.
INFO:     Uvicorn running on http://0.0.0.0:5001 (Press CTRL+C to quit)
INFO:     172.17.0.1:43372 - "GET /health HTTP/1.1" 200 OK
INFO:     172.17.0.1:43374 - "GET /health HTTP/1.1" 200 OK
WARNING:docling_core.types.doc.document:Parameter `strict_text` has been deprecated and will be ignored.
INFO:     172.17.0.1:43374 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:43374 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:43374 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:43374 - "GET /v1/clear/converters HTTP/1.1" 200 OK
INFO:     172.17.0.1:43374 - "GET /v1/clear/results?older_then=3600 HTTP/1.1" 200 OK
ghcr.io/docling-project/docling-serve:v1.3.1#
Click to expand ###### Message
Click to collapse
Tag v1.3.1 is ok
###### Docling server logs
click to expand
Starting production server 🚀

Server started at http://0.0.0.0:5001
Documentation at http://0.0.0.0:5001/docs
Scalar docs at http://0.0.0.0:5001/scalar

Logs:
INFO:     Started server process [1]
INFO:     Waiting for application startup.
INFO:     Application startup complete.
INFO:     Uvicorn running on http://0.0.0.0:5001 (Press CTRL+C to quit)
INFO:     172.17.0.1:56948 - "GET /health HTTP/1.1" 200 OK
INFO:     172.17.0.1:56954 - "GET /health HTTP/1.1" 200 OK
WARNING:docling_core.types.doc.document:Parameter `strict_text` has been deprecated and will be ignored.
INFO:     172.17.0.1:56954 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:56954 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:56954 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:56954 - "GET /v1/clear/converters HTTP/1.1" 200 OK
INFO:     172.17.0.1:56954 - "GET /v1/clear/results?older_then=3600 HTTP/1.1" 200 OK
ghcr.io/docling-project/docling-serve:v1.3.0#
Click to expand ###### Message
Click to collapse
Tag v1.3.0 is ok
###### Docling server logs
click to expand
Starting production server 🚀

Server started at http://0.0.0.0:5001
Documentation at http://0.0.0.0:5001/docs
Scalar docs at http://0.0.0.0:5001/scalar

Logs:
INFO:     Started server process [1]
INFO:     Waiting for application startup.
INFO:     Application startup complete.
INFO:     Uvicorn running on http://0.0.0.0:5001 (Press CTRL+C to quit)
INFO:     172.17.0.1:44880 - "GET /health HTTP/1.1" 200 OK
INFO:     172.17.0.1:44896 - "GET /health HTTP/1.1" 200 OK
WARNING:docling_core.types.doc.document:Parameter `strict_text` has been deprecated and will be ignored.
INFO:     172.17.0.1:44896 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:44896 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:44896 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:44896 - "GET /v1/clear/converters HTTP/1.1" 200 OK
INFO:     172.17.0.1:44896 - "GET /v1/clear/results?older_then=3600 HTTP/1.1" 200 OK
ghcr.io/docling-project/docling-serve:v1.2.2#
Click to expand ###### Message
Click to collapse
Tag v1.2.2 is ok
###### Docling server logs
click to expand
Starting production server 🚀

Server started at http://0.0.0.0:5001
Documentation at http://0.0.0.0:5001/docs
Scalar docs at http://0.0.0.0:5001/scalar

Logs:
INFO:     Started server process [1]
INFO:     Waiting for application startup.
INFO:     Application startup complete.
INFO:     Uvicorn running on http://0.0.0.0:5001 (Press CTRL+C to quit)
INFO:     172.17.0.1:46280 - "GET /health HTTP/1.1" 200 OK
INFO:     172.17.0.1:46286 - "GET /health HTTP/1.1" 200 OK
WARNING:docling_core.types.doc.document:Parameter `strict_text` has been deprecated and will be ignored.
INFO:     172.17.0.1:46286 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:46286 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:46286 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:46286 - "GET /v1/clear/converters HTTP/1.1" 200 OK
INFO:     172.17.0.1:46286 - "GET /v1/clear/results?older_then=3600 HTTP/1.1" 200 OK
ghcr.io/docling-project/docling-serve:v1.2.1#
Click to expand ###### Message
Click to collapse
Tag v1.2.1 is ok
###### Docling server logs
click to expand
Starting production server 🚀

Server started at http://0.0.0.0:5001
Documentation at http://0.0.0.0:5001/docs
Scalar docs at http://0.0.0.0:5001/scalar

Logs:
INFO:     Started server process [1]
INFO:     Waiting for application startup.
INFO:     Application startup complete.
INFO:     Uvicorn running on http://0.0.0.0:5001 (Press CTRL+C to quit)
INFO:     172.17.0.1:42348 - "GET /health HTTP/1.1" 200 OK
INFO:     172.17.0.1:42364 - "GET /health HTTP/1.1" 200 OK
WARNING:docling_core.types.doc.document:Parameter `strict_text` has been deprecated and will be ignored.
INFO:     172.17.0.1:42364 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:42364 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:42364 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:42364 - "GET /v1/clear/converters HTTP/1.1" 200 OK
INFO:     172.17.0.1:42364 - "GET /v1/clear/results?older_then=3600 HTTP/1.1" 200 OK
ghcr.io/docling-project/docling-serve:v1.2.0#
Click to expand ###### Message
Click to collapse
Tag v1.2.0 is ok
###### Docling server logs
click to expand
Starting production server 🚀

Server started at http://0.0.0.0:5001
Documentation at http://0.0.0.0:5001/docs
Scalar docs at http://0.0.0.0:5001/scalar

Logs:
INFO:     Started server process [1]
INFO:     Waiting for application startup.
INFO:     Application startup complete.
INFO:     Uvicorn running on http://0.0.0.0:5001 (Press CTRL+C to quit)
INFO:     172.17.0.1:52080 - "GET /health HTTP/1.1" 200 OK
INFO:     172.17.0.1:52086 - "GET /health HTTP/1.1" 200 OK
WARNING:docling_core.types.doc.document:Parameter `strict_text` has been deprecated and will be ignored.
INFO:     172.17.0.1:52086 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:52086 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:52086 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:52086 - "GET /v1/clear/converters HTTP/1.1" 200 OK
INFO:     172.17.0.1:52086 - "GET /v1/clear/results?older_then=3600 HTTP/1.1" 200 OK
ghcr.io/docling-project/docling-serve:v1.1.0#
Click to expand ###### Message
Click to collapse
Tag v1.1.0 is ok
###### Docling server logs
click to expand
Starting production server 🚀

Server started at http://0.0.0.0:5001
Documentation at http://0.0.0.0:5001/docs
Scalar docs at http://0.0.0.0:5001/scalar

Logs:
INFO:     Started server process [1]
INFO:     Waiting for application startup.
INFO:     Application startup complete.
INFO:     Uvicorn running on http://0.0.0.0:5001 (Press CTRL+C to quit)
INFO:     172.17.0.1:57454 - "GET /health HTTP/1.1" 200 OK
INFO:     172.17.0.1:57458 - "GET /health HTTP/1.1" 200 OK
WARNING:docling_core.types.doc.document:Parameter `strict_text` has been deprecated and will be ignored.
INFO:     172.17.0.1:57458 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:57458 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:57458 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:57458 - "GET /v1/clear/converters HTTP/1.1" 200 OK
INFO:     172.17.0.1:57458 - "GET /v1/clear/results?older_then=3600 HTTP/1.1" 200 OK
ghcr.io/docling-project/docling-serve:v1.0.1#
Click to expand ###### Message
Click to collapse
Tag v1.0.1 is ok
###### Docling server logs
click to expand
Starting production server 🚀

Server started at http://0.0.0.0:5001
Documentation at http://0.0.0.0:5001/docs
Scalar docs at http://0.0.0.0:5001/scalar

Logs:
INFO:     Started server process [1]
INFO:     Waiting for application startup.
INFO:     Application startup complete.
INFO:     Uvicorn running on http://0.0.0.0:5001 (Press CTRL+C to quit)
INFO:     172.17.0.1:47998 - "GET /health HTTP/1.1" 200 OK
INFO:     172.17.0.1:48002 - "GET /health HTTP/1.1" 200 OK
WARNING:docling_core.types.doc.document:Parameter `strict_text` has been deprecated and will be ignored.
INFO:     172.17.0.1:48002 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:48002 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:48002 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:48002 - "GET /v1/clear/converters HTTP/1.1" 200 OK
INFO:     172.17.0.1:48002 - "GET /v1/clear/results?older_then=3600 HTTP/1.1" 200 OK
ghcr.io/docling-project/docling-serve:v1.0.0#
Click to expand ###### Message
Click to collapse
Tag v1.0.0 is ok
###### Docling server logs
click to expand
Starting production server 🚀

Server started at http://0.0.0.0:5001
Documentation at http://0.0.0.0:5001/docs
Scalar docs at http://0.0.0.0:5001/scalar

Logs:
INFO:     Started server process [1]
INFO:     Waiting for application startup.
INFO:     Application startup complete.
INFO:     Uvicorn running on http://0.0.0.0:5001 (Press CTRL+C to quit)
INFO:     172.17.0.1:58294 - "GET /health HTTP/1.1" 200 OK
INFO:     172.17.0.1:58306 - "GET /health HTTP/1.1" 200 OK
WARNING:docling_core.types.doc.document:Parameter `strict_text` has been deprecated and will be ignored.
INFO:     172.17.0.1:58306 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:58306 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:58306 - "POST /v1/convert/source HTTP/1.1" 200 OK
INFO:     172.17.0.1:58306 - "GET /v1/clear/converters HTTP/1.1" 200 OK
INFO:     172.17.0.1:58306 - "GET /v1/clear/results?older_then=3600 HTTP/1.1" 200 OK