Skip to main content

m2m100_1_2b

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

Overview

Namem2m100_1_2b
TypeResource
Idcloudflare.ai.m2m100_1_2b

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_meta_m2m100_1_2binsertaccount_idqueueRequest, tagsRuns inference on the @cf/meta/m2m100-1.2b 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/meta/m2m100-1.2b model.

INSERT INTO cloudflare.ai.m2m100_1_2b (
source_lang,
target_lang,
text,
requests,
account_id,
queueRequest,
tags
)
SELECT
'{{ source_lang }}',
'{{ target_lang }}',
'{{ text }}',
'{{ requests }}',
'{{ account_id }}',
'{{ queueRequest }}',
'{{ tags }}'
;