Mayson Monorepo Documentation
    Preparing search index...

    Interface IChatMessage

    Chat message stored in database

    interface IChatMessage {
        _id?: string;
        userId: string;
        role: "user" | "assistant";
        content: string;
        toolExecutions?: ToolExecution[];
        createdAt: Date;
    }
    Index

    Properties

    _id?: string
    userId: string
    role: "user" | "assistant"
    content: string
    toolExecutions?: ToolExecution[]

    Tool executions that occurred during this response (for agent messages)

    createdAt: Date