Skip to main content

A python library to simplify agentic operations on documents, such as writing, editing, summarizing, extracting, and enriching.

Project description

uv Ruff Pydantic v2 pre-commit License MIT LF AI & Data

Docling-Agent

Docling-agent simplifies agentic operation on documents, such as writing, editing, summarizing, etc.

[!NOTE] This package is still immature and work-in-progress. We are happy to get comments, suggestions, code contributions, etc!

Features

  • Document writing: Generate well-structured reports from natural prompts and export to JSON/Markdown/HTML.
  • Targeted editing: Load an existing Docling JSON and apply focused edits with natural-language tasks.
  • Schema-guided extraction: Extract typed fields from PDFs/images using a simple schema and produce HTML reports. See examples on curriculum_vitae, papers, invoices, etc.
  • Document enrichment: Enrich existing documents with summaries, search keywords, key entities, and item classifications (language/function).
  • Model-agnostic: Plug in different backends via Mellea model_ids (e.g., OpenAI GPT OSS, IBM Granite).
  • Simple API surface: Use agent.run(...) with DoclingDocument in/out; save via save_as_* helpers.
  • Optional tools: Integrate external tools (e.g., MCP) when available.

Quick start (writing):

from mellea.backends import model_ids
from docling_agent.agents import DoclingWritingAgent

agent = DoclingWritingAgent(model_id=model_ids.OPENAI_GPT_OSS_20B)
doc = agent.run("Write a one-page summary about polymers in food packaging.")
doc.save_as_html("report.html")

Installation

Coming soon

Getting started

Below are three minimal, end-to-end examples mirroring the scripts in the examples folder. Each snippet shows how to initialize an agent, run a task, and save the result.

Write a new document (see example):

from mellea.backends import model_ids
from docling_agent.agents import DoclingWritingAgent

agent = DoclingWritingAgent(model_id=model_ids.OPENAI_GPT_OSS_20B)
doc = agent.run("Write a brief report on polymers in food packaging with a small comparison table.")
doc.save_as_html("./scratch/report.html")

Edit an existing document (see example):

Use natural-language tasks to update a Docling JSON. You can run multiple tasks to iteratively refine content, structure, or formatting.

from pathlib import Path
from mellea.backends import model_ids
from docling_core.types.doc.document import DoclingDocument
from docling_agent.agents import DoclingEditingAgent

ipath = Path("./examples/example_02_edit_resources/20250815_125216.json")
doc = DoclingDocument.load_from_json(ipath)

agent = DoclingEditingAgent(model_id=model_ids.OPENAI_GPT_OSS_20B)
updated = agent.run(task="Put polymer abbreviations in a separate column in the first table.", document=doc)
updated.save_as_html("./scratch/updated_table.html")

Extract structured data with a schema (see example):

Define a simple schema and provide a list of files (PDFs/images). The agent produces an HTML report with extracted fields.

from pathlib import Path
from mellea.backends import model_ids
from docling_agent.agents import DoclingExtractingAgent

schema = {"invoice-number": "string", "total": "float", "currency": "string"}
sources = sorted([p for p in Path("./examples/example_03_extract/invoices").rglob("*.*") if p.suffix.lower() in {".pdf", ".png", ".jpg", ".jpeg"}])

agent = DoclingExtractingAgent(model_id=model_ids.OPENAI_GPT_OSS_20B)
report = agent.run(task=str(schema), sources=sources)
report.save_as_html("./scratch/invoices_extraction_report.html")

Enrich an existing document (see example):

Run enrichment passes like summaries, keywords, entities, and classifications on a Docling JSON.

from pathlib import Path
from mellea.backends import model_ids
from docling_core.types.doc.document import DoclingDocument
from docling_agent.agents import DoclingEnrichingAgent

ipath = Path("./examples/example_02_edit_resources/20250815_125216.json")
doc = DoclingDocument.load_from_json(ipath)

agent = DoclingEnrichingAgent(model_id=model_ids.OPENAI_GPT_OSS_20B)
enriched = agent.run(task="Summarize each paragraph, table, and section header.", document=doc)
enriched.save_as_html("./scratch/enriched_summaries.html")

Documentation

Coming soon

Examples

Go hands-on with our examples, demonstrating how to address different application use cases with Docling.

Integrations

To further accelerate your AI application development, check out Docling's native integrations with popular frameworks and tools.

Get help and support

Please feel free to connect with us using the discussion section.

Technical report

For more details on Docling's inner workings, check out the Docling Technical Report.

Contributing

Please read Contributing to Docling for details.

References

If you use Docling or Docling-agent 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}
}

License

The Docling codebase is under MIT license. For individual model usage, please refer to the model licenses found in the original packages.

LF AI & Data

Docling is hosted as a project in the LF AI & Data Foundation.

IBM ❤️ Open Source AI

The project was started by the AI for knowledge team at IBM Research Zurich.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

docling_agent-0.1.0.tar.gz (42.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

docling_agent-0.1.0-py3-none-any.whl (50.1 kB view details)

Uploaded Python 3

File details

Details for the file docling_agent-0.1.0.tar.gz.

File metadata

  • Download URL: docling_agent-0.1.0.tar.gz
  • Upload date:
  • Size: 42.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for docling_agent-0.1.0.tar.gz
Algorithm Hash digest
SHA256 511e2918b57af19cf279678d8be413b0dae0ffffeb81d0444d342844a0465bac
MD5 c75f1e1a9757454107a0d00665874d98
BLAKE2b-256 ac891c970ef22518c46b2389cdf50539ecfe1ffc209f0b698b192e887ff032a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_agent-0.1.0.tar.gz:

Publisher: pypi.yml on docling-project/docling-agent

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file docling_agent-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: docling_agent-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 50.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for docling_agent-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 c50331d6e69e77175f0d8adacbb73724f50d101d2282ada9e4a86b935c772d3e
MD5 c75f0c9a5a3346bfbcc09cb94f7abd78
BLAKE2b-256 2214cdd9f55ffa7ecbcde3b8fc45061f7456a09b1bd8040c52f344295d39072f

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_agent-0.1.0-py3-none-any.whl:

Publisher: pypi.yml on docling-project/docling-agent

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page