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

This commit is contained in:
Bagatur 2024-02-08 16:39:55 -08:00 committed by GitHub
parent 8bad4157ad
commit 72c7af0bc0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 3 deletions

View File

@ -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",

View File

@ -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,