@@ -243,19 +243,18 @@ an Atlas Search index named ``"title_search_idx"`` on the ``title`` field:
243
243
244
244
.. _django-indexes-vector-search:
245
245
246
- Vector Search Indexes
247
- ~~~~~~~~~~~~~~~~~~~~~
246
+ Atlas Vector Search Indexes
247
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~
248
248
249
- Vector Search indexes specify the behavior of an Atlas Vector Search, which allows
250
- you to query data based on its semantic meaning rather than by keyword matches.
251
- You can integrate vector search with full-text search queries and AI frameworks to
252
- support a range of use cases.
249
+ Atlas Vector Search indexes allow you to query data based on its semantic meaning
250
+ rather than by keyword matches. You can integrate vector search with full-text search
251
+ queries and AI frameworks to support a range of use cases.
253
252
254
- To create a Vector Search index, assign the ``indexes`` option in your model's
253
+ To create a vector search index, assign the ``indexes`` option in your model's
255
254
``Meta`` class to a ``VectorSearchIndex`` object. Pass the following arguments to the
256
255
``VectorSearchIndex()`` constructor:
257
256
258
- - ``name``: *(Optional)* The name of your Vector Search index. If you do not
257
+ - ``name``: *(Optional)* The name of your Atlas Vector Search index. If you do not
259
258
specify this argument, {+framework+} automatically generates an index name.
260
259
- ``fields``: The fields you want to index. At least one must be a vector
261
260
field, represented by an array of ``FloatField`` or ``IntegerField`` values and an
@@ -266,7 +265,7 @@ To create a Vector Search index, assign the ``indexes`` option in your model's
266
265
of values that assigns functions to individual vector fields.
267
266
268
267
The following example updates the ``Recipe`` model's ``Meta`` class to create
269
- a Vector Search index named ``"vector_search_idx"`` on the ``ratings`` vector field
268
+ a vector search index named ``"vector_search_idx"`` on the ``ratings`` vector field
270
269
and the ``cook_time`` numeric field:
271
270
272
271
.. literalinclude:: /includes/model-data/indexes.py
@@ -278,7 +277,7 @@ and the ``cook_time`` numeric field:
278
277
279
278
.. tip::
280
279
281
- To learn more about Vector Search queries and indexes, see the following resources:
280
+ To learn more about Atlas Vector Search queries and indexes, see the following resources:
282
281
283
282
- :atlas:`Atlas Vector Search </atlas-vector-search>` in the Atlas documentation.
284
283
- `VectorSearchIndex <{+api+}ref/models/indexes//#vectorsearchindex>`__ class in the
0 commit comments