Search + K

Command Palette

Search for a command to run...

Sign In

Execute @cf/meta/llama-3.2-11b-vision-instruct model.

POST /accounts/{account_id}/ai/run/@cf/meta/llama-3.2-11b-vision-instruct
Copy endpoint
https://api.cloudflare.com/client/v4

Parameters

path Path Parameters

Name Type
account_id required
string

query Query Parameters

Name Type
queueRequest
string

Request Body

application/json
{
frequency_penalty?: number;
image?: number[] | string;
lora?: string;
max_tokens?: number;
presence_penalty?: number;
prompt: string;
raw?: boolean;
repetition_penalty?: number;
seed?: number;
stream?: boolean;
temperature?: number;
top_k?: number;
top_p?: number;
}
| {
frequency_penalty?: number;
functions?: { code: string;name: string; }[];
image?: number[] | string;
max_tokens?: number;
messages: { content?: { image_url?: { ... };text?: string;type?: string; } | { image_url?: { ... };text?: string;type?: string; }[] | string;role?: string;tool_call_id?: string; }[];
presence_penalty?: number;
repetition_penalty?: number;
seed?: number;
stream?: boolean;
temperature?: number;
tools?: ({ description: string;name: string;parameters: { properties: { ... };required?: string[];type: string; }; } | { function: { description: string;name: string;parameters: { ... }; };type: string; })[];
top_k?: number;
top_p?: number;
}

Responses

200 application/json

Object with user data.

{}

Client Errors

400 application/json

Bad request

{ errors: { code: string;message: string; }[];result: {};success: boolean; }