CoolFace
Apppublic

kashishgupta/Crowd_sourced_FAQ_Project

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
build_index.py7 linesDownload Raw Back to root
1from rag.vectorstore import get_vectorstore2 3if __name__ == '__main__':4    print('Building/loading FAISS index...')5    vs = get_vectorstore()6    print('Vectorstore ready:', type(vs).__name__)7