FunctionCallOutputItemParam interface
The output of a function tool call.
- Extends
Properties
| call_id | The unique ID of the function tool call generated by the model. |
| id | The unique ID of the function tool call output item. |
| output | Text, image, or file output of the function tool call. |
| status | The status of item. One of |
| type | The type of the function tool call output. Always |
Property Details
call_id
The unique ID of the function tool call generated by the model.
call_id: string
Property Value
string
id
The unique ID of the function tool call output item.
id?: string
Property Value
string
output
Text, image, or file output of the function tool call.
output: string | (InputTextContentParam | InputImageContentParamAutoParam | InputFileContentParam)[]
Property Value
string | (InputTextContentParam | InputImageContentParamAutoParam | InputFileContentParam)[]
status
The status of item. One of in_progress, completed, or incomplete. Populated when items are returned via API.
status?: FunctionCallItemStatus
Property Value
type
The type of the function tool call output. Always function_call_output.
type: "function_call_output"
Property Value
"function_call_output"