Update app.py
Browse files
app.py
CHANGED
@@ -26,8 +26,8 @@ def get_pdf_text(pdf_docs):
|
|
26 |
def get_text_chunks(text):
|
27 |
print('text = ',text)
|
28 |
text_splitter = RecursiveCharacterTextSplitter(
|
29 |
-
chunk_size =
|
30 |
-
chunk_overlap =
|
31 |
length_function= len
|
32 |
)
|
33 |
# text_splitter = CharacterTextSplitter(
|
|
|
26 |
def get_text_chunks(text):
|
27 |
print('text = ',text)
|
28 |
text_splitter = RecursiveCharacterTextSplitter(
|
29 |
+
chunk_size = 1000,
|
30 |
+
chunk_overlap = 200,
|
31 |
length_function= len
|
32 |
)
|
33 |
# text_splitter = CharacterTextSplitter(
|