Revert "Add Apple Intelligence provider (Phase 1 — on-device)"

This reverts commit f3a0c45331.
This commit is contained in:
2026-06-16 11:42:51 +02:00
parent f3a0c45331
commit f63226b2cc
7 changed files with 11 additions and 279 deletions
+7 -15
View File
@@ -58,25 +58,17 @@ struct Settings: Codable {
case anthropic
case openai
case ollama
case appleOnDevice = "apple_on_device"
var displayName: String {
switch self {
case .openrouter: return "OpenRouter"
case .anthropic: return "Anthropic"
case .openai: return "OpenAI"
case .ollama: return "Ollama"
case .appleOnDevice: return "Apple Intelligence"
}
rawValue.capitalized
}
var iconName: String {
switch self {
case .openrouter: return "network"
case .anthropic: return "brain"
case .openai: return "sparkles"
case .ollama: return "server.rack"
case .appleOnDevice: return "apple.logo"
case .openrouter: return "network"
case .anthropic: return "brain"
case .openai: return "sparkles"
case .ollama: return "server.rack"
}
}
}