class EncoderBackedStoreBaseStore<K, V>Class that provides a layer of abstraction over the base storage, allowing for the encoding and decoding of keys and values. It extends the BaseStore class.
A path to the module that contains the class, eg. ["langchain", "llms"] Usually should be the same as the entrypoint the class is exported from.
An optional store to persist the agent's state.
Deletes the given keys and their associated values from the store.
Retrieves the values associated with the given keys from the store.
Sets the values for the given keys in the store.
Asynchronous generator that yields keys from the store. If a prefix is provided, it only yields keys that start with the prefix.
The name of the serializable. Override to provide an alias or to preserve the serialized module name in minified environments.
Implemented as a static method to support loading logic.