interface Message {
    id: string;
    role: Role;
    content: string;
    timestamp: number;
    actions?: ContextAction[];
}

Properties

id: string
role: Role
content: string
timestamp: number
actions?: ContextAction[]