mirror of
https://github.com/mudler/LocalAI.git
synced 2026-09-12 22:33:54 -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>
17 lines
216 B
Makefile
17 lines
216 B
Makefile
.PHONY: all run test protogen-clean clean
|
|
|
|
all:
|
|
bash install.sh
|
|
|
|
run: all
|
|
bash run.sh
|
|
|
|
test:
|
|
bash test.sh
|
|
|
|
protogen-clean:
|
|
$(RM) backend_pb2.py backend_pb2_grpc.py
|
|
|
|
clean: protogen-clean
|
|
rm -rf __pycache__ venv
|