mirror of
https://github.com/h3pdesign/Neon-Vision-Editor
synced 2026-05-03 21:38:20 +00:00
19 lines
369 B
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 }
|
|
}
|