Interface ChatSession

interface ChatSession {
    id: string;
    isActive: boolean;
    lastInteraction?: Date;
    model: ChatModel;
    pinnedAgent?: ChatAgent;
    title?: string;
}

Properties

id: string
isActive: boolean
lastInteraction?: Date
model: ChatModel
pinnedAgent?: ChatAgent
title?: string