The file /Users/neog/Apps/iOS/AI-KeywordMonitor/App/Constants.swift has been updated. Here's the result of running `cat -n` on a snippet of the edited file: 380→ } 381→ } 382→} 383→ 384→// MARK: - AI Provider (Claude Only) 385→ 386→/// Claude AI provider configuration 387→enum AIProvider: String, CaseIterable, Identifiable { 388→ case claude = "Claude (Anthropic)" 389→ 390→ var id: String { rawValue } 391→ 392→ var baseURL: String { 393→ AppConstants.AI.baseURL 394→ } 395→ 396→ var defaultModel: String { 397→ AppConstants.AI.defaultModel 398→ } 399→ 400→ var icon: String { 401→ "brain.head.profile" 402→ } 403→ 404→ var description: String { 405→ "API Claude (Anthropic)" 406→ } 407→ 408→ /// Available Claude models 409→ static let availableModels = [ 410→ "claude-sonnet-4-20250514", 411→ "claude-haiku-3-5-20241022" 412→ ] 413→ 414→ /// Model display names 415→ static func displayName(for model: String) -> String { 416→ switch model { 417→ case "claude-sonnet-4-20250514": return "Claude Sonnet 4" 418→ case "claude-haiku-3-5-20241022": return "Claude Haiku 3.5" 419→ default: return model 420→ } 421→ } 422→} 423→