We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ea5a14 commit 76b2d90Copy full SHA for 76b2d90
libs/langchain-mongodb/langchain_mongodb/index.py
@@ -6,11 +6,14 @@
6
7
from pymongo.collection import Collection
8
9
-logger = logging.getLogger(__file__)
10
-
11
12
# Don't break imports for modules that expect these functions
13
# to be in this module.
+from pymongo_search_utils import ( # noqa: F401
+ create_vector_search_index,
+ update_vector_search_index,
14
+)
15
+
16
+logger = logging.getLogger(__file__)
17
18
19
def _vector_search_index_definition(
0 commit comments