mirror of
https://github.com/mudler/LocalAI.git
synced 2026-09-13 14:56:11 -04:00
Add a Darwin-only MLX-Video backend for LTX-2 and converted Wan checkpoints, expose it through the existing video API, and wire packaging, discovery, tests, docs, and an example. Assisted-by: Codex:gpt-5 Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
12 lines
265 B
Bash
Executable File
12 lines
265 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# SPDX-License-Identifier: MIT
|
|
set -euo pipefail
|
|
|
|
backend_dir=$(dirname "$0")
|
|
if [ -d "${backend_dir}/common" ]; then
|
|
source "${backend_dir}/common/libbackend.sh"
|
|
else
|
|
source "${backend_dir}/../common/libbackend.sh"
|
|
fi
|
|
startBackend "$@"
|