Ask a question to get started
Enter to send•Shift+Enter new line
Create a store for LangChain serializable objects from a bytes store.
create_lc_store( store: ByteStore, *, key_encoder: Callable[[str], str] | None = None ) -> BaseStore[str, Serializable]
store
ByteStore
A bytes store to use as the underlying store.
key_encoder
Callable[[str], str] | None
None
A function to encode keys; if None uses identity function.