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