Skip to main content

whisper_large_v3_turbo

Creates, updates, deletes, gets or lists a whisper_large_v3_turbo resource.

Overview

Namewhisper_large_v3_turbo
TypeResource
Idcloudflare.ai.whisper_large_v3_turbo

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_openai_whisper_large_v3_turboinsertaccount_id, audioqueueRequest, tagsRuns inference on the @cf/openai/whisper-large-v3-turbo 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/openai/whisper-large-v3-turbo model.

INSERT INTO cloudflare.ai.whisper_large_v3_turbo (
audio,
beam_size,
compression_ratio_threshold,
condition_on_previous_text,
hallucination_silence_threshold,
initial_prompt,
language,
log_prob_threshold,
no_speech_threshold,
prefix,
task,
vad_filter,
account_id,
queueRequest,
tags
)
SELECT
'{{ audio }}' /* required */,
{{ beam_size }},
{{ compression_ratio_threshold }},
{{ condition_on_previous_text }},
{{ hallucination_silence_threshold }},
'{{ initial_prompt }}',
'{{ language }}',
{{ log_prob_threshold }},
{{ no_speech_threshold }},
'{{ prefix }}',
'{{ task }}',
{{ vad_filter }},
'{{ account_id }}',
'{{ queueRequest }}',
'{{ tags }}'
;