Find answers from the community

L
Lvka
Offline, last seen last month
Joined November 4, 2024
What should I set my Llamaparse object arguments, so my parsing_instruction make any difference:
Plain Text
  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 πŸ˜„
35 comments
L
S
L