Skip to content

Commit 66a37fb

Browse files
Merge pull request #5803 from PatrickFarley/freshness-pass
freshness
2 parents 94a37b2 + 2fc210c commit 66a37fb

File tree

8 files changed

+30
-30
lines changed

8 files changed

+30
-30
lines changed

articles/ai-services/autoscale.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@ ms.service: azure-ai-services
77
ms.custom:
88
- ignite-2023
99
ms.topic: how-to
10-
ms.date: 01/10/2025
10+
ms.date: 06/30/2025
1111
---
1212

1313
# Autoscale AI services limits
1414

15-
This article provides guidance for how customers can access higher rate limits on certain Azure AI services resources.
15+
This article provides guidance on how customers can access higher rate limits on certain Azure AI services resources.
1616

1717
## Overview
1818

19-
Each Azure AI services resource has a pre-configured static call rate (transactions per second) which limits the number of concurrent calls that customers can make to the backend service in a given time frame. The autoscale feature will automatically increase/decrease a customer's resource's rate limits based on near-real-time resource usage metrics and backend service capacity metrics.
19+
Each Azure AI services resource has a pre-configured static call rate (transactions per second) which limits the number of concurrent calls that customers can make to the service in a given time frame. The autoscale feature will automatically increase/decrease a customer's resource's rate limits based on near-real-time resource usage metrics and backend service capacity metrics.
2020

2121
## Get started with the autoscale feature
2222

@@ -84,7 +84,7 @@ Be aware of potential errors and their consequences. If a bug in your client app
8484
Yes, you can disable the autoscale feature through Azure portal or CLI and return to your default call rate limit setting. If your resource was previously approved for a higher default TPS, it goes back to that rate. It can take up to five minutes for the changes to go into effect.
8585

8686

87-
## Next steps
87+
## Related content
8888

8989
* [Plan and Manage costs for Azure AI services](../ai-foundry/how-to/costs-plan-manage.md).
9090
* [Optimize your cloud investment with Microsoft Cost Management](/azure/cost-management-billing/costs/cost-mgt-best-practices?WT.mc_id=costmanagementcontent_docsacmhorizontal_-inproduct-learn).

articles/ai-services/computer-vision/computer-vision-how-to-install-containers.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: PatrickFarley
66
manager: nitinme
77
ms.service: azure-ai-vision
88
ms.topic: how-to
9-
ms.date: 06/26/2024
9+
ms.date: 06/30/2025
1010
ms.collection: "ce-skilling-fresh-tier2, ce-skilling-ai-copilot"
1111
ms.update-cycle: 365-days
1212
ms.author: pafarley
@@ -15,7 +15,7 @@ keywords: on-premises, OCR, Docker, container
1515

1616
# Install Azure AI Vision 3.2 GA Read OCR container
1717

18-
Containers let you run the Azure AI Vision APIs in your own environment and can help you meet specific security and data governance requirements. In this article you'll learn how to download, install, and run the Azure AI Vision Read (OCR) container.
18+
Containers let you run the Azure AI Vision APIs in your own environment and can help you meet specific security and data governance requirements. In this article you learn how to download, install, and run the Azure AI Vision Read (OCR) container.
1919

2020
The Read container allows you to extract printed and handwritten text from images and documents in JPEG, PNG, BMP, PDF, and TIFF file formats. For more information on the Read service, see the [Read API how-to guide](how-to/call-read-api.md).
2121

@@ -30,7 +30,7 @@ The Read 3.2 OCR container is the latest GA model and provides:
3030
* Support for larger documents and images.
3131
* Confidence scores.
3232
* Support for documents with both print and handwritten text.
33-
* Ability to extract text from only selected page(s) in a document.
33+
* Ability to extract text from only selected pages in a document.
3434
* Choose text line output order from default to a more natural reading order for Latin languages only.
3535
* Text line classification as handwritten style or not for Latin languages only.
3636

