Open Silas-Xu opened 2 months ago
RedisSemanticCache has been very helpful for me, but it does not support async redis client, like this:
RedisSemanticCache
from redis.asyncio import Redis from langchain_redis import RedisSemanticCache redis: Redis = Redis.from_url(url="...") redis_cache = RedisSemanticCache(redis_client=redis, embeddings=...)
Although I saw async methods in RedisVLSemanticCache, they were not used in RedisSemanticCache. Is there a follow-up support plan?
RedisVLSemanticCache
@Silas-Xu thanks for the report, it's on the roadmap for the library. Stay tuned!
RedisSemanticCache
has been very helpful for me, but it does not support async redis client, like this:Although I saw async methods in
RedisVLSemanticCache
, they were not used inRedisSemanticCache
. Is there a follow-up support plan?