- runs on iOS and macOS - downloads a model / tokenizer from hugging face - evaluates the given prompt
13 lines
173 B
Swift
13 lines
173 B
Swift
// Copyright © 2024 Apple Inc.
|
|
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct LLMEvalApp: App {
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
ContentView()
|
|
}
|
|
}
|
|
}
|