From ff31cc1648fce9a797bdbd4402db959321f374ca Mon Sep 17 00:00:00 2001 From: Zihong Date: Tue, 19 Mar 2024 19:24:51 +0800 Subject: [PATCH] experimental: update the notebook link of semantic chunk. (#19253) update the notebook link of semantic chunk. --- libs/experimental/langchain_experimental/text_splitter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/experimental/langchain_experimental/text_splitter.py b/libs/experimental/langchain_experimental/text_splitter.py index c5b6ed513af..a522f72c057 100644 --- a/libs/experimental/langchain_experimental/text_splitter.py +++ b/libs/experimental/langchain_experimental/text_splitter.py @@ -95,7 +95,7 @@ class SemanticChunker(BaseDocumentTransformer): """Split the text based on semantic similarity. Taken from Greg Kamradt's wonderful notebook: - https://github.com/FullStackRetrieval-com/RetrievalTutorials/blob/main/5_Levels_Of_Text_Splitting.ipynb + https://github.com/FullStackRetrieval-com/RetrievalTutorials/blob/main/tutorials/LevelsOfTextSplitting/5_Levels_Of_Text_Splitting.ipynb All credits to him.