Files
mlx-swift-examples/Applications/LLMEval/LLMEvalApp.swift
David Koski b41f14fba7 add LLM evaluator example
- runs on iOS and macOS
- downloads a model / tokenizer from hugging face
- evaluates the given prompt
2024-03-01 16:10:00 -08:00

13 lines
173 B
Swift

// Copyright © 2024 Apple Inc.
import SwiftUI
@main
struct LLMEvalApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}