What should I set my Llamaparse object arguments, so my parsing_instruction make any difference:
parser = LlamaParse(
api_key=LLAMAINDEX_API_KEY,
parsing_instruction=parsing_instruction,
premium_mode=True,
split_by_page=False,
verbose=False
)
file_extractor = {".pdf": parser, ".docx": parser, ".doc": parser}
documents = SimpleDirectoryReader(
input_files=[file_path], file_extractor=file_extractor
).load_data()
document_text = "\n".join(
[doc.text for doc in documents if hasattr(doc, 'text')]
)
Doesnt make here. I think llama havent implemented this feature yet, but they shipped it π