Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

core[minor],langchain[patch]: Move base indexing interface and logic to core #20667

Merged
merged 15 commits into from
Apr 24, 2024
Merged
15 changes: 15 additions & 0 deletions libs/core/langchain_core/indexing/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
"""Code to help indexing data into a vectorstore.
This package contains helper logic to help deal with indexing data into
a vectorstore while avoiding duplicated content and over-writing content
if it's unchanged.
"""
from langchain_core.indexing.api import IndexingResult, aindex, index
from langchain_core.indexing.base import RecordManager

__all__ = [
"aindex",
"index",
"IndexingResult",
"RecordManager",
]
Loading
Loading