You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+66-18Lines changed: 66 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,17 +18,23 @@ Docling-agent simplifies agentic operation on documents, such as writing, editin
18
18
-[Targeted editing](examples/example_02_edit_report.py): Load an existing Docling JSON and apply focused edits with natural-language tasks.
19
19
-[Schema-guided extraction](examples/example_03_extract_schema.py): Extract typed fields from PDFs/images using a simple schema and produce HTML reports. See examples on curriculum_vitae, papers, invoices, etc.
20
20
-[Document enrichment](examples/example_04_enrich_document.py): Enrich existing documents with summaries, search keywords, key entities, and item classifications (language/function).
21
-
- Model-agnostic: Plug in different backends via [Mellea](https://github.com/generative-computing/mellea)`model_ids` (e.g., OpenAI GPT OSS, IBM Granite).
21
+
- Model-agnostic: Choose `mellea`, `ollama`, `lmstudio`, or `litellm` through backend configuration.
22
22
- Simple API surface: Use `agent.run(...)` with `DoclingDocument` in/out; save via `save_as_*` helpers.
23
23
- Optional tools: Integrate external tools (e.g., MCP) when available.
24
24
25
25
Quick start (writing):
26
26
27
27
```python
28
-
from mellea.backends import model_ids
29
-
from docling_agent.agents import DoclingWritingAgent
0 commit comments