Skip to main content

aura_2_es

Creates, updates, deletes, gets or lists an aura_2_es resource.

Overview

Nameaura_2_es
TypeResource
Idcloudflare.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:

NameAccessible byRequired ParamsOptional ParamsDescription
workers_ai_post_run_cf_deepgram_aura_2_esinsertaccount_id, textqueueRequest, tagsRuns 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.

NameDatatypeDescription
account_idstringThe Cloudflare account ID.
queueRequeststring
tagsstring

INSERT examples

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 }}'
;