aura_2_es
Creates, updates, deletes, gets or lists an aura_2_es resource.
Overview
| Name | aura_2_es |
| Type | Resource |
| Id | cloudflare.ai.aura_2_es |
Fields
The following fields are returned by SELECT queries:
SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
workers_ai_post_run_cf_deepgram_aura_2_es | insert | account_id, text | queueRequest, tags | Runs inference on the @cf/deepgram/aura-2-es model. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
account_id | string | The Cloudflare account ID. |
queueRequest | string | |
tags | string |
INSERT examples
- workers_ai_post_run_cf_deepgram_aura_2_es
- Manifest
Runs inference on the @cf/deepgram/aura-2-es model.
INSERT INTO cloudflare.ai.aura_2_es (
bit_rate,
container,
encoding,
sample_rate,
speaker,
text,
account_id,
queueRequest,
tags
)
SELECT
{{ bit_rate }},
'{{ container }}',
'{{ encoding }}',
{{ sample_rate }},
'{{ speaker }}',
'{{ text }}' /* required */,
'{{ account_id }}',
'{{ queueRequest }}',
'{{ tags }}'
;
# Description fields are for documentation purposes
- name: aura_2_es
props:
- name: account_id
value: "{{ account_id }}"
description: Required parameter for the aura_2_es resource.
- name: bit_rate
value: {{ bit_rate }}
description: |
The bitrate of the audio in bits per second. Choose from predefined ranges or specific values based on the encoding type.
- name: container
value: "{{ container }}"
description: |
Container specifies the file format wrapper for the output audio. The available options depend on the encoding type..
valid_values: ['none', 'wav', 'ogg']
- name: encoding
value: "{{ encoding }}"
description: |
Encoding of the output audio.
valid_values: ['linear16', 'flac', 'mulaw', 'alaw', 'mp3', 'opus', 'aac']
- name: sample_rate
value: {{ sample_rate }}
description: |
Sample Rate specifies the sample rate for the output audio. Based on the encoding, different sample rates are supported. For some encodings, the sample rate is not configurable
- name: speaker
value: "{{ speaker }}"
description: |
Speaker used to produce the audio.
valid_values: ['sirio', 'nestor', 'carina', 'celeste', 'alvaro', 'diana', 'aquila', 'selena', 'estrella', 'javier']
default: aquila
- name: text
value: "{{ text }}"
description: |
The text content to be converted to speech
- name: queueRequest
value: "{{ queueRequest }}"
- name: tags
value: "{{ tags }}"