Docling Agent is a Python library for AI-powered document workflows — writing, editing, extracting structured data, and enriching documents with metadata.
Note
This package is under active development. Feedback, suggestions, and contributions are very welcome.
- 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: Choose
mellea,ollama,lmstudio,litellm, orllama-serverthrough backend configuration. - Simple API surface: Use
agent.run(...)withDoclingDocumentin/out; save viasave_as_*helpers. - Run tracing: Get timing, model and sub-agent traces for a run with
run_with_trace(...), and export a whole session to one JSON file. - Optional tools: Integrate external tools (e.g., MCP) when available.
pip install docling-agentRequires Python 3.11 or higher.
Each snippet shows how to initialise an agent, run a task, and save the result.
Generate well-structured reports from natural prompts and export to JSON, Markdown, or HTML (example).
from docling_agent.agents import BackendConfig, DoclingWritingAgent, ModelConfig, create_backend
backend = create_backend(
BackendConfig(
type="ollama",
base_url="http://localhost:11434",
models=ModelConfig(reasoning="qwen3:8b", writing="qwen3:8b"),
)
)
agent = DoclingWritingAgent(backend=backend, tools=[])
doc = agent.run("Write a brief report on polymers in food packaging with a small comparison table.")
doc.save_as_html("./scratch/report.html")Use natural-language tasks to update a Docling Document (example). Run multiple tasks to iteratively refine content, structure, or formatting.
from pathlib import Path
from docling_core.types.doc.document import DoclingDocument
from docling_agent.agents import BackendConfig, DoclingEditingAgent, ModelConfig, create_backend
ipath = Path("./examples/example_02_edit_resources/20250815_125216.json")
doc = DoclingDocument.load_from_json(ipath)
backend = create_backend(
BackendConfig(
type="mellea",
models=ModelConfig(reasoning="OPENAI_GPT_OSS_20B", writing="OPENAI_GPT_OSS_20B"),
)
)
agent = DoclingEditingAgent(backend=backend, tools=[])
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")Define a simple schema and provide a list of files (PDFs/images); the agent produces an HTML report with extracted fields (example).
from pathlib import Path
from docling_agent.agents import BackendConfig, DoclingExtractingAgent, ModelConfig, create_backend
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"}])
backend = create_backend(
BackendConfig(
type="mellea",
models=ModelConfig(reasoning="OPENAI_GPT_OSS_20B", writing="OPENAI_GPT_OSS_20B"),
)
)
agent = DoclingExtractingAgent(backend=backend, tools=[])
report = agent.run(task=str(schema), sources=sources)
report.save_as_html("./scratch/invoices_extraction_report.html")Run enrichment passes — summaries, keywords, entities, and classifications — on a Docling Document (example).
from pathlib import Path
from docling_core.types.doc.document import DoclingDocument
from docling_agent.agents import BackendConfig, DoclingEnrichingAgent, ModelConfig, create_backend
ipath = Path("./examples/example_02_edit_resources/20250815_125216.json")
doc = DoclingDocument.load_from_json(ipath)
backend = create_backend(
BackendConfig(
type="mellea",
models=ModelConfig(reasoning="OPENAI_GPT_OSS_20B", writing="OPENAI_GPT_OSS_20B"),
)
)
agent = DoclingEnrichingAgent(backend=backend, tools=[])
enriched = agent.run(task="Summarize each paragraph, table, and section header.", document=doc)
enriched.save_as_html("./scratch/enriched_summaries.html")Every agent has run_with_trace() next to run(). It returns an AgentTrace (timing, model and
the produced document) instead of just the document. The orchestrator uses run_task_with_trace(),
which nests the trace of each sub-agent it ran, so a whole session exports to one JSON file.
from docling_agent.agents import BackendConfig, DoclingOrchestratorAgent, RAGTask, create_backend
orchestrator = DoclingOrchestratorAgent(backend=create_backend(BackendConfig(type="mellea")), tools=[])
trace = orchestrator.run_task_with_trace(RAGTask(query="What is the conclusion?", sources=["./report.pdf"]))
print(trace.duration_ms, [c.agent_type for c in trace.children]) # 8421 ['enricher', 'rag']
trace.save("./scratch/trace.json")
answer = trace.outputTo export from a task file instead, set logging.trace_path:
logging:
trace_path: ./scratch/trace.jsonTask files select the backend via an explicit backend block:
backend:
type: ollama # mellea | ollama | lmstudio | litellm | llama-server
base_url: http://localhost:11434
timeout: 120
models:
reasoning: qwen3:8b
writing: qwen3:8bTypical defaults:
mellea: model names likeOPENAI_GPT_OSS_20Bollama: model names likeqwen3:8blmstudio: model names likegranite-3.3-8b-instructlitellm: routed model names likeopenai/gpt-4.1-minillama-server: GGUF model names as loaded by llama.cpp'sllama-server(defaulthttp://localhost:8080/v1)
Explore the examples/ folder for end-to-end scripts covering document writing, editing, extraction, enrichment, RAG querying, and more.
For more details on Docling's inner workings, check out the Docling Technical Report.
Please read Contributing to Docling Agent for details.
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}
}The Docling Agent codebase is under MIT license. For individual model usage, please refer to the model licenses found in the original packages.
Docling is hosted as a project in the LF AI & Data Foundation.
The project was started by the AI for knowledge team at IBM Research Zurich.