interface ToolMessageFieldsWithToolCallId {
    content: MessageContent;
    tool_call_id: string;
    additional_kwargs?: {
        function_call?: FunctionCall;
        tool_calls?: ToolCall[];
        [key: string]: unknown;
    };
    name?: string;
    response_metadata?: Record<string, any>;
}

Hierarchy (view full)

Properties

tool_call_id: string
additional_kwargs?: {
    function_call?: FunctionCall;
    tool_calls?: ToolCall[];
    [key: string]: unknown;
}

Type declaration

name?: string
response_metadata?: Record<string, any>

Response metadata. For example: response headers, logprobs, token counts.

Generated using TypeDoc