Find answers from the community

Updated 9 months ago

also does the llama paraser use all the

also does the llama paraser use all the documents you upload in the directory as nodes if you do ismple directory?
L
d
12 comments
You'd have to set which file extensions you want simple directory reader to send to llama-parse
so all of these will be indexed right? Using pdf extension
Attachment
image.png
is there a way to irreritate over chunks through the llama paraser btw
Yea those will all be processed
is there a way to irreritate over chunks through the llama paraser btw -- do you mean the resulting documents? Or?
I wanted to do some NER and Classifcation on the chunks. I tried doing it for each node but the model i'm using is expecting string format @Logan M
You can get the text with document.text

Plain Text
for document in documents:
  text = document.text
  entities = <get entities>
  document.metadata["entities"] = "entities"
lmaoo working hard
Attachment
image.png
:dotsCATJAM: :dotsHARDSTYLE:
Add a reply
Sign up and join the conversation on Discord