Type Alias: GatewayInferenceInputComputerToolCall
type GatewayInferenceInputComputerToolCall = {
type: "computer_call";
id: string;
call_id: string;
action: GatewayInferenceInputComputerAction;
pending_safety_checks: GatewayInferenceInputComputerToolCallSafetyCheck[];
status: "in_progress" | "completed" | "incomplete";
};
Defined in: src/models/ai-gateway-inference.ts:3036
Portkey ComputerToolCall; strict modeled input with explicit JSON extension maps.
Example
`GatewayInferenceInputComputerToolCallSchema.parse(value);`
Properties
type
type: "computer_call";
Defined in: src/models/ai-gateway-inference.ts:3037
id
id: string;
Defined in: src/models/ai-gateway-inference.ts:3038
call_id
call_id: string;
Defined in: src/models/ai-gateway-inference.ts:3039
action
action: GatewayInferenceInputComputerAction;
Defined in: src/models/ai-gateway-inference.ts:3040
pending_safety_checks
pending_safety_checks: GatewayInferenceInputComputerToolCallSafetyCheck[];
Defined in: src/models/ai-gateway-inference.ts:3041
status
status: "in_progress" | "completed" | "incomplete";
Defined in: src/models/ai-gateway-inference.ts:3042