Skip to content

Commit 4a5b20b

Browse files
committed
LM feedback
1 parent b0ee587 commit 4a5b20b

File tree

1 file changed

+9
-10
lines changed

1 file changed

+9
-10
lines changed

source/model-data/indexes.txt

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -243,19 +243,18 @@ an Atlas Search index named ``"title_search_idx"`` on the ``title`` field:
243243

244244
.. _django-indexes-vector-search:
245245

246-
Vector Search Indexes
247-
~~~~~~~~~~~~~~~~~~~~~
246+
Atlas Vector Search Indexes
247+
~~~~~~~~~~~~~~~~~~~~~~~~~~~
248248

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.
253252

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
255254
``Meta`` class to a ``VectorSearchIndex`` object. Pass the following arguments to the
256255
``VectorSearchIndex()`` constructor:
257256

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
259258
specify this argument, {+framework+} automatically generates an index name.
260259
- ``fields``: The fields you want to index. At least one must be a vector
261260
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
266265
of values that assigns functions to individual vector fields.
267266

268267
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
270269
and the ``cook_time`` numeric field:
271270

272271
.. literalinclude:: /includes/model-data/indexes.py
@@ -278,7 +277,7 @@ and the ``cook_time`` numeric field:
278277

279278
.. tip::
280279

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:
282281

283282
- :atlas:`Atlas Vector Search </atlas-vector-search>` in the Atlas documentation.
284283
- `VectorSearchIndex <{+api+}ref/models/indexes//#vectorsearchindex>`__ class in the

0 commit comments

Comments
 (0)