Skip to content

Commit d35d5ab

Browse files
committed
Merge branch 'diberry/0906-tts' of https://github.com/diberry/azure-ai-docs-pr into diberry/0906-tts
2 parents 0a30556 + 79562bc commit d35d5ab

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

articles/ai-services/openai/includes/text-to-speech-javascript.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ Your app's _package.json_ file will be updated with the dependencies.
124124

125125
// Required Azure OpenAI deployment name and API version
126126
const deploymentName = "tts";
127-
const apiVersion = "2024-07-01-preview";
127+
const apiVersion = "2024-08-01-preview";
128128

129129
function getClient() {
130130
return new AzureOpenAI({
@@ -190,7 +190,7 @@ Your app's _package.json_ file will be updated with the dependencies.
190190
191191
// Required Azure OpenAI deployment name and API version
192192
const deploymentName = "tts";
193-
const apiVersion = "2024-07-01-preview";
193+
const apiVersion = "2024-08-01-preview";
194194
195195
function getClient(): AzureOpenAI {
196196
return new AzureOpenAI({

articles/ai-services/openai/includes/whisper-javascript.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ Your app's _package.json_ file will be updated with the dependencies.
129129
const apiKey = process.env["AZURE_OPENAI_API_KEY"] || "<api key>";
130130

131131
// Required Azure OpenAI deployment name and API version
132-
const apiVersion = "2024-07-01-preview";
132+
const apiVersion = "2024-08-01-preview";
133133
const deploymentName = "whisper";
134134

135135
function getClient() {
@@ -180,7 +180,7 @@ Your app's _package.json_ file will be updated with the dependencies.
180180
const apiKey = process.env["AZURE_OPENAI_API_KEY"] || "<api key>";
181181
182182
// Required Azure OpenAI deployment name and API version
183-
const apiVersion = "2024-07-01-preview";
183+
const apiVersion = "2024-08-01-preview";
184184
const deploymentName = "whisper";
185185
186186
function getClient(): AzureOpenAI {

0 commit comments

Comments
 (0)