after some more digging without using nest_asyncio.apply()
interestingly, I noticed this error pops up only if I kept
use_async
True in the
from_vector_store
method
vector_store = QdrantVectorStore(
aclient=aclient,
collection_name=QDRANT_CLOUD_COLLECTION_NAME
)
base_index = VectorStoreIndex.from_vector_store(
vector_store=vector_store,
embed_model=embeddings,
callback_manager=callback_manager,
use_async=True
)
if I remove it it works.
I'm already using
use_async=True
in query engines and stuff but those don't raise error. This only happens on
0.10.X
is there any idea as to why that is the case?