Neon-Vision-Editor/Neon Vision Editor/Models/AIModel.swift

19 lines
369 B
Swift

//
// AIModel.swift
// Neon Vision Editor
//
// Created by Hilthart Pedersen on 06.02.26.
//
import Foundation
// Supported AI providers for suggestions. Extend as needed.
public enum AIModel: String, CaseIterable, Identifiable {
case appleIntelligence
case grok
case openAI
case gemini
case anthropic
public var id: String { rawValue }
}