From 8a81fcd5d337b208de999ca311cea6a91e112787 Mon Sep 17 00:00:00 2001 From: Christophe Bornet Date: Wed, 28 Feb 2024 23:15:09 +0100 Subject: [PATCH] community: Fix deprecation version of AstraDB VectorStore (#17991) --- libs/community/langchain_community/vectorstores/astradb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/community/langchain_community/vectorstores/astradb.py b/libs/community/langchain_community/vectorstores/astradb.py index da9ed439a35..1bc45f7490b 100644 --- a/libs/community/langchain_community/vectorstores/astradb.py +++ b/libs/community/langchain_community/vectorstores/astradb.py @@ -66,7 +66,7 @@ def _unique_list(lst: List[T], key: Callable[[T], U]) -> List[T]: @deprecated( - since="0.1.23", + since="0.0.21", removal="0.2.0", alternative_import="langchain_astradb.AstraDBVectorStore", )