pipeline = IngestionPipeline(transformations=[...], vector_store=vector_store)
db2 = chromadb.PersistentClient(path="./chroma_db") chroma_collection = db2.get_or_create_collection("quickstart") vector_store = ChromaVectorStore(chroma_collection=chroma_collection)