bstraehle commited on
Commit
db1e09d
·
1 Parent(s): 62a61d6

Update rag_llamaindex.py

Browse files
Files changed (1) hide show
  1. rag_llamaindex.py +2 -1
rag_llamaindex.py CHANGED
@@ -84,7 +84,8 @@ class LlamaIndexRAG(BaseRAG):
84
  )
85
 
86
  index = VectorStoreIndex.from_vector_store(
87
- vector_store = self.get_vector_store())
 
88
 
89
  query_engine = index.as_query_engine(
90
  service_context = service_context,
 
84
  )
85
 
86
  index = VectorStoreIndex.from_vector_store(
87
+ vector_store = self.get_vector_store()
88
+ )
89
 
90
  query_engine = index.as_query_engine(
91
  service_context = service_context,