speeches
Creates, updates, deletes, gets or lists a speeches
resource.
Overview
Name | speeches |
Type | Resource |
Id | openai.audio.speeches |
Fields
SELECT
not supported for this resource, use SHOW METHODS
to view available operations for the resource.
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
create_speech | INSERT | data__input, data__model, data__voice |
INSERT
example
Use the following StackQL query and manifest file to create a new speeches
resource.
- Required Properties
- All Properties
- Manifest
/*+ create */
INSERT INTO openai.audio.speeches (
data__model,
data__input,
data__voice,
data__response_format,
data__speed
)
SELECT
'{{ model }}',
'{{ input }}',
'{{ voice }}',
'{{ response_format }}',
'{{ speed }}'
;
/*+ create */
INSERT INTO openai.audio.speeches (
data__model,
data__input,
data__voice
)
SELECT
'{{ model }}',
'{{ input }}',
'{{ voice }}'
;
- name: speeches
props:
- name: data__input
value: string
- name: data__model
value: string
- name: data__voice
value: string
- name: model
value: string
- name: input
value: string
- name: voice
value: string
- name: response_format
value: string
- name: speed
value: number