Update README.md
Browse files
README.md
CHANGED
|
@@ -1,19 +1,47 @@
|
|
| 1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
|
|
|
|
|
|
|
| 3 |

|
| 4 |

|
| 5 |

|
| 6 |

|
| 7 |

|
| 8 |

|
| 9 |
-
|
| 10 |
Atomically parse and understand complex PDF documents using **claude-opus-4-6** (Anthropic).
|
| 11 |
Handles equations, graphs, algorithms, unique drawings, multi-column layouts, scanned pages,
|
| 12 |
and 100+ page documents without hallucination.
|
| 13 |
-
|
| 14 |
Designed to be dropped into local agent pipelines as a callable module.
|
| 15 |
-
|
| 16 |
-
--
|
| 17 |
|
| 18 |
## What Makes This Work
|
| 19 |
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
license: mit
|
| 5 |
+
library_name: anthropic
|
| 6 |
+
tags:
|
| 7 |
+
- pdf
|
| 8 |
+
- document-parsing
|
| 9 |
+
- ocr
|
| 10 |
+
- multimodal
|
| 11 |
+
- equations
|
| 12 |
+
- table-extraction
|
| 13 |
+
- agent
|
| 14 |
+
- claude
|
| 15 |
+
- information-extraction
|
| 16 |
+
- scientific-documents
|
| 17 |
+
pipeline_tag: document-question-answering
|
| 18 |
+
model_name: PDF Atomic Parser
|
| 19 |
+
authors:
|
| 20 |
+
- algorembrant
|
| 21 |
+
sdk: other
|
| 22 |
+
sdk_version: "1.0.0"
|
| 23 |
+
app_file: pdf_atomic_parser.py
|
| 24 |
+
short_description: >
|
| 25 |
+
Atomically parse complex PDFs (equations, graphs, algorithms, tables)
|
| 26 |
+
using Claude claude-opus-4-6 without hallucination. Agent-ready.
|
| 27 |
+
---
|
| 28 |
|
| 29 |
+
# PDF Atomic Parser
|
| 30 |
+
|
| 31 |

|
| 32 |

|
| 33 |

|
| 34 |

|
| 35 |

|
| 36 |

|
| 37 |
+
|
| 38 |
Atomically parse and understand complex PDF documents using **claude-opus-4-6** (Anthropic).
|
| 39 |
Handles equations, graphs, algorithms, unique drawings, multi-column layouts, scanned pages,
|
| 40 |
and 100+ page documents without hallucination.
|
| 41 |
+
|
| 42 |
Designed to be dropped into local agent pipelines as a callable module.
|
| 43 |
+
|
| 44 |
+
--
|
| 45 |
|
| 46 |
## What Makes This Work
|
| 47 |
|