Interface ISummary

ISummary interface for providing input to create a Summary instance.

interface ISummary {
    content: string;
    created_at: string;
    metadata?: Record<string, any>;
    recent_message_uuid: string;
    token_count: number;
    uuid: string;
}

Properties

content: string
created_at: string
metadata?: Record<string, any>
recent_message_uuid: string
token_count: number
uuid: string