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

Hierarchy (view full)

Properties

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

Type declaration

response_metadata?: Record<string, any>

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

Generated using TypeDoc