Spaces:
Runtime error
Runtime error
File size: 368 Bytes
63deadc |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
"""In memory store that is not thread safe and has no eviction policy.
This is a simple implementation of the BaseStore using a dictionary that is useful
primarily for unit testing purposes.
"""
from langchain_core.stores import InMemoryBaseStore, InMemoryByteStore, InMemoryStore
__all__ = [
"InMemoryStore",
"InMemoryBaseStore",
"InMemoryByteStore",
]
|