langchain[patch]: undo redis cache import (#17275)

pull/17276/head
Bagatur 4 months ago committed by GitHub
parent 8bad4157ad
commit 72c7af0bc0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,7 +1,6 @@
from langchain_community.cache import (
AstraDBCache,
AstraDBSemanticCache,
AsyncRedisCache,
CassandraCache,
CassandraSemanticCache,
FullLLMCache,
@ -23,7 +22,6 @@ __all__ = [
"SQLAlchemyCache",
"SQLiteCache",
"UpstashRedisCache",
"AsyncRedisCache",
"RedisCache",
"RedisSemanticCache",
"GPTCache",

@ -4,12 +4,12 @@ from contextlib import asynccontextmanager, contextmanager
from typing import AsyncGenerator, Generator, List, Optional, cast
import pytest
from langchain_community.cache import AsyncRedisCache, RedisCache, RedisSemanticCache
from langchain_core.embeddings import Embeddings
from langchain_core.load.dump import dumps
from langchain_core.messages import AIMessage, BaseMessage, HumanMessage
from langchain_core.outputs import ChatGeneration, Generation, LLMResult
from langchain.cache import AsyncRedisCache, RedisCache, RedisSemanticCache
from langchain.globals import get_llm_cache, set_llm_cache
from tests.integration_tests.cache.fake_embeddings import (
ConsistentFakeEmbeddings,

Loading…
Cancel
Save