Crowd_sourced_FAQ_Project / build_index.py
Kashish
Clean history without vectorstore binaries
e92d49a
Raw
History Blame Contribute Delete
195 Bytes
from rag.vectorstore import get_vectorstore
if __name__ == '__main__':
print('Building/loading FAISS index...')
vs = get_vectorstore()
print('Vectorstore ready:', type(vs).__name__)