Docling Core is a library that defines the data types in Docling, leveraging pydantic models.
To use Docling Core, simply install docling-core
from your package manager, e.g. pip:
pip install docling-core
To develop for Docling Core, you need Python 3.9 / 3.10 / 3.11 / 3.12 / 3.13 and Poetry. You can then install from your local clone's root dir:
poetry install
To run the pytest suite, execute:
poetry run pytest test
You can validate your JSON objects using the pydantic class definition.
from docling_core.types import DoclingDocument
data_dict = {...} # here the object you want to validate, as a dictionary
DoclingDocument.model_validate(data_dict)
data_str = {...} # here the object as a JSON string
DoclingDocument.model_validate_json(data_str)
You can generate the JSON schema of a model with the script generate_jsonschema
.
# for the `DoclingDocument` type
generate_jsonschema DoclingDocument
# for the use `Record` type
generate_jsonschema Record
Docling Core contains 3 top-level data types:
The data schemas are defined using pydantic models, which provide built-in processes to support the creation of data that adhere to those models.
Please read Contributing to Docling Core for details.
If you use Docling Core in your projects, please consider citing the following:
@techreport{Docling,
author = "Deep Search Team",
month = 8,
title = "Docling Technical Report",
url = "https://arxiv.org/abs/2408.09869",
eprint = "2408.09869",
doi = "10.48550/arXiv.2408.09869",
version = "1.0.0",
year = 2024
}
The Docling Core codebase is under MIT license. For individual model usage, please refer to the model licenses found in the original packages.