aura_2_en
Creates, updates, deletes, gets or lists an aura_2_en resource.
Overview
| Name | aura_2_en |
| Type | Resource |
| Id | cloudflare.ai.aura_2_en |
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_en | insert | account_id, text | queueRequest, tags | Runs inference on the @cf/deepgram/aura-2-en 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_en
- Manifest
Runs inference on the @cf/deepgram/aura-2-en model.
INSERT INTO cloudflare.ai.aura_2_en (
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_en
props:
- name: account_id
value: "{{ account_id }}"
description: Required parameter for the aura_2_en 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: ['amalthea', 'andromeda', 'apollo', 'arcas', 'aries', 'asteria', 'athena', 'atlas', 'aurora', 'callista', 'cora', 'cordelia', 'delia', 'draco', 'electra', 'harmonia', 'helena', 'hera', 'hermes', 'hyperion', 'iris', 'janus', 'juno', 'jupiter', 'luna', 'mars', 'minerva', 'neptune', 'odysseus', 'ophelia', 'orion', 'orpheus', 'pandora', 'phoebe', 'pluto', 'saturn', 'thalia', 'theia', 'vesta', 'zeus']
default: luna
- name: text
value: "{{ text }}"
description: |
The text content to be converted to speech
- name: queueRequest
value: "{{ queueRequest }}"
- name: tags
value: "{{ tags }}"