The file /Users/neog/Apps/macOS/GhostWriter/GhostWriter/App/Constants.swift has been updated. Here's the result of running `cat -n` on a snippet of the edited file: 1→import Foundation 2→ 3→enum AppConstants { 4→ enum AI { 5→ static let defaultClaudeModel = "claude-sonnet-4-20250514" 6→ static let timeout: TimeInterval = 120 7→ static let maxRetries = 3 8→ static let retryBaseDelay: TimeInterval = 2.0 9→ static let maxTokens = 4000 10→ static let temperature = 0.7 11→ } 12→ 13→ enum Cache { 14→ static let maxSize = 500 15→ static let ttlSeconds: TimeInterval = 86400 // 24 hours 16→ } 17→ 18→ enum Hooks { 19→ static let defaultDatabaseSize = 500 20→ static let maxCustomHooks = 100 21→ } 22→ 23→ enum Style { 24→ static let minSamplesForAnalysis = 3 25→ static let maxSamplesForAnalysis = 20 26→ static let accuracyTargetPercent = 99.0 27→ } 28→ 29→ enum App { 30→ static let name = "GhostWriter" 31→ static let version = "1.0.0" 32→ static let bundleId = "com.neog.GhostWriter" 33→ } 34→} 35→