Spaces:
Sleeping
Sleeping
from utils.vector_store import build_vector_store | |
# Build MES manual vector store | |
build_vector_store( | |
doc_path="docs/mes", | |
persist_directory="./vector_stores/mes_db" | |
) | |
# Build a different document set | |
build_vector_store( | |
doc_path="docs/technical", | |
persist_directory="./vector_stores/tech_db" | |
) | |
# Build a different document set | |
build_vector_store( | |
doc_path="docs/general", | |
persist_directory="./vector_stores/general_db" | |
) | |