bstraehle commited on
Commit
c11e160
·
1 Parent(s): a457c54

Update rag_llamaindex.py

Browse files
Files changed (1) hide show
  1. rag_llamaindex.py +4 -1
rag_llamaindex.py CHANGED
@@ -55,7 +55,10 @@ class LlamaIndexRAG(BaseRAG):
55
  )
56
 
57
  VectorStoreIndex.from_documents(
58
- docs,
 
 
 
59
  storage_context = storage_context
60
  )
61
 
 
55
  )
56
 
57
  VectorStoreIndex.from_documents(
58
+ chunk_overlap = config["chunk_overlap"],
59
+ chunk_size = config["chunk_size"],
60
+ documents = docs,
61
+ #embedding = x,
62
  storage_context = storage_context
63
  )
64