langchain/libs/community/langchain_community/vectorstores/inmemory.py
Eugene Yurtsev f765e8fa9d
core[minor],community[patch],standard-tests[patch]: Move InMemoryImplementation to langchain-core (#23986)
This PR moves the in memory implementation to langchain-core.

* The implementation remains importable from langchain-community.
* Supporting utilities are marked as private for now.
2024-07-08 14:11:51 -07:00

6 lines
102 B
Python

from langchain_core.vectorstores import InMemoryVectorStore
__all__ = [
"InMemoryVectorStore",
]