Skip to content

Commit 116258c

Browse files
authored
Update path to chunking algorithm in data_ingestion.md (#2204)
1 parent 69a26ef commit 116258c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/data_ingestion.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ We're often asked why we need to break up the PDFs into chunks when Azure AI Sea
5151

5252
Chunking allows us to limit the amount of information we send to OpenAI due to token limits. By breaking up the content, it allows us to easily find potential chunks of text that we can inject into OpenAI. The method of chunking we use leverages a sliding window of text such that sentences that end one chunk will start the next. This allows us to reduce the chance of losing the context of the text.
5353

54-
If needed, you can modify the chunking algorithm in `scripts/prepdocslib/textsplitter.py`.
54+
If needed, you can modify the chunking algorithm in `app/backend/prepdocslib/textsplitter.py`.
5555

5656
### Enhancing search functionality with data categorization
5757

0 commit comments

Comments
 (0)