mirror of
https://github.com/lordmathis/llamactl.git
synced 2025-11-06 00:54:23 +00:00
10 lines
211 B
Go
10 lines
211 B
Go
package backends
|
|
|
|
type BackendType string
|
|
|
|
const (
|
|
BackendTypeLlamaCpp BackendType = "llama_cpp"
|
|
BackendTypeMlxLm BackendType = "mlx_lm"
|
|
// BackendTypeMlxVlm BackendType = "mlx_vlm" // Future expansion
|
|
)
|