core[minor],langchain[patch],community[patch]: Move storage interfaces to core (#20750)

* Move storage interface to core
* Move in memory and file system implementation to core
This commit is contained in:
Eugene Yurtsev
2024-04-30 13:14:26 -04:00
committed by GitHub
parent 8f38b7a725
commit 3c064a757f
9 changed files with 159 additions and 157 deletions

View File

@@ -1,5 +1,3 @@
from langchain_core.exceptions import LangChainException
from langchain_core.stores import InvalidKeyException
class InvalidKeyException(LangChainException):
"""Raised when a key is invalid; e.g., uses incorrect characters."""
__all__ = ["InvalidKeyException"]