/**
 * Runtime-only settings for the virtual coach. Not stored in the database.
 */
export interface CoachingAgentSettings {
    type?: "coaching";
    coachedAgentId: string;
    memoryBaseId?: string;
}
