aura_1
Creates, updates, deletes, gets or lists an aura_1 resource.
Overview
| Name | aura_1 |
| Type | Resource |
| Id | cloudflare.ai.aura_1 |
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_1 | insert | account_id, text | queueRequest, tags | Runs inference on the @cf/deepgram/aura-1 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_1
- Manifest
Runs inference on the @cf/deepgram/aura-1 model.
INSERT INTO cloudflare.ai.aura_1 (
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_1
props:
- name: account_id
value: "{{ account_id }}"
description: Required parameter for the aura_1 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: ['angus', 'asteria', 'arcas', 'orion', 'orpheus', 'athena', 'luna', 'zeus', 'perseus', 'helios', 'hera', 'stella']
default: angus
- name: text
value: "{{ text }}"
description: |
The text content to be converted to speech
- name: queueRequest
value: "{{ queueRequest }}"
- name: tags
value: "{{ tags }}"