Skip to main content

speeches

Creates, updates, deletes, gets or lists a speeches resource.

Overview

Namespeeches
TypeResource
Idopenai.audio.speeches

Fields

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

NameAccessible byRequired ParamsDescription
create_speechINSERTdata__input, data__model, data__voice

INSERT example

Use the following StackQL query and manifest file to create a new speeches resource.

/*+ create */
INSERT INTO openai.audio.speeches (
data__model,
data__input,
data__voice,
data__response_format,
data__speed
)
SELECT
'{{ model }}',
'{{ input }}',
'{{ voice }}',
'{{ response_format }}',
'{{ speed }}'
;