@@ -133,7 +133,7 @@ mcr.microsoft.com/azure-cognitive-services/vision/read:3.2-model-2022-04-30
133133
More [examples](./computer-vision-resource-container-config.md#example-docker-commands) of the `docker run` command are available.
134134

135135
> [!IMPORTANT]
136-
> The `Eula`, `Billing`, and `ApiKey` options must be specified to run the container; otherwise, the container won't start. For more information, see [Billing](#billing).
136+
> The `Eula`, `Billing`, and `ApiKey` options must be specified to run the container; otherwise, the container won't start. For more information, see [Billing](#billing).
137137
138138
<!--If you need higher throughput (for example, when processing multi-page files), consider deploying multiple containers [on a Kubernetes cluster](deploy-computer-vision-on-premises.md), using [Azure Storage](/azure/storage/common/storage-account-create) and [Azure Queue](/azure/storage/queues/storage-queues-introduction).-->
139139

@@ -143,7 +143,7 @@ To find your connection string:
143143

144144
1. Navigate to **Storage accounts** on the Azure portal, and find your account.
145145
2. Select on **Access keys** in the left pane.
146-
3. Your connection string will be located below **Connection string**
146+
3. Your connection string is located below **Connection string**
147147

148148
[!INCLUDE [Running multiple containers on the same host](../includes/cognitive-services-containers-run-multiple-same-host.md)]
149149

@@ -159,9 +159,9 @@ Use the host, `http://localhost:5000`, for container APIs. You can view the Swag
159159

160160
### Asynchronous Read
161161

162-
You can use the `POST /vision/v3.2/read/analyze` and `GET /vision/v3.2/read/operations/{operationId}` operations in concert to asynchronously read an image, similar to how the Azure AI Vision service uses those corresponding REST operations. The asynchronous POST method will return an `operationId` that is used as the identifier to the HTTP GET request.
162+
You can use the `POST /vision/v3.2/read/analyze` and `GET /vision/v3.2/read/operations/{operationId}` operations in concert to asynchronously read an image, similar to how the Azure AI Vision service uses those corresponding REST operations. The asynchronous POST method returns an `operationId` that is used as the identifier to the HTTP GET request.
163163

164-
From the swagger UI, select the `Analyze` to expand it in the browser. Then select **Try it out** > **Choose file**. In this example, we'll use the following image:
164+
From the swagger UI, select the `Analyze` to expand it in the browser. Then select **Try it out** > **Choose file**. In this example, we use the following image:
165165

166166
![tabs vs spaces](media/tabs-vs-spaces.png)
167167

@@ -174,7 +174,7 @@ When the asynchronous POST has run successfully, it returns an **HTTP 202** stat
174174
server: Kestrel
175175
```
176176

177-
The `operation-location` is the fully qualified URL and is accessed via an HTTP GET. Here is the JSON response from executing the `operation-location` URL from the preceding image:
177+
The `operation-location` is the fully qualified URL and is accessed via an HTTP GET. Here's the JSON response from executing the `operation-location` URL from the preceding image:
178178

179179
```json
180180
{
@@ -284,7 +284,7 @@ The `operation-location` is the fully qualified URL and is accessed via an HTTP
284284

285285

286286
> [!IMPORTANT]
287-
> If you deploy multiple Read OCR containers behind a load balancer, for example, under Docker Compose or Kubernetes, you must have an external cache. Because the processing container and the GET request container might not be the same, an external cache stores the results and shares them across containers. For details about cache settings, see [Configure Azure AI Vision Docker containers](./computer-vision-resource-container-config.md).
287+
> If you deploy multiple Read OCR containers behind a load balancer, for example, under Docker Compose or Kubernetes, you must have an external cache. Because the processing container and the `GET` request container might not be the same, an external cache stores the results and shares them across containers. For details about cache settings, see [Configure Azure AI Vision Docker containers](./computer-vision-resource-container-config.md).
288288
289289
### Synchronous read
290290

articles/ai-services/computer-vision/how-to/call-analyze-image-40.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.update-cycle: 365-days
99
ms.author: pafarley
1010
ms.service: azure-ai-vision
1111
ms.topic: how-to
12-
ms.date: 06/01/2024
12+
ms.date: 06/30/2025
1313
ms.custom: devx-track-python, devx-track-extended-java, devx-track-js
1414
zone_pivot_groups: programming-languages-computer-vision
1515
---
@@ -49,7 +49,7 @@ This article demonstrates how to call the Image Analysis 4.0 API to return infor
4949

5050
::: zone-end
5151

52-
## Next steps
52+
## Related content
5353

5454
* Explore the [concept articles](../concept-describe-images-40.md) to learn more about each feature.
5555
* Explore the SDK code samples on GitHub:

articles/ai-services/computer-vision/includes/how-to-guides/analyze-image-40-rest.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,18 @@ manager: nitinme
44
ms.service: ai-services
55
ms.subservice: computer-vision
66
ms.topic: include
7-
ms.date: 08/01/2023
7+
ms.date: 06/30/2025
88
ms.collection: "ce-skilling-fresh-tier2, ce-skilling-ai-copilot"
99
ms.update-cycle: 365-days
1010
ms.author: pafarley
1111
---
1212

1313
## Prerequisites
1414

15-
This guide assumes you have successfully followed the steps mentioned in the [quickstart](/azure/ai-services/computer-vision/quickstarts-sdk/image-analysis-client-library-40) page. This means:
15+
This guide assumes you've successfully followed the steps mentioned in the [quickstart](/azure/ai-services/computer-vision/quickstarts-sdk/image-analysis-client-library-40) page. This means:
1616

17-
* You have <a href="https://portal.azure.com/#create/Microsoft.CognitiveServicesComputerVision" title="created a Computer Vision resource" target="_blank">created a Computer Vision resource </a> and obtained a key and endpoint URL.
18-
* You have successfully made a `curl.exe` call to the service (or used an alternative tool). You modify the `curl.exe` call based on the examples here.
17+
* You've <a href="https://portal.azure.com/#create/Microsoft.CognitiveServicesComputerVision" title="created a Computer Vision resource" target="_blank">created a Computer Vision resource </a> and obtained a key and endpoint URL.
18+
* You've successfully made a `curl.exe` call to the service (or used an alternative tool). You modify the `curl.exe` call based on the examples here.
1919

2020
## Authenticate against the service
2121

@@ -69,7 +69,7 @@ A populated URL might look like this:
6969

7070
### Set model name when using a custom model
7171

72-
You can also do image analysis with a custom trained model. To create and train a model, see [Create a custom Image Analysis model](/azure/ai-services/computer-vision/how-to/model-customization). Once your model is trained, all you need is the model's name. You do not need to specify visual features if you use a custom model.
72+
You can also do image analysis with a custom trained model. To create and train a model, see [Create a custom Image Analysis model](/azure/ai-services/computer-vision/how-to/model-customization). Once your model is trained, all you need is the model's name. You don't need to specify visual features if you use a custom model.
7373

7474

7575
To use a custom model, don't use the features query parameter. Instead, set the `model-name` parameter to the name of your model as shown here. Replace `MyCustomModelName` with your custom model name.
@@ -272,7 +272,7 @@ The service returns a `200` HTTP response, and the body contains the returned da
272272

273273
## Error codes
274274

275-
On error, the Image Analysis service response contains a JSON payload that includes an error code and error message. It may also include other details in the form of and inner error code and message. For example:
275+
On error, the Image Analysis service response contains a JSON payload that includes an error code and error message. It might also include other details in the form of and inner error code and message. For example:
276276

277277
```json
278278
{

articles/ai-services/computer-vision/quickstarts-sdk/image-analysis-client-library.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: PatrickFarley
66
manager: nitinme
77
ms.service: azure-ai-vision
88
ms.topic: quickstart
9-
ms.date: 02/27/2024
9+
ms.date: 06/30/2025
1010
ms.collection: "ce-skilling-fresh-tier2, ce-skilling-ai-copilot"
1111
ms.update-cycle: 365-days
1212
ms.author: pafarley

articles/ai-services/computer-vision/whats-new.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.custom:
99
- build-2023
1010
- ignite-2023
1111
ms.topic: whats-new
12-
ms.date: 03/11/2024
12+
ms.date: 06/30/2025
1313
ms.collection: ce-skilling-fresh-tier2
1414
ms.update-cycle: 365-days
1515
ms.author: pafarley
@@ -51,7 +51,7 @@ For more information, see the [SDK release notes](https://github.com/Azure-Sampl
5151

5252
### Image Analysis 4.0 Preview API deprecation
5353

54-
On March 31, 2025, the Image Analysis 4.0 Preview APIs will be retired. Before that date, you'll need to migrate your Azure Image Analysis workloads to the [Image Analysis 4.0 GA ](/rest/api/computervision/operation-groups?view=rest-computervision-v4.0%20(2024-02-01))API.
54+
On March 31, 2025, the Image Analysis 4.0 Preview APIs will be retired. Before that date, you need to migrate your Azure Image Analysis workloads to the [Image Analysis 4.0 GA ](/rest/api/computervision/operation-groups?view=rest-computervision-v4.0%20(2024-02-01))API.
5555

5656
We encourage you to make the transition sooner to gain access to improvements such as multimodal embedding, synchronous OCR, people detection, image tagging, smart cropping, caption, dense caption, and image object detection.
5757
These Image Analysis 4.0 preview APIs will be retired on March 31, 2025:

articles/ai-services/content-moderator/index.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ metadata:
1111
ms.topic: landing-page
1212
author: PatrickFarley
1313
ms.author: pafarley
14-
ms.date: 06/12/2025
14+
ms.date: 06/30/2025
1515

1616
# linkListType: architecture | concept | deploy | download | get-started | how-to-guide | learn | overview | quickstart | reference | tutorial | video | whats-new
1717

articles/ai-services/openai/concepts/safety-system-message-templates.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ titleSuffix: Azure OpenAI in Azure AI Foundry Models
44
description: This article contains recommended safety system messages for your generative AI systems, to help reduce the propensity of harm in various concern areas.
55
ms.service: azure-ai-openai
66
ms.topic: conceptual
7-
ms.date: 03/21/2025
7+
ms.date: 06/30/2025
88
ms.custom:
99
manager: nitinme
1010
author: PatrickFarley
@@ -14,12 +14,12 @@ ms.author: pafarley
1414

1515
# Safety system message templates
1616

17-
This article contains recommended safety system messages for your generative AI systems, to help reduce the propensity of harm in various concern areas. Before you begin evaluating and integrating your safety system messages, visit the [Safety System Message documentation](/azure/ai-services/openai/concepts/system-message) to get started.
17+
This article contains recommended safety system messages for your generative AI systems to help reduce the propensity of harm in various concern areas. Before you begin evaluating and integrating your safety system messages, visit the [Safety system message conceptual guide](/azure/ai-services/openai/concepts/system-message) to get started.
1818

1919
> [!NOTE]
20-
> Using a safety system message is one of many techniques that can be used for mitigations risks in AI systems and is different from [Azure AI Content Safety](/azure/ai-services/content-safety/overview).
20+
> Using a safety system message is one of many techniques that can be used for mitigations risks in AI systems and is different from the [Azure AI Content Safety](/azure/ai-services/content-safety/overview) service.
2121
22-
## Recommended system messages
22+
## Recommended system messages
2323

2424
Below are examples of recommended system message components you can include to potentially mitigate various harms in your AI system.
2525

@@ -50,4 +50,4 @@ The following steps show how to leverage safety system messages in [Azure AI Fou
5050
5151
## Evaluation
5252

53-
We recommend adjusting your safety system message approach based on an iterative process of identification and evaluation. Learn more in our [Safety System Message documentation](/azure/ai-services/openai/concepts/system-message).
53+
We recommend you adjust your safety system message approach based on an iterative process of identification and evaluation. Learn more in the [Safety system message conceptual guide](/azure/ai-services/openai/concepts/system-message).

0 commit comments

Comments
 (0)