@@ -36,7 +36,7 @@ date, objectId, numeric, string, or UUID values that you want to use to
3636pre-filter your data.
3737
3838You can call the following methods on a collection to manage your Atlas Search
39- indexes:
39+ and vector Search indexes:
4040
4141- ``create_search_index()``
4242- ``create_search_indexes()``
@@ -72,18 +72,18 @@ The following code example shows how to create a single Atlas Search index:
7272 :end-before: end-create-search-index
7373
7474The following code example shows how to create a single Atlas Vector Search index
75- using the `SearchIndexModel <{+api-root+}pymongo/operations.html#pymongo.operations.SearchIndexModel>`__
75+ by using the `SearchIndexModel <{+api-root+}pymongo/operations.html#pymongo.operations.SearchIndexModel>`__
7676object:
7777
7878.. literalinclude:: /includes/indexes/indexes.py
7979 :language: python
8080 :start-after: start-create-vector-search-index
8181 :end-before: end-create-vector-search-index
8282
83- You can use `create_search_indexes() <{+api-root+}pymongo/collection.html#pymongo.collection.Collection.create_search_indexes>`__
84- to create multiple indexes. These indexes can be Atlas Search indexes or Atlas
85- Vector Search indexes. ``create_search_indexes()`` requires the ``SearchIndexModel``
86- object .
83+ You can use the `create_search_indexes() <{+api-root+}pymongo/collection.html#pymongo.collection.Collection.create_search_indexes>`__
84+ method to create multiple indexes. These indexes can be Atlas Search or
85+ Vector Search indexes. The ``create_search_indexes()`` method takes a list of
86+ ``SearchIndexModel`` objects that correspond to each index you want to create .
8787
8888The following code example shows how to create an Atlas Search index and an Atlas
8989Vector Search index:
@@ -100,7 +100,7 @@ List Search Indexes
100100
101101You can use the
102102`list_search_indexes() <{+api-root+}pymongo/collection.html#pymongo.collection.Collection.list_search_indexes>`__
103- method to return the Atlas Search indexes and Atlas Vector Search indexes
103+ method to get information about the Atlas Search and Vector Search indexes
104104of a collection.
105105
106106The following code example shows how to print a list of the search indexes of
@@ -119,7 +119,7 @@ Update a Search Index
119119
120120You can use the
121121`update_search_index() <{+api-root+}pymongo/collection.html#pymongo.collection.Collection.update_search_index>`__
122- method to update an Atlas Search index or Atlas Vector Search index.
122+ method to update an Atlas Search or Vector Search index.
123123
124124The following code example shows how to update an Atlas Search index:
125125
@@ -144,7 +144,7 @@ Delete a Search Index
144144
145145You can use the
146146`drop_search_index() <{+api-root+}pymongo/collection.html#pymongo.collection.Collection.drop_search_index>`__
147- method to remove an Atlas Search index or Atlas Vector Search index.
147+ method to remove an Atlas Search or Vector Search index.
148148
149149The following code shows how to delete a search index from a collection:
150150
0 commit comments