Skip to content

Commit 9af1b57

Browse files
committed
Fixes some code samples in the READMEs.
1 parent e20b9e7 commit 9af1b57

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pdf4llm/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Instead of the filename string as above, one can also provide a PyMuPDF `Documen
5050
```python
5151
import pdf4llm
5252

53-
md_read = LlamaMarkdownReader()
53+
md_read = pdf4llm.LlamaMarkdownReader()
5454
data = md_read.load_data("input.pdf")
5555

5656
# The result 'data' is of type List[LlamaIndexDocument]

pymupdf4llm/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Instead of the filename string as above, one can also provide a PyMuPDF `Documen
5050
```python
5151
import pymupdf4llm
5252

53-
md_read = LlamaMarkdownReader()
53+
md_read = pymupdf4llm.LlamaMarkdownReader()
5454
data = md_read.load_data("input.pdf")
5555

5656
# The result 'data' is of type List[LlamaIndexDocument]

0 commit comments

Comments
 (0)