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

Properties

content: string
id: undefined | string

An optional unique identifier for the message.

name: undefined | string
role: undefined | string
tool_call_id: undefined | string
additional_kwargs?: Record<string, any>
response_metadata?: Record<string, any>

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

Generated using TypeDoc