Update app.py
Browse files
app.py
CHANGED
@@ -27,7 +27,7 @@ def cargar_docs():
|
|
27 |
|
28 |
docs = cargar_docs()
|
29 |
|
30 |
-
text_splitter = RecursiveCharacterTextSplitter(chunk_size=
|
31 |
split_docs = text_splitter.split_documents(docs)
|
32 |
|
33 |
embeddings = OpenAIEmbeddings()
|
|
|
27 |
|
28 |
docs = cargar_docs()
|
29 |
|
30 |
+
text_splitter = RecursiveCharacterTextSplitter(chunk_size=300, chunk_overlap=100)
|
31 |
split_docs = text_splitter.split_documents(docs)
|
32 |
|
33 |
embeddings = OpenAIEmbeddings()
|