Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LlamaIndexTS
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mirrored_repos
MachineLearning
run-llama
LlamaIndexTS
Commits
ce94780b
Unverified
Commit
ce94780b
authored
10 months ago
by
Marcus Schiesser
Committed by
GitHub
10 months ago
Browse files
Options
Downloads
Patches
Plain Diff
feat: add page number to read PDFs (#815)
parent
645fcf6c
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.changeset/ninety-doors-impress.md
+5
-0
5 additions, 0 deletions
.changeset/ninety-doors-impress.md
packages/core/src/readers/PDFReader.ts
+7
-4
7 additions, 4 deletions
packages/core/src/readers/PDFReader.ts
with
12 additions
and
4 deletions
.changeset/ninety-doors-impress.md
0 → 100644
+
5
−
0
View file @
ce94780b
---
"
llamaindex"
:
patch
---
Add page number to read PDFs and use generated IDs for PDF and markdown content
This diff is collapsed.
Click to expand it.
packages/core/src/readers/PDFReader.ts
+
7
−
4
View file @
ce94780b
...
@@ -12,10 +12,13 @@ export class PDFReader implements BaseReader {
...
@@ -12,10 +12,13 @@ export class PDFReader implements BaseReader {
fs
:
GenericFileSystem
=
defaultFS
,
fs
:
GenericFileSystem
=
defaultFS
,
):
Promise
<
Document
[]
>
{
):
Promise
<
Document
[]
>
{
const
content
=
await
fs
.
readRawFile
(
file
);
const
content
=
await
fs
.
readRawFile
(
file
);
const
text
=
await
readPDF
(
content
);
const
pages
=
await
readPDF
(
content
);
return
text
.
map
((
text
,
page
)
=>
{
return
pages
.
map
((
text
,
page
)
=>
{
const
id_
=
`
${
file
}
_
${
page
}
`
;
const
id_
=
`
${
file
}
_
${
page
+
1
}
`
;
return
new
Document
({
text
,
id_
});
const
metadata
=
{
page_number
:
page
+
1
,
};
return
new
Document
({
text
,
id_
,
metadata
});
});
});
}
}
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment