Skip to content

Commit cfa0f88

Browse files
authored
Merge pull request #278001 from MicrosoftDocs/main
6/12/2024 AM Publish
2 parents 493d5d3 + 1026564 commit cfa0f88

File tree

150 files changed

+1790
-352
lines changed

Some content is hidden

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

150 files changed

+1790
-352
lines changed

.openpublishing.redirection.virtual-desktop.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -419,6 +419,11 @@
419419
"source_path_from_root": "/articles/virtual-desktop/troubleshoot-getting-started.md",
420420
"redirect_url": "/azure/virtual-desktop/troubleshoot-quickstart",
421421
"redirect_document_id": true
422+
},
423+
{
424+
"source_path_from_root": "/articles/virtual-desktop/fslogix-containers-azure-files.md",
425+
"redirect_url": "/azure/virtual-desktop/fslogix-profile-containers",
426+
"redirect_document_id": true
422427
}
423428
]
424429
}

articles/ai-services/document-intelligence/containers/image-tags.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ The following containers support DocumentIntelligence v3.0 models and features:
6161

6262
Document Intelligence container images can be found within the [**Microsoft Artifact Registry** (also know as Microsoft Container Registry(MCR))](https://mcr.microsoft.com/catalog?search=document%20intelligence), the primary registry for all Microsoft published container images.
6363

64-
The following containers support DocumentIntelligence v3.0 models and features:
64+
The following containers support DocumentIntelligence v3.1 models and features:
6565

6666
| Container name |image |
6767
|---|---|

articles/ai-services/openai/faq.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ metadata:
77
manager: nitinme
88
ms.service: azure-ai-openai
99
ms.topic: faq
10-
ms.date: 04/24/2024
10+
ms.date: 06/12/2024
1111
ms.author: mbullwin
1212
author: mrbullwinkle
1313
title: Azure OpenAI Service frequently asked questions
@@ -228,6 +228,11 @@ sections:
228228
What are the known limitations of GPT-4 Turbo with Vision?
229229
answer: |
230230
See the [limitations](./concepts/gpt-with-vision.md#limitations) section of the GPT-4 Turbo with Vision concepts guide.
231+
- question: |
232+
I keep getting truncated responses when I use GPT-4 Turbo vision models. Why is this happening?
233+
answer:
234+
By default GPT-4 `vision-preview` and GPT-4 `turbo-2024-04-09` have a `max_tokens` value of 16. Depending on your request this value is often too low and can lead to truncated responses. To resolve this issue, pass a larger `max_tokens` value as part of your chat completions API requests. GPT-4o defaults to 4096 max_tokens.
235+
231236
- name: Assistants
232237
questions:
233238
- question: |

articles/ai-services/openai/quotas-limits.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.custom:
1010
- ignite-2023
1111
- references_regions
1212
ms.topic: conceptual
13-
ms.date: 06/05/2024
13+
ms.date: 06/12/2024
1414
ms.author: mbullwin
1515
---
1616

@@ -46,6 +46,7 @@ The following sections provide you with a quick guide to the default quotas and
4646
| Max file size for Assistants & fine-tuning | 512 MB |
4747
| Assistants token limit | 2,000,000 token limit |
4848
| GPT-4o max images per request (# of images in the messages array/conversation history) | 10 |
49+
| GPT-4 `vision-preview` & GPT-4 `turbo-2024-04-09` default max tokens | 16 <br><br> Increase the `max_tokens` parameter value to avoid truncated responses. GPT-4o max tokens defaults to 4096. |
4950

5051
## Regional quota limits
5152

articles/ai-services/openai/whats-new.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ This article provides a summary of the latest releases and major documentation u
2424

2525
* GPT-4o is now also available in:
2626
- Sweden Central for standard regional deployment.
27-
- Korea Central, Sweden Central, Switzerland North, & West US 3 for provisioned deployment.
27+
- Japan East, Korea Central, Sweden Central, Switzerland North, & West US 3 for provisioned deployment.
2828

2929
For the latest information on model availability, see the [models page](./concepts/models.md).
3030

articles/ai-services/speech-service/batch-transcription-create.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -265,13 +265,13 @@ You can make a [Models_ListBaseModels](/rest/api/speechtotext/models/list-base-m
265265
Make an HTTP GET request as shown in the following example for the `eastus` region. Replace `YourSubscriptionKey` with your Speech resource key. Replace `eastus` if you're using a different region.
266266

267267
```azurecli-interactive
268-
curl -v -X GET "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/models/base" -H "Ocp-Apim-Subscription-Key: YourSubscriptionKey"
268+
curl -v -X GET "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.2/models/base" -H "Ocp-Apim-Subscription-Key: YourSubscriptionKey"
269269
```
270270

271271
By default, only the 100 oldest base models are returned. Use the `skip` and `top` query parameters to page through the results. For example, the following request returns the next 100 base models after the first 100.
272272

273273
```azurecli-interactive
274-
curl -v -X GET "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/models/base?skip=100&top=100" -H "Ocp-Apim-Subscription-Key: YourSubscriptionKey"
274+
curl -v -X GET "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.2/models/base?skip=100&top=100" -H "Ocp-Apim-Subscription-Key: YourSubscriptionKey"
275275
```
276276

277277
::: zone-end
@@ -280,7 +280,7 @@ curl -v -X GET "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.2-pre
280280
Make sure that you set the [configuration variables](spx-basics.md#create-a-resource-configuration) for a Speech resource in one of the supported regions. You can run the `spx csr list --base` command to get available base models for all locales.
281281

282282
```azurecli
283-
spx csr list --base --api-version v3.2-preview.2
283+
spx csr list --base --api-version v3.2
284284
```
285285

286286
::: zone-end
@@ -289,9 +289,9 @@ The `displayName` property of a Whisper model contains "Whisper" as shown in thi
289289

290290
```json
291291
{
292-
"self": "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/models/base/e418c4a9-9937-4db7-b2c9-8afbff72d950",
292+
"self": "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.2/models/base/e418c4a9-9937-4db7-b2c9-8afbff72d950",
293293
"links": {
294-
"manifest": "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/models/base/e418c4a9-9937-4db7-b2c9-8afbff72d950/manifest"
294+
"manifest": "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.2/models/base/e418c4a9-9937-4db7-b2c9-8afbff72d950/manifest"
295295
},
296296
"properties": {
297297
"deprecationDates": {
@@ -333,20 +333,20 @@ curl -v -X POST -H "Ocp-Apim-Subscription-Key: YourSubscriptionKey" -H "Content-
333333
"locale": "en-US",
334334
"displayName": "My Transcription",
335335
"model": {
336-
"self": "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/models/base/d9cbeee6-582b-47ad-b5c1-6226583c92b6"
336+
"self": "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.2/models/base/d9cbeee6-582b-47ad-b5c1-6226583c92b6"
337337
},
338338
"properties": {
339339
"wordLevelTimestampsEnabled": true,
340340
},
341-
}' "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/transcriptions"
341+
}' "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.2/transcriptions"
342342
```
343343

344344
::: zone-end
345345

346346
::: zone pivot="speech-cli"
347347

348348
```azurecli
349-
spx batch transcription create --name "My Transcription" --language "en-US" --content https://crbn.us/hello.wav;https://crbn.us/whatstheweatherlike.wav --model "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/models/base/d9cbeee6-582b-47ad-b5c1-6226583c92b6" --api-version v3.2-preview.2
349+
spx batch transcription create --name "My Transcription" --language "en-US" --content https://crbn.us/hello.wav;https://crbn.us/whatstheweatherlike.wav --model "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.2/models/base/d9cbeee6-582b-47ad-b5c1-6226583c92b6" --api-version v3.2
350350
```
351351

352352
::: zone-end

articles/ai-services/speech-service/embedded-speech.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ Follow these steps to install the Speech SDK for Java using Apache Maven:
131131
<dependency>
132132
<groupId>com.microsoft.cognitiveservices.speech</groupId>
133133
<artifactId>client-sdk-embedded</artifactId>
134-
<version>1.37.0</version>
134+
<version>1.38.0</version>
135135
</dependency>
136136
</dependencies>
137137
</project>
@@ -152,7 +152,7 @@ Be sure to use the `@aar` suffix when the dependency is specified in `build.grad
152152

153153
```
154154
dependencies {
155-
implementation 'com.microsoft.cognitiveservices.speech:client-sdk-embedded:1.37.0@aar'
155+
implementation 'com.microsoft.cognitiveservices.speech:client-sdk-embedded:1.38.0@aar'
156156
}
157157
```
158158
::: zone-end

articles/ai-services/speech-service/includes/quickstarts/captioning/java.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Before you can do anything, you need to [install the Speech SDK](~/articles/ai-s
4343
<dependency>
4444
<groupId>com.microsoft.cognitiveservices.speech</groupId>
4545
<artifactId>client-sdk</artifactId>
46-
<version>1.37.0</version>
46+
<version>1.38.0</version>
4747
</dependency>
4848
</dependencies>
4949
</project>

articles/ai-services/speech-service/includes/quickstarts/platform/cpp-requirements.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ Install the [Microsoft Visual C++ Redistributable for Visual Studio 2015, 2017,
2020
> [!CAUTION]
2121
> This article references CentOS, a Linux distribution that is nearing End Of Life (EOL) status. Please consider your use and planning accordingly. For more information, see the [CentOS End Of Life guidance](~/articles/virtual-machines/workloads/centos/centos-end-of-life.md).
2222
23-
The Speech SDK for C++ only supports the following distributions on the x86 (Debian/Ubuntu), x64, ARM32 (Debian/Ubuntu), and ARM64 (Debian/Ubuntu) architectures:
23+
The Speech SDK for C++ only supports the following distributions on the x64, ARM32 (Debian/Ubuntu), and ARM64 (Debian/Ubuntu) architectures:
2424

25-
- Ubuntu 18.04/20.04
26-
- Debian 10/11
27-
- Red Hat Enterprise Linux (RHEL) 7/8
25+
- Ubuntu 20.04/22.04
26+
- Debian 11/12
27+
- Red Hat Enterprise Linux (RHEL) 7
2828
- CentOS 7
2929

3030
[!INCLUDE [Linux distributions](linux-distributions.md)]

articles/ai-services/speech-service/includes/quickstarts/platform/csharp-requirements.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ Install the [Microsoft Visual C++ Redistributable for Visual Studio 2015, 2017,
2222

2323
The Speech SDK for C# only supports the following distributions on the x64, ARM32 (Debian/Ubuntu), and ARM64 (Debian/Ubuntu) architectures:
2424

25-
- Ubuntu 18.04/20.04
26-
- Debian 10/11
27-
- Red Hat Enterprise Linux (RHEL) 7/8
25+
- Ubuntu 20.04/22.04
26+
- Debian 11/12
27+
- Red Hat Enterprise Linux (RHEL) 7
2828
- CentOS 7
2929

3030
[!INCLUDE [Linux distributions](linux-distributions.md)]

0 commit comments

Comments
 (0)