Skip to content

Commit 2d44b4e

Browse files
authored
Merge pull request #271331 from eric-urban/eur/quick-refresh
quick docs refresh
2 parents 1021dd8 + 48ea08e commit 2d44b4e

File tree

6 files changed

+14
-13
lines changed

6 files changed

+14
-13
lines changed

articles/ai-services/openai/reference.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1191,6 +1191,8 @@ The operation returns a `204` status code if successful. This API only succeeds
11911191

11921192
## Speech to text
11931193

1194+
You can use a Whisper model in Azure OpenAI Service for speech to text transcription or speech translation. For more information about using a Whisper model, see the [quickstart](./whisper-quickstart.md) and [the Whisper model overview](../speech-service/whisper-overview.md).
1195+
11941196
### Request a speech to text transcription
11951197

11961198
Transcribes an audio file.
@@ -1220,7 +1222,7 @@ POST https://{your-resource-name}.openai.azure.com/openai/deployments/{deploymen
12201222

12211223
| Parameter | Type | Required? | Default | Description |
12221224
|--|--|--|--|--|
1223-
| ```file```| file | Yes | N/A | The audio file object (not file name) to transcribe, in one of these formats: `flac`, `mp3`, `mp4`, `mpeg`, `mpga`, `m4a`, `ogg`, `wav`, or `webm`.<br/><br/>The file size limit for the Azure OpenAI Whisper model is 25 MB. If you need to transcribe a file larger than 25 MB, break it into chunks. Alternatively you can use the Azure AI Speech [batch transcription](../speech-service/batch-transcription-create.md#use-a-whisper-model) API.<br/><br/>You can get sample audio files from the [Azure AI Speech SDK repository at GitHub](https://github.com/Azure-Samples/cognitive-services-speech-sdk/tree/master/sampledata/audiofiles). |
1225+
| ```file```| file | Yes | N/A | The audio file object (not file name) to transcribe, in one of these formats: `flac`, `mp3`, `mp4`, `mpeg`, `mpga`, `m4a`, `ogg`, `wav`, or `webm`.<br/><br/>The file size limit for the Whisper model in Azure OpenAI Service is 25 MB. If you need to transcribe a file larger than 25 MB, break it into chunks. Alternatively you can use the Azure AI Speech [batch transcription](../speech-service/batch-transcription-create.md#use-a-whisper-model) API.<br/><br/>You can get sample audio files from the [Azure AI Speech SDK repository at GitHub](https://github.com/Azure-Samples/cognitive-services-speech-sdk/tree/master/sampledata/audiofiles). |
12241226
| ```language``` | string | No | Null | The language of the input audio such as `fr`. Supplying the input language in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format improves accuracy and latency.<br/><br/>For the list of supported languages, see the [OpenAI documentation](https://platform.openai.com/docs/guides/speech-to-text/supported-languages). |
12251227
| ```prompt``` | string | No | Null | An optional text to guide the model's style or continue a previous audio segment. The prompt should match the audio language.<br/><br/>For more information about prompts including example use cases, see the [OpenAI documentation](https://platform.openai.com/docs/guides/speech-to-text/supported-languages). |
12261228
| ```response_format``` | string | No | json | The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt.<br/><br/>The default value is *json*. |

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ To use a Whisper model for batch transcription, you need to set the `model` prop
257257
> [!IMPORTANT]
258258
> For Whisper models, you should always use [version 3.2](./migrate-v3-1-to-v3-2.md) of the speech to text API.
259259
260-
Whisper models by batch transcription are supported in the East US, Southeast Asia, and West Europe regions.
260+
Whisper models by batch transcription are supported in the Australia East, Central US, East US, North Central US, South Central US, Southeast Asia, and West Europe regions.
261261

262262
::: zone pivot="rest-api"
263263
You can make a [Models_ListBaseModels](https://westus.dev.cognitive.microsoft.com/docs/services/speech-to-text-api-v3-2-preview2/operations/Models_ListBaseModels) request to get available base models for all locales.

articles/ai-services/speech-service/whisper-overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ Whisper Model via Azure AI Speech might be best for:
6060
- Customization of the Whisper base model to improve accuracy for your scenario (coming soon)
6161

6262
Regional support is another consideration.
63-
- The Whisper model via Azure OpenAI Service is available in the following regions: North Central US and West Europe.
64-
- The Whisper model via Azure AI Speech is available in the following regions: East US, Southeast Asia, and West Europe.
63+
- The Whisper model via Azure OpenAI Service is available in the following regions: EastUS 2, India South, North Central, Norway East, Sweden Central, and West Europe.
64+
- The Whisper model via Azure AI Speech is available in the following regions: Australia East, Central US, East US, North Central US, South Central US, Southeast Asia, and West Europe.
6565

6666
## Next steps
6767

articles/ai-studio/how-to/generate-data-qa.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ In this article, you learn how to get question and answer pairs from your source
2222
## Install the Synthetics Package
2323

2424
```shell
25-
python --version # ensure you've >=3.8
25+
python --version # use version 3.8 or later
2626
pip3 install azure-identity azure-ai-generative
2727
pip3 install wikipedia langchain nltk unstructured
2828
```

articles/ai-studio/toc.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -178,18 +178,18 @@ items:
178178
displayName: endpoint
179179
- name: Deploy Azure OpenAI models
180180
href: how-to/deploy-models-openai.md
181-
- name: Deploy Llama 2 family models
182-
href: how-to/deploy-models-llama.md
183-
displayName: maas, as a service
184-
- name: Deploy Mistral family models
185-
href: how-to/deploy-models-mistral.md
186-
displayName: maas, as a service
187181
- name: Deploy Cohere models
188182
items:
189183
- name: Deploy Cohere Command models
190184
href: how-to/deploy-models-cohere-command.md
191185
- name: Deploy Cohere Embed models
192186
href: how-to/deploy-models-cohere-embed.md
187+
- name: Deploy Llama 2 family models
188+
href: how-to/deploy-models-llama.md
189+
displayName: maas
190+
- name: Deploy Mistral family models
191+
href: how-to/deploy-models-mistral.md
192+
displayName: maas
193193
- name: Deploy open models
194194
href: how-to/deploy-models-open.md
195195
displayName: oss, open source

articles/ai-studio/tutorials/deploy-copilot-ai-studio.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -413,8 +413,7 @@ Now that you have your evaluation dataset, you can evaluate your flow by followi
413413
1. Select a model to use for evaluation. In this example, select **gpt-35-turbo-16k**. Then select **Next**.
414414

415415
> [!NOTE]
416-
> Evaluation with AI-assisted metrics needs to call another GPT model to do the calculation. For best performance, use a GPT-4 or gpt-35-turbo-16k model. If you didn't previously deploy a GPT-4 or gpt-35-turbo-16k model, you can deploy another model by following the steps in [Deploy a chat model](#deploy-a-chat-model). Then return to this step and select the model you deployed.
417-
> The evaluation process may take up lots of tokens, so it's recommended to use a model which can support >=16k tokens.
416+
> Evaluation with AI-assisted metrics needs to call another GPT model to do the calculation. For best performance, use a model that supports at least 16k tokens such as gpt-4-32k or gpt-35-turbo-16k model. If you didn't previously deploy such a model, you can deploy another model by following the steps in [Deploy a chat model](#deploy-a-chat-model). Then return to this step and select the model you deployed.
418417

419418
1. Select **Add new dataset**. Then select **Next**.
420419

0 commit comments

Comments
 (0)