How can i use AzureAIDocumentIntelligenceLoader for excel sheet #27545
Replies: 1 comment 10 replies
-
I couldn't find specific information on using
Here's an example of how you might adjust the text_splitter = RecursiveCharacterTextSplitter(
chunk_size=2000,
chunk_overlap=100,
separators=["\n\n", "\n", " ", ",", ";", "\t", ""], # Customize as needed
length_function=len,
is_separator_regex=False,
) These adjustments can help ensure that the text is split in a way that maintains semantic coherence and is suitable for further processing or analysis [1][2]. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
i am using AzureAIDocumentIntelligenceLoader, but in complex excel its not able to extract information, so what is best way to chunk it in azure document intellignece so that it will return meaning full chunks as an input to LLM for answering user query in RAG implementation, below is my code for reference
Beta Was this translation helpful? Give feedback.
All reactions