Interface ChatSession

interface ChatSession {
    id: string;
    isActive: boolean;
    model: ChatModel;
    title?: string;
}

Properties

Properties

id: string
isActive: boolean
model: ChatModel
title?: string