defaultModel static method

String defaultModel(
  1. ApiProviderType type
)

Implementation

static String defaultModel(ApiProviderType type) => switch (type) {
  ApiProviderType.gemini => 'gemini-2.5-flash',
  ApiProviderType.qwen => 'qwen-plus',
  ApiProviderType.openai => 'gpt-4o',
  ApiProviderType.deepseek => 'deepseek-chat',
  ApiProviderType.anthropic => 'claude-sonnet-4-20250514',
  ApiProviderType.ollama => 'llama3.1',
  _ => 'gpt-4o',
};