defaultBaseUrl property

String get defaultBaseUrl

Endpoint used when the configuration does not specify one.

Implementation

String get defaultBaseUrl => switch (this) {
      AiProviderKind.openai => 'https://api.openai.com/v1',
      AiProviderKind.anthropic => 'https://api.anthropic.com',
    };