interface StoredMessageData {
    content: 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
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