mirror of
https://github.com/hwchase17/langchain
synced 2024-11-06 03:20:49 +00:00
20 lines
501 B
Python
20 lines
501 B
Python
|
"""Implementations of key-value stores and storage helpers.
|
||
|
|
||
|
Module provides implementations of various key-value stores that conform
|
||
|
to a simple key-value interface.
|
||
|
|
||
|
The primary goal of these storages is to support implementation of caching.
|
||
|
"""
|
||
|
|
||
|
from langchain_community.storage.redis import RedisStore
|
||
|
from langchain_community.storage.upstash_redis import (
|
||
|
UpstashRedisByteStore,
|
||
|
UpstashRedisStore,
|
||
|
)
|
||
|
|
||
|
__all__ = [
|
||
|
"RedisStore",
|
||
|
"UpstashRedisByteStore",
|
||
|
"UpstashRedisStore",
|
||
|
]
|