mirror of
https://github.com/mudler/LocalAI.git
synced 2026-09-13 14:56:11 -04:00
Add a dedicated Python gRPC backend for aiola Whisper-Medusa checkpoints, including mono 16 kHz preprocessing, bounded clip validation, CPU/CUDA 12 images, backend gallery metadata, and user documentation. Assisted-by: Codex:gpt-5 Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
15 lines
211 B
Makefile
15 lines
211 B
Makefile
.DEFAULT_GOAL := install
|
|
|
|
.PHONY: install
|
|
install:
|
|
bash install.sh
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
$(RM) backend_pb2_grpc.py backend_pb2.py
|
|
rm -rf venv __pycache__
|
|
|
|
.PHONY: test
|
|
test:
|
|
python3 -m unittest test_unit.py
|