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

Hierarchy

Properties

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

Type declaration

  • [key: string]: unknown
  • Optionalfunction_call?: FunctionCall

    Use "tool_calls" field on AIMessages instead

  • Optionaltool_calls?: OpenAIToolCall[]

    Use "tool_calls" field on AIMessages instead

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.