File size: 195 Bytes
e92d49a | 1 2 3 4 5 6 7 | from rag.vectorstore import get_vectorstore
if __name__ == '__main__':
print('Building/loading FAISS index...')
vs = get_vectorstore()
print('Vectorstore ready:', type(vs).__name__)
|
e92d49a | 1 2 3 4 5 6 7 | from rag.vectorstore import get_vectorstore
if __name__ == '__main__':
print('Building/loading FAISS index...')
vs = get_vectorstore()
print('Vectorstore ready:', type(vs).__name__)
|