interface StoredMessageData {
    additional_kwargs?: Record<string, any>;
    content: string;
    id?: string;
    name: undefined | string;
    response_metadata?: Record<string, any>;
    role: undefined | string;
    tool_call_id: undefined | string;
}

Properties

additional_kwargs?: Record<string, any>
content: string
id?: string
name: undefined | string
response_metadata?: Record<string, any>

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

role: undefined | string
tool_call_id: undefined | string