mirror of
https://github.com/hwchase17/langchain.git
synced 2025-05-04 06:37:58 +00:00
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.
6 lines
102 B
Python
6 lines
102 B
Python
from langchain_core.vectorstores import InMemoryVectorStore
|
|
|
|
__all__ = [
|
|
"InMemoryVectorStore",
|
|
]
|