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

Hierarchy

Properties

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

The ID of the message to remove.

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

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