Support for Asynchronous Operations in QdrantVectorStore #24772
Replies: 3 comments 3 replies
-
@Anush008 Will it support asynchronous operation? If so, when will it be available? |
Beta Was this translation helpful? Give feedback.
-
Hey @vegetablest. All async methods are already callable. They'll internally use https://github.com/langchain-ai/langchain/blob/master/libs%2Fcore%2Flangchain_core%2Frunnables%2Fconfig.py#L564-L601 We may extend it to use async Qdrant client after the next release of the client. |
Beta Was this translation helpful? Give feedback.
-
The base class performs this delegation. langchain/libs/core/langchain_core/vectorstores/base.py Lines 933 to 936 in 31f4fb7 |
Beta Was this translation helpful? Give feedback.
-
Checked
Feature request
Enable Asynchronous Operations in QdrantVectorStore Similar to Qdrant.
Motivation
The
langchain_qdrant.vectorstores.Qdrant
API is deprecated, and it's recommended to migrate to from langchain_qdrant importQdrantVectorStore
. However,QdrantVectorStore
currently does not support asynchronous operations. Are there any plans to add support for asynchronous operations in the future?Proposal (If applicable)
No response
Beta Was this translation helpful? Give feedback.
All reactions