Skip to content

Commit 4e306c3

Browse files
authored
Merge pull request #5445 from MicrosoftDocs/main
6/9/2025 PM Publish
2 parents 953ea34 + 8e0680b commit 4e306c3

File tree

14 files changed

+44
-85
lines changed

14 files changed

+44
-85
lines changed

articles/ai-foundry/concepts/models-featured.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,7 @@ DeepSeek family of models includes DeepSeek-R1, which excels at reasoning tasks
150150

151151
| Model | Type | Capabilities |
152152
| ------ | ---- | --- |
153+
| [DeepSeek-R1-0528](https://ai.azure.com/explore/models/DeepSeek-R1-0528/version/1/registry/azureml-deepseek) <br /> | [chat-completion with reasoning content](../model-inference/how-to/use-chat-reasoning.md?context=/azure/ai-foundry/context/context) | - **Input:** text (163,840 tokens) <br /> - **Output:** text (163,840 tokens) <br /> - **Languages:** `en` and `zh` <br /> - **Tool calling:** No <br /> - **Response formats:** Text |
153154
| [DeekSeek-V3-0324](https://ai.azure.com/explore/models/deepseek-v3-0324/version/1/registry/azureml-deepseek) | [chat-completion](../model-inference/how-to/use-chat-completions.md?context=/azure/ai-foundry/context/context) | - **Input:** text (131,072 tokens) <br /> - **Output:** (131,072 tokens) <br /> - **Tool calling:** No <br /> - **Response formats:** Text, JSON |
154155
| [DeepSeek-V3](https://ai.azure.com/explore/models/deepseek-v3/version/1/registry/azureml-deepseek) <br />(Legacy) | [chat-completion](../model-inference/how-to/use-chat-completions.md?context=/azure/ai-foundry/context/context) | - **Input:** text (131,072 tokens) <br /> - **Output:** text (131,072 tokens) <br /> - **Tool calling:** No <br /> - **Response formats:** Text, JSON |
155156
| [DeepSeek-R1](https://ai.azure.com/explore/models/deepseek-r1/version/1/registry/azureml-deepseek) | [chat-completion with reasoning content](../model-inference/how-to/use-chat-reasoning.md?context=/azure/ai-foundry/context/context) | - **Input:** text (163,840 tokens) <br /> - **Output:** text (163,840 tokens) <br /> - **Tool calling:** No <br /> - **Response formats:** Text. |

articles/ai-foundry/concepts/retrieval-augmented-generation.md

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.custom:
88
- ignite-2023
99
- build-2024
1010
ms.topic: concept-article
11-
ms.date: 04/03/2025
11+
ms.date: 06/09/2025
1212
ms.reviewer: sgilley
1313
ms.author: sgilley
1414
author: sdgilley
@@ -20,7 +20,7 @@ This article talks about the importance and need for Retrieval Augmented Generat
2020

2121
## What is RAG?
2222

23-
Some basics first. Large language models (LLMs) like ChatGPT are trained on public internet data that was available at the point in time when they were trained. They can answer questions related to the data they were trained on. This public data might not be sufficient to meet all your needs. You might want questions answered based on your private data. Or, the public data might simply be out of date. The solution to this problem is Retrieval Augmented Generation (RAG), a pattern used in AI that uses an LLM to generate answers with your own data.
23+
Some basics first. Large language models (LLMs) like ChatGPT are trained on public internet data that was available at the point in time when they were trained. They can answer questions related to the data they were trained on. The public data might not be sufficient to meet all your needs. You might want questions answered based on your private data. Or, the public data might just be out of date. The solution to this problem is Retrieval Augmented Generation (RAG), a pattern used in AI that uses an LLM to generate answers with your own data.
2424

2525
## How does RAG work?
2626

@@ -31,11 +31,19 @@ RAG is a pattern that uses your data with an LLM to generate answers specific to
3131

3232
## What is an index and why do I need it?
3333

34-
RAG uses your data to generate answers to the user question. For RAG to work well, we need to find a way to search and send your data in an easy and cost efficient manner to the LLMs. This is achieved by using an index. An index is a data store that allows you to search data efficiently. This index is very useful in RAG. An index can be optimized for LLMs by creating vectors (text data converted to number sequences using an embedding model). A good index usually has efficient search capabilities like keyword searches, semantic searches, vector searches, or a combination of these. This optimized RAG pattern can be illustrated as follows.
34+
RAG uses your data to generate answers to the user question. For RAG to work well, we need to find a way to search and send your data in an easy and cost efficient manner to the LLMs. An index solves this problem. An index is a data store that allows you to search data efficiently. This index is very useful in RAG. An index can be optimized for LLMs by creating vectors (text data converted to number sequences using an embedding model). A good index usually has efficient search capabilities like keyword searches, semantic searches, vector searches, or a combination of these features. This optimized RAG pattern can be illustrated as follows.
3535

3636
:::image type="content" source="../media/index-retrieve/rag-pattern-with-index.png" alt-text="Screenshot of the RAG pattern with index." lightbox="../media/index-retrieve/rag-pattern-with-index.png":::
3737

38-
Azure AI provides an index asset to use with RAG pattern. The index asset contains important information like where is your index stored, how to access your index, what are the modes in which your index can be searched, does your index have vectors, what is the embedding model used for vectors etc. The Azure AI index uses [Azure AI Search](/azure/search/search-what-is-azure-search) as the primary and recommended index store. Azure AI Search is an Azure resource that supports information retrieval over your vector and textual data stored in search indexes.
38+
Azure AI provides an index asset to use with RAG pattern. The index asset contains important information such as:
39+
40+
* Where is your index stored?
41+
* How to access your index?
42+
* What are the modes in which your index can be searched?
43+
* Does your index have vectors?
44+
* What is the embedding model used for vectors?
45+
46+
The Azure AI index uses [Azure AI Search](/azure/search/search-what-is-azure-search) as the primary and recommended index store. Azure AI Search is an Azure resource that supports information retrieval over your vector and textual data stored in search indexes.
3947

4048
## Next steps
4149

articles/ai-foundry/faq.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ metadata:
88
ms.custom:
99
- build-2024
1010
ms.topic: faq
11-
ms.date: 01/17/2025
11+
ms.date: 06/09/2025
1212
ms.reviewer: sgilley
1313
ms.author: sgilley
1414
author: sdgilley

articles/ai-foundry/includes/region-availability-maas.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,11 @@ Cohere Embed v3 - Multilingual | [Microsoft Managed Countries/Regions](/par
4949

5050
| Model | Offer Availability Region | Hub/Project Region for Deployment | Hub/Project Region for Fine tuning |
5151
|---------|---------|---------|---------|
52+
DeepSeek-R1-0528 | Not applicable | East US <br> East US 2 <br> North Central US <br> South Central US <br> West US <br> West US 3 | Not available |
5253
DeepSeek-V3-0324 | Not applicable | East US <br> East US 2 <br> North Central US <br> South Central US <br> West US <br> West US 3 | Not available |
5354
DeepSeek-V3 | Not applicable | East US <br> East US 2 <br> North Central US <br> South Central US <br> West US <br> West US 3 | Not available |
5455
DeepSeek-R1 | Not applicable | East US <br> East US 2 <br> North Central US <br> South Central US <br> West US <br> West US 3 | Not available |
5556

56-
5757
### Gretel models
5858

5959
|Model |Offer Availability Region | Hub/Project Region for Deployment | Hub/Project Region for Fine tuning |

articles/ai-foundry/model-inference/concepts/models.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ DeepSeek family of models includes DeepSeek-R1, which excels at reasoning tasks
5959

6060
| Model | Type | Tier | Capabilities |
6161
| ------ | ---- | ---- | ------------ |
62+
| [DeepSeek-R1-0528]() <br /> | chat-completion | Global standard | - **Input:** text (163,840 tokens) <br /> - **Output:** text (163,840 tokens) <br /> - **Languages:** `en` and `zh` <br /> - **Tool calling:** No <br /> - **Response formats:** Text |
6263
| [DeepSeek-V3-0324](https://ai.azure.com/explore/models/deepseek-v3-0324/version/1/registry/azureml-deepseek) | chat-completion | Global standard | - **Input:** text (131,072 tokens) <br /> - **Output:** (131,072 tokens) <br /> - **Languages:** `en` and `zh` <br /> - **Tool calling:** Yes <br /> - **Response formats:** Text, JSON |
6364
| [DeepSeek-R1](https://ai.azure.com/explore/models/deepseek-r1/version/1/registry/azureml-deepseek) | chat-completion <br /> [(with reasoning content)](../how-to/use-chat-reasoning.md) | Global standard | - **Input:** text (163,840 tokens) <br /> - **Output:** (163,840 tokens) <br /> - **Languages:** `en` and `zh` <br /> - **Tool calling:** No <br /> - **Response formats:** Text. |
6465
| [DeepSeek-V3](https://ai.azure.com/explore/models/deepseek-v3/version/1/registry/azureml-deepseek) <br />(Legacy) | chat-completion | Global standard | - **Input:** text (131,072 tokens) <br /> - **Output:** (131,072 tokens) <br /> - **Languages:** `en` and `zh` <br /> - **Tool calling:** No <br /> - **Response formats:** Text, JSON |

articles/ai-services/computer-vision/includes/video-retrieval-deprecation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Video retrieval deprecation notice
2+
title: Video Retrieval deprecation notice
33
titleSuffix: Azure AI services
44
author: PatrickFarley
55
manager: nitinme

articles/ai-services/computer-vision/index.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -90,14 +90,6 @@ conceptualContent:
9090
footerLink:
9191
text: More
9292
url: overview-identity.md
93-
- title: Video Analysis
94-
links:
95-
- itemType: overview
96-
text: About Video Analysis
97-
url: intro-to-spatial-analysis-public-preview.md
98-
- itemType: how-to-guide
99-
text: Call the Video Retrieval APIs
100-
url: how-to/video-retrieval.md
10193
- title: Optical character recognition (legacy)
10294
links:
10395
- itemType: overview

articles/ai-services/computer-vision/intro-to-spatial-analysis-public-preview.md

Lines changed: 4 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -1,59 +1,19 @@
11
---
2-
title: What is Video Analysis?
2+
title: What is Video Retrieval?
33
titleSuffix: Azure AI services
4-
description: Learn about the basic concepts and features of Azure AI Vision Spatial Analysis and Video Retrieval.
4+
description: Learn about the basic concepts and features of Azure AI Vision Video Retrieval.
55
author: PatrickFarley
66
manager: nitinme
77
ms.collection: "ce-skilling-fresh-tier2, ce-skilling-ai-copilot"
88
ms.update-cycle: 365-days
99
ms.author: pafarley
1010
ms.service: azure-ai-vision
1111
ms.topic: overview
12-
ms.date: 04/04/2025
12+
ms.date: 05/22/2025
1313
ms.custom: contperf-fy22q2, ignite-2022
1414
---
1515

16-
# What is Video Analysis?
17-
18-
Video Analysis includes video-related features like Spatial Analysis and Video Retrieval.
19-
20-
## Spatial Analysis
21-
22-
[!INCLUDE [spatial-analysis-deprecation](includes/spatial-analysis-deprecation.md)]
23-
24-
<!--
25-
You can use Azure AI Vision Spatial Analysis to detect the presence and movements of people in video. Ingest video streams from cameras, extract insights, and generate events to be used by other systems. The service can do things like count the number of people entering a space or measure compliance with face mask and social distancing guidelines. By processing video streams from physical spaces, you can learn how people use them and maximize the space's value to your organization.
26-
27-
Try out the capabilities of Spatial Analysis quickly and easily in your browser by using Azure AI Vision Studio.
28-
29-
> [!div class="nextstepaction"]
30-
> [Try Vision Studio](https://portal.vision.cognitive.azure.com/)
31-
32-
33-
### People counting
34-
35-
This operation counts the number of people in a specific zone over time using the *PersonCount* operation. It generates an independent count for each frame processed without attempting to track people across frames. This operation can be used to estimate the number of people in a space or generate an alert when a person appears.
36-
37-
:::image type="content" source="https://user-images.githubusercontent.com/11428131/139924111-58637f2e-f2f6-42d8-8812-ab42fece92b4.gif" alt-text="Animation showing how Spatial Analysis counts the number of people in the cameras field of view.":::
38-
39-
### Entrance Counting
40-
41-
This feature monitors how long people stay in an area or when they enter through a doorway. This monitoring can be done using the PersonCrossingPolygon or PersonCrossingLine operations. In retail scenarios, these operations can be used to measure wait times for a checkout line or engagement at a display. Also, these operations could measure foot traffic in a lobby or a specific floor in other commercial building scenarios.
42-
43-
:::image type="content" source="https://user-images.githubusercontent.com/11428131/137016574-0d180d9b-fb9a-42a9-94b7-fbc0dbc18560.gif" alt-text="Animation showing frames of people moving in and out of a bordered space, with rectangles drawn around them.":::
44-
45-
### Social distancing and face mask detection
46-
47-
This feature analyzes how well people follow social distancing requirements in a space. The system uses the *PersonDistance* operation to automatically calibrate itself as people walk around in the space. Then it identifies when people violate a specific distance threshold (6 ft. or 10 ft.).
48-
49-
:::image type="content" source="https://user-images.githubusercontent.com/11428131/139924062-b5e10c0f-3cf8-4ff1-bb58-478571c022d7.gif" alt-text="Animation showing how Spatial Analysis visualizes social distance violation events showing lines between people showing the distance.":::
50-
51-
Spatial Analysis can also be configured to detect if a person is wearing a protective face covering such as a mask. A mask classifier can be enabled for the PersonCount, PersonCrossingLine, and PersonCrossingPolygon operations by configuring the `ENABLE_FACE_MASK_CLASSIFIER` parameter.
52-
53-
:::image type="content" source="https://user-images.githubusercontent.com/11428131/137015842-ce524f52-3ac4-4e42-9067-25d19b395803.png" alt-text="Photograph showing how Spatial Analysis classifies whether people have facemasks in an elevator.":::
54-
-->
55-
56-
## Video Retrieval
16+
# What is Video Retrieval?
5717

5818
[!INCLUDE [video-retrieval-deprecation](includes/video-retrieval-deprecation.md)]
5919

articles/ai-services/computer-vision/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ The Azure AI Vision service gives you access to advanced algorithms that process
2626
| [Optical Character Recognition (OCR)](overview-ocr.md)|The Optical Character Recognition (OCR) service extracts text from images. You can use the Read API to extract printed and handwritten text from photos and documents. It uses deep-learning-based models and works with text on various surfaces and backgrounds. These include business documents, invoices, receipts, posters, business cards, letters, and whiteboards. The OCR APIs support extracting printed text in [several languages](./language-support.md). Follow the [OCR quickstart](quickstarts-sdk/client-library.md) to get started.|
2727
|[Image Analysis](overview-image-analysis.md)| The Image Analysis service extracts many visual features from images, such as objects, faces, adult content, and auto-generated text descriptions. Follow the [Image Analysis quickstart](quickstarts-sdk/image-analysis-client-library-40.md) to get started.|
2828
| [Face](overview-identity.md) | The Face service provides AI algorithms that detect, recognize, and analyze human faces in images. Facial recognition software is important in many different scenarios, such as identification, touchless access control, and face blurring for privacy. Follow the [Face quickstart](quickstarts-sdk/identity-client-library.md) to get started. |
29-
| [Video Analysis](intro-to-spatial-analysis-public-preview.md)| Video Analysis includes video-related features like Video Retrieval. [Video Retrieval](/azure/ai-services/computer-vision/how-to/video-retrieval) lets you create an index of videos that you can search with natural language.|
29+
| [Video Retrieval](intro-to-spatial-analysis-public-preview.md)| Video Retrieval lets you create an index of videos that you can search with natural language. Follow the [how-to guide](/azure/ai-services/computer-vision/how-to/video-retrieval).|
3030

3131
## Azure AI Vision for digital asset management
3232

articles/ai-services/computer-vision/toc.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -312,9 +312,9 @@ items:
312312
href: https://aka.ms/azure-ai-vision-face-liveness-client-sdk-web-api-reference
313313
- name: Understand the liveness versions
314314
href: sdk/understand-the-liveness-sdk-versions.md
315-
- name: Video Analysis
315+
- name: Video Retrieval
316316
items:
317-
- name: Video Analysis overview
317+
- name: Video Retrieval overview
318318
href: intro-to-spatial-analysis-public-preview.md
319319
- name: Responsible use of AI
320320
items:

0 commit comments

Comments
 (0)