You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,18 @@
3
3
All notable changes to this project will be documented in this file.
4
4
5
5
The format is based on [Keep a Changelog](http://keepachangelog.com/).
6
+
## 2.94.0 - 2024-09-17
7
+
### Added
8
+
- Support for calling Oracle Cloud Infrastructure services in the eu-crissier-1 region
9
+
- Support for dedicated AI cluster unit shapes in the Generative AI service
10
+
- Support for ticket numbers when creating access requests in the Managed Access service
11
+
- Support for 23ai database, cloud VM clusters and VM cluster patching in the Exadata Fleet Update service
12
+
- Support for text to speech feature in the AI Speech service
13
+
- Support for notifications and transfer of capacity requests in the OCI Control Center service
14
+
15
+
### Breaking Changes
16
+
- The field `occCustomerGroupId` was made mandatory in the models `ListInternalNamespaceOccOverviewsRequest`, `ListOccAvailabilityCatalogsInternalRequest`, and `ListOccCapacityRequestsInternalRequest` in the OCI Control Center service
Copy file name to clipboardExpand all lines: lib/aispeech/lib/client.ts
+149Lines changed: 149 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1404,6 +1404,155 @@ export class AIServiceSpeechClient {
1404
1404
}
1405
1405
}
1406
1406
1407
+
/**
1408
+
* Returns a list of speakers available to the user to choose from based on language code and voice type provided.
1409
+
*
1410
+
* This operation does not retry by default if the user has not defined a retry configuration.
1411
+
* @param ListVoicesRequest
1412
+
* @return ListVoicesResponse
1413
+
* @throws OciError when an error occurs
1414
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/aispeech/ListVoices.ts.html |here} to see how to use ListVoices API.
* Creates an audio for the given input text based on other input parameters like language, voice type, etc.
1483
+
*
1484
+
* This operation does not retry by default if the user has not defined a retry configuration.
1485
+
* @param SynthesizeSpeechRequest
1486
+
* @return SynthesizeSpeechResponse
1487
+
* @throws OciError when an error occurs
1488
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/aispeech/SynthesizeSpeech.ts.html |here} to see how to use SynthesizeSpeech API.
* The OCI Speech Service harnesses the power of spoken language by allowing developers to easily convert file-based data containing human speech into highly accurate text transcriptions.
4
+
* OpenAPI spec version: 20220101
5
+
*
6
+
*
7
+
* NOTE: This class is auto generated by OracleSDKGenerator.
8
+
* Do not edit the class manually.
9
+
*
10
+
* Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved.
11
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
12
+
*/
13
+
14
+
import*asmodelfrom"../model";
15
+
importcommon= require("oci-common");
16
+
17
+
/**
18
+
* Input JSON to get audio inference from TTS Service.
19
+
*/
20
+
exportinterfaceSynthesizeSpeechDetails{
21
+
/**
22
+
* The text input to get the inference audio from TTS Service.
23
+
*/
24
+
"text": string;
25
+
/**
26
+
* If set to true, response will be sent in the chunked transfer-encoding and audio chunks
27
+
* are sent back as and when they are ready. If set to false, response will be sent only once
28
+
* the entire audio is generated.
29
+
*
30
+
*/
31
+
"isStreamEnabled"?: boolean;
32
+
/**
33
+
* The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment where the user has access to call {@code SpeechSynthesize} api. But default user access will be checked at tenancy level.
* The OCI Speech Service harnesses the power of spoken language by allowing developers to easily convert file-based data containing human speech into highly accurate text transcriptions.
4
+
* OpenAPI spec version: 20220101
5
+
*
6
+
*
7
+
* NOTE: This class is auto generated by OracleSDKGenerator.
8
+
* Do not edit the class manually.
9
+
*
10
+
* Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved.
11
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
12
+
*/
13
+
14
+
import*asmodelfrom"../model";
15
+
importcommon= require("oci-common");
16
+
17
+
/**
18
+
* Use this schema to specify handling of audio response.
19
+
* If audioConfig is not provided, raw response is handed over for the user to handle.
0 commit comments