Skip to content

Commit

Permalink
community: recommend RedisVectorStore over Redis (#28749)
Browse files Browse the repository at this point in the history
  • Loading branch information
efriis authored Dec 16, 2024
1 parent 8f5e72d commit d4b5e7e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions libs/community/langchain_community/vectorstores/redis/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,9 @@ def check_index_exists(client: RedisType, index_name: str) -> bool:
return True


@deprecated(
since="0.3.13", removal="1.0", alternative_import="langchain_redis.RedisVectorStore"
)
class Redis(VectorStore):
"""Redis vector database.
Expand Down

0 comments on commit d4b5e7e

Please sign in to comment.