Mayson Monorepo Documentation
    Preparing search index...

    Interface IConversationSummary

    Conversation summary for long-term AI memory Stores summarized context from deleted messages

    interface IConversationSummary {
        _id?: string;
        userId: string;
        summary: string;
        messageCount: number;
        periodStart: Date;
        periodEnd: Date;
        createdAt: Date;
        updatedAt: Date;
    }
    Index

    Properties

    _id?: string
    userId: string

    User ID

    summary: string

    AI-generated summary of conversation

    messageCount: number

    Number of messages included in this summary

    periodStart: Date

    Start date of the summarized period

    periodEnd: Date

    End date of the summarized period

    createdAt: Date

    When the summary was created

    updatedAt: Date

    When the summary was last updated