Files
mlx-swift-examples/Libraries/LLM/LLMModel.swift
2024-02-22 10:41:02 -08:00

13 lines
273 B
Swift

// Copyright © 2024 Apple Inc.
import Foundation
import MLX
import MLXNN
// Interface for all LLM Models
public protocol LLMModel: Module {
func callAsFunction(_ inputs: MLXArray, cache: [(MLXArray, MLXArray)]?) -> (
MLXArray, [(MLXArray, MLXArray)]
)
}