Skip to content

Commit ba30dfa

Browse files
committed
Merge branch 'release-ignite-ai-studio' of https://github.com/MicrosoftDocs/azure-ai-docs-pr into stp_experimentation
2 parents b89c6c9 + eb58ff4 commit ba30dfa

File tree

125 files changed

+3392
-1130
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

125 files changed

+3392
-1130
lines changed

articles/ai-services/computer-vision/language-support.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ The latest [Multimodal embeddings](./concept-image-retrieval.md) model supports
258258
| Norwegian | `no` || |
259259
| Nyanja | `ny` || |
260260
| Occitan | `oc` || |
261-
| Oriya | `or` || |
261+
| Odia | `or` || |
262262
| Oromo | `om` || |
263263
| Pashto | `ps` || |
264264
| Persian | `fa` || |

articles/ai-services/computer-vision/use-case-alt-text.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Alt text, or alternative text, is an HTML attribute added to the `<img>` tag
2121

2222
`<img src="elephant.jpg" alt="An elephant in a grassland.">`
2323

24-
Alt text enables website owners to describe an image in plain text. These image descriptions improve accessibility by enabling screen readers such as Microsoft Narrator, JAWS, and NVDA to accurately communicate image content to their vision-impaired and blind users.
24+
Alt text enables website owners to describe an image in plain text. These image descriptions improve accessibility by enabling screen readers such as Microsoft Narrator, JAWS, and NVDA to accurately communicate image content to their users who are blind or with visual impairment.
2525

2626
Alt text is also vital for image search engine optimization (SEO). It helps search engines understand the visual content in your images. The search engine is then better able to include and rank your website in search results when users search for the content in your website.
2727

articles/ai-services/containers/docker-compose-recipe.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ author: aahill
77
manager: nitinme
88
ms.service: azure-ai-services
99
ms.topic: how-to
10-
ms.date: 02/22/2024
10+
ms.date: 11/06/2024
1111
ms.author: aahi
1212

1313
# SME: Brendan Walsh

articles/ai-services/content-safety/how-to/use-blocklist.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Copy the cURL command below to a text editor and make the following changes:
5353

5454

5555
```shell
56-
curl --location --request PATCH '<endpoint>/contentsafety/text/blocklists/<your_list_name>?api-version=2023-10-01' \
56+
curl --location --request PATCH '<endpoint>/contentsafety/text/blocklists/<your_list_name>?api-version=2024-09-01' \
5757
--header 'Ocp-Apim-Subscription-Key: <enter_your_key_here>' \
5858
--header 'Content-Type: application/json' \
5959
--data-raw '{
@@ -245,7 +245,7 @@ Copy the cURL command below to a text editor and make the following changes:
245245
1. Replace the value of the `"text"` field with the item you'd like to add to your blocklist. The maximum length of a blocklistItem is 128 characters.
246246

247247
```shell
248-
curl --location --request POST '<endpoint>/contentsafety/text/blocklists/<your_list_name>:addOrUpdateBlocklistItems?api-version=2023-10-01' \
248+
curl --location --request POST '<endpoint>/contentsafety/text/blocklists/<your_list_name>:addOrUpdateBlocklistItems?api-version=2024-09-01' \
249249
--header 'Ocp-Apim-Subscription-Key: <enter_your_key_here>' \
250250
--header 'Content-Type: application/json' \
251251
--data-raw '"blocklistItems": [{
@@ -487,7 +487,7 @@ Copy the cURL command below to a text editor and make the following changes:
487487
1. Optionally change the value of the `"text"` field to whatever text you want to analyze.
488488

489489
```shell
490-
curl --location --request POST '<endpoint>/contentsafety/text:analyze?api-version=2023-10-01&' \
490+
curl --location --request POST '<endpoint>/contentsafety/text:analyze?api-version=2024-09-01&' \
491491
--header 'Ocp-Apim-Subscription-Key: <enter_your_key_here>' \
492492
--header 'Content-Type: application/json' \
493493
--data-raw '{
@@ -727,7 +727,7 @@ Copy the cURL command below to a text editor and make the following changes:
727727
1. Replace `<your_list_name>` (in the request URL) with the name you used in the list creation step.
728728

729729
```shell
730-
curl --location --request GET '<endpoint>/contentsafety/text/blocklists/<your_list_name>/blocklistItems?api-version=2023-10-01' \
730+
curl --location --request GET '<endpoint>/contentsafety/text/blocklists/<your_list_name>/blocklistItems?api-version=2024-09-01' \
731731
--header 'Ocp-Apim-Subscription-Key: <enter_your_key_here>' \
732732
--header 'Content-Type: application/json'
733733
```
@@ -900,7 +900,7 @@ Copy the cURL command below to a text editor and make the following changes:
900900

901901

902902
```shell
903-
curl --location --request GET '<endpoint>/contentsafety/text/blocklists?api-version=2023-10-01' \
903+
curl --location --request GET '<endpoint>/contentsafety/text/blocklists?api-version=2024-09-01' \
904904
--header 'Ocp-Apim-Subscription-Key: <enter_your_key_here>' \
905905
--header 'Content-Type: application/json'
906906
```
@@ -1048,7 +1048,7 @@ Copy the cURL command below to a text editor and make the following changes:
10481048
1. Replace `<your_list_name>` (in the request URL) with the name you used in the list creation step.
10491049

10501050
```shell
1051-
cURL --location '<endpoint>contentsafety/text/blocklists/<your_list_name>?api-version=2023-10-01' \
1051+
cURL --location '<endpoint>contentsafety/text/blocklists/<your_list_name>?api-version=2024-09-01' \
10521052
--header 'Ocp-Apim-Subscription-Key: <enter_your_key_here>' \
10531053
--data ''
10541054
```
@@ -1199,7 +1199,7 @@ Copy the cURL command below to a text editor and make the following changes:
11991199

12001200

12011201
```shell
1202-
cURL --location '<endpoint>contentsafety/text/blocklists/<your_list_name>/blocklistItems/<your_item_id>?api-version=2023-10-01' \
1202+
cURL --location '<endpoint>contentsafety/text/blocklists/<your_list_name>/blocklistItems/<your_item_id>?api-version=2024-09-01' \
12031203
--header 'Ocp-Apim-Subscription-Key: <enter_your_key_here>' \
12041204
--data ''
12051205
```
@@ -1387,7 +1387,7 @@ Copy the cURL command below to a text editor and make the following changes:
13871387

13881388

13891389
```shell
1390-
curl --location --request DELETE '<endpoint>/contentsafety/text/blocklists/<your_list_name>:removeBlocklistItems?api-version=2023-10-01' \
1390+
curl --location --request POST '<endpoint>/contentsafety/text/blocklists/<your_list_name>:removeBlocklistItems?api-version=2024-09-01' \
13911391
--header 'Ocp-Apim-Subscription-Key: <enter_your_key_here>' \
13921392
--header 'Content-Type: application/json'
13931393
--data-raw '"blocklistItemIds":[
@@ -1573,7 +1573,7 @@ Copy the cURL command below to a text editor and make the following changes:
15731573
1. Replace `<your_list_name>` (in the request URL) with the name you used in the list creation step.
15741574

15751575
```shell
1576-
curl --location --request DELETE '<endpoint>/contentsafety/text/blocklists/<your_list_name>?api-version=2023-10-01' \
1576+
curl --location --request DELETE '<endpoint>/contentsafety/text/blocklists/<your_list_name>?api-version=2024-09-01' \
15771577
--header 'Ocp-Apim-Subscription-Key: <enter_your_key_here>' \
15781578
--header 'Content-Type: application/json' \
15791579
```

articles/ai-services/content-safety/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ To use the Content Safety APIs, you must create your Azure AI Content Safety res
156156
| Australia East || || |||||||
157157
| Canada East | | || |||||||
158158
| Central US | | || |||||||
159-
| East US || |||||||||
159+
| East US || |||||||||
160160
| East US 2 | ||| |||||||
161161
| France Central | ||| |||||||
162162
| Japan East | | || |||||||

articles/ai-services/content-safety/quickstart-custom-categories.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,12 @@ To train a custom category, you need example text data that represents the categ
4545
> For tips on creating your own data set, see the [How-to guide](./how-to/custom-categories.md#prepare-your-training-data).
4646
4747
1. Download the [sample text data file](https://github.com/Azure-Samples/cognitive-services-sample-data-files/blob/master/ContentSafety/survival-advice.jsonl) from the GitHub repository.
48-
1. Upload the _.jsonl_ file to your Azure Storage account blob container. Then copy the blob URL to a temporary location for later use.
48+
2. Upload the _.jsonl_ file to your Azure Storage account blob container. Then copy the blob URL to a temporary location for later use.
4949

50+
> [!IMPORTANT]
51+
> **The user's storage account is set up as a hierarchical namespace account, which cannot be supported by Custom Categories. Please try using a regular storage account instead.**
52+
For example, your blob URL cannot be split into two layers, such as example/example1/, and should only have one layer. For more details, refer to the documentation: [Azure Data Lake Storage hierarchical namespace - Azure Storage](https://learn.microsoft.com/azure/storage/blobs/data-lake-storage-namespace).
53+
>
5054
### Grant storage access
5155

5256
[!INCLUDE [storage-account-access](./includes/storage-account-access.md)]

articles/ai-services/content-safety/whats-new.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ The groundedness detection API includes a correction feature that automatically
4545

4646
### New features are GA
4747

48-
The Prompt Shields API and groundedness detection API are now generally available (GA). Follow a quickstart to try them out.
48+
The Prompt Shields API and Protected Material for text API are now generally available (GA). Follow a quickstart to try them out.
4949
* [Prompt Shields quickstart](/azure/ai-services/content-safety/quickstart-jailbreak)
5050
* [Protected Material quickstart](/azure/ai-services/content-safety/quickstart-protected-material?tabs=curl)
5151
## July 2024

articles/ai-services/create-account-bicep.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ keywords: Azure AI services, cognitive solutions, cognitive intelligence, cognit
55
author: eric-urban
66
ms.service: azure-ai-services
77
ms.topic: quickstart
8-
ms.date: 8/1/2024
8+
ms.date: 11/06/2024
99
ms.author: eur
1010
ms.custom:
1111
- subject-armqs

articles/ai-services/document-intelligence/language-support/prebuilt.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ Azure AI Document Intelligence models provide multilingual document processing s
173173
| &bullet; Korean (`ko`) | Korea (`kr`)|
174174
| &bullet; Latvian (`lv`) | Latvia (`lv`)|
175175
| &bullet; Lithuanian (`lt`) | Lithuania (`lt`)|
176-
| &bullet; Macedonian (`mk`) | Macedonia (`mk`)|
176+
| &bullet; Macedonian (`mk`) | North Macedonia (`mk`)|
177177
| &bullet; Malay (`ms`) | Malaysia (`ms`)|
178178
| &bullet; Norwegian (`nb`) | Norway (`no`)|
179179
| &bullet; Polish (`pl`) | Poland (`pl`)|

articles/ai-services/document-intelligence/studio-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ Share custom extraction projects with ease. For more information, see [Project s
206206

207207
Document Intelligence is part of the Azure AI services offerings in the Azure AI Studio. Each of the Azure AI services helps developers and organizations rapidly create intelligent, cutting-edge, market-ready, and responsible applications with out-of-the-box and prebuilt and customizable APIs and models.
208208

209-
Learn how to [connect your AI services hub](../../ai-studio/ai-services/connect-ai-services.md) with AI services and get started using Document Intelligence.
209+
Learn how to [connect your AI services hub](../../ai-studio/ai-services/how-to/connect-ai-services.md) with AI services and get started using Document Intelligence.
210210

211211
## Next steps
212212

0 commit comments

Comments
 (0)