interface ToolMessageFieldsWithToolCallId {
    content: MessageContent;
    tool_call_id: string;
    additional_kwargs?: {
        function_call?: FunctionCall;
        tool_calls?: ToolCall[];
        [key: string]: unknown;
    };
    id?: string;
    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

id?: string

An optional unique identifier for the message. This should ideally be provided by the provider/model which created the message.

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

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

Generated using TypeDoc