Skip to content

Commit 0691453

Browse files
committed
add model version info
1 parent ba8b027 commit 0691453

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/ai-services/computer-vision/how-to/image-retrieval.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ manager: nitinme
88

99
ms.service: azure-ai-vision
1010
ms.topic: how-to
11-
ms.date: 10/16/2024
11+
ms.date: 02/22/2025
1212
ms.collection: "ce-skilling-fresh-tier2, ce-skilling-ai-copilot"
1313
ms.author: pafarley
1414

@@ -19,7 +19,7 @@ ms.author: pafarley
1919

2020
The Multimodal embeddings APIs enable the _vectorization_ of images and text queries. They convert images to coordinates in a multi-dimensional vector space. Then, incoming text queries can also be converted to vectors, and images can be matched to the text based on semantic closeness. This allows the user to search a set of images using text, without the need to use image tags or other metadata. Semantic closeness often produces better results in search.
2121

22-
The `2024-02-01` API includes a multi-lingual model that supports text search in 102 languages. The original English-only model is still available, but it cannot be combined with the new model in the same search index. If you vectorized text and images using the English-only model, these vectors won’t be compatible with multi-lingual text and image vectors.
22+
The `2024-02-01` API includes a multi-lingual model (model version `2023-04-15`) that supports text search in 102 languages. The original English-only model (version `2022-04-11`) is still available, but it cannot be combined with the new model in the same search index. If you vectorized text and images using the English-only model, these vectors won’t be compatible with multi-lingual text and image vectors.
2323

2424
> [!IMPORTANT]
2525
> These APIs are only available in certain geographic regions. See [Region availability](../overview-image-analysis.md#region-availability).
@@ -87,7 +87,7 @@ The API call returns a **vector** JSON object, which defines the text string's c
8787

8888
```json
8989
{
90-
"modelVersion": "2022-04-11",
90+
"modelVersion": "2023-04-15",
9191
"vector": [ -0.09442752, -0.00067171326, -0.010985051, ... ]
9292
}
9393
```

0 commit comments

Comments
 (0)