Skip to content

Commit e0f9dcc

Browse files
Merge pull request #273545 from HeidiSteen/heidist-bug
typo
2 parents a9bf49b + ff08a9d commit e0f9dcc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/search/vector-search-how-to-configure-compression-storage.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ Each component of the vector is mapped to the closest representative value withi
202202
Here's a composite example of a search index that specifies narrow data types, reduced storage, and vector compression.
203203

204204
+ "HotelNameVector" provides a narrow data type example, recasting the original `Float32` values to `Float16`, expressed as `Collection(Edm.Half)` in the search index.
205-
+ "HotelNameVector" also has `stored` set to false. Extra embeddings used in a query response are not stored.
205+
+ "HotelNameVector" also has `stored` set to false. Extra embeddings used in a query response are not stored. When `stored` is false, `retrievable` must also be false.
206206
+ "DescriptionVector" provides an example of vector compression. Vector compression is defined in the index, referenced in a profile, and then assigned to a vector field. "DescriptionVector" also has `stored` set to false.
207207

208208
```json
@@ -255,7 +255,7 @@ POST {{baseUrl}}/indexes?api-version=2024-03-01-preview HTTP/1.1
255255
"name": "DescriptionVector",
256256
"type": "Collection(Edm.Single)",
257257
"searchable": true,
258-
"retrievable": true,
258+
"retrievable": false,
259259
"dimensions": 1536,
260260
"stored": false,
261261
"vectorSearchProfile": "my-vector-profile-with-compression"

0 commit comments

Comments
 (0)