Interface AgentSettings

interface AgentSettings {
    completionNotification?: NotificationType;
    enable?: boolean;
    languageModelRequirements?: LanguageModelRequirement[];
    selectedVariants?: Record<string, string>;
}

Properties

completionNotification?: NotificationType

Configuration for completion notifications when the agent finishes a task. If undefined, defaults to 'off'.

enable?: boolean
languageModelRequirements?: LanguageModelRequirement[]
selectedVariants?: Record<string, string>

A mapping of main template IDs to their selected variant IDs. If a main template is not present in this mapping, it means the main template is used.