11 lines
231 B
Python
11 lines
231 B
Python
from vectorstore import create_vectorstore, load_documents
|
|
import os
|
|
|
|
def main():
|
|
db = create_vectorstore()
|
|
load_documents("documents", db)
|
|
print("Documents loaded into ChromaDB")
|
|
|
|
if __name__ == "__main__":
|
|
main()
|