Skip to content

Commit 384687b

Browse files
Merge pull request #2758 from HeidiSteen/heidist-feb
edits for readability
2 parents 01c171e + d527597 commit 384687b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/search/tutorial-rag-build-solution-minimize-storage.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ author: HeidiSteen
88
ms.author: heidist
99
ms.service: azure-ai-search
1010
ms.topic: tutorial
11-
ms.date: 12/05/2024
11+
ms.date: 02/05/2025
1212

1313
---
1414

@@ -51,11 +51,11 @@ You should also have the following objects:
5151

5252
Azure AI Search has multiple approaches for reducing vector size, which lowers the cost of vector workloads. In this step, create a new index that uses the following capabilities:
5353

54-
- Smaller vector indexes by compressing the vectors used during query execution. Scalar quantization provides this capability.
54+
- Vector compression. Scalar quantization provides this capability.
5555

56-
- Smaller vector indexes by opting out of vector storage for search results. If you only need vectors for queries and not in response payload, you can drop the vector copy used for search results.
56+
- Eliminate optional storage. If you only need vectors for queries and not in a response payload, you can drop the vector copy used for search results.
5757

58-
- Smaller vector fields through narrow data types. You can specify `Collection(Edm.Half)` on the text_vector field to store incoming float32 dimensions as float16.
58+
- Narrow data types. You can specify `Collection(Edm.Half)` on the text_vector field to store incoming float32 dimensions as float16, which takes up less space in the index.
5959

6060
All of these capabilities are specified in a search index. After you load the index, compare the difference between the original index and the new one.
6161

0 commit comments

Comments
 (0)