Skip to main content

Type Alias: GatewayInferenceInputFunctionToolCallOutput

type GatewayInferenceInputFunctionToolCallOutput = {
id?: string;
type: "function_call_output";
call_id: string;
output: string;
status?: "in_progress" | "completed" | "incomplete";
};

Defined in: src/models/ai-gateway-inference.ts:3328

Portkey FunctionToolCallOutput; strict modeled input with explicit JSON extension maps.

Example​

`GatewayInferenceInputFunctionToolCallOutputSchema.parse(value);`

Properties​

id?​

optional id?: string;

Defined in: src/models/ai-gateway-inference.ts:3329


type​

type: "function_call_output";

Defined in: src/models/ai-gateway-inference.ts:3330


call_id​

call_id: string;

Defined in: src/models/ai-gateway-inference.ts:3331


output​

output: string;

Defined in: src/models/ai-gateway-inference.ts:3332


status?​

optional status?: "in_progress" | "completed" | "incomplete";

Defined in: src/models/ai-gateway-inference.ts:3333