Hi, maybe someone knows:
i want to use a local embedding llm with chromaDb. running localy, donwloaded from hugging face and fine tunned (1024 dimensions)
collection = client.get_or_create_collection(vhector_id)
vector_store = ChromaVectorStore(chroma_collection=collection)
storage_context = StorageContext.from_defaults(vector_store=vector_store) # type: ignore
# service_context = ServiceContext.from_defaults(embed_model="local:llm/embeddings")
index = VectorStoreIndex(
nodes,
storage_context=storage_context,
# service_context=service_context,
)
`
when creating index, it takes forever, are there some settings to put ?