/**
 * Agent model representing the AI agent that a teacher manages
 */
export interface Agent {
    id: string;
    name: string;
    description?: string;
}
