defaultModel property

String get defaultModel

Model used when the configuration does not specify one.

Implementation

String get defaultModel => switch (this) {
      AiProviderKind.openai => 'gpt-4o-mini',
      AiProviderKind.anthropic => 'claude-opus-5',
    };