Update app.py
Browse files
app.py
CHANGED
@@ -70,7 +70,7 @@ text = dataset["facts"]["text"]
|
|
70 |
text_string = "".join(text)
|
71 |
|
72 |
# Chunk and index the documents
|
73 |
-
chunks = chunk_text(text_string, chunk_size=
|
74 |
# Build the vectorsore
|
75 |
vectorstore = build_faiss_vectorstore(chunks)
|
76 |
|
|
|
70 |
text_string = "".join(text)
|
71 |
|
72 |
# Chunk and index the documents
|
73 |
+
chunks = chunk_text(text_string, chunk_size=1000)
|
74 |
# Build the vectorsore
|
75 |
vectorstore = build_faiss_vectorstore(chunks)
|
76 |
|