Lhumpal commited on
Commit
532460c
·
verified ·
1 Parent(s): 3e419e2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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=350)
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