mirror of
https://github.com/mudler/LocalAI.git
synced 2026-02-01 18:22:57 -05:00
26 lines
404 B
Makefile
26 lines
404 B
Makefile
.DEFAULT_GOAL := install
|
|
|
|
.PHONY: qwen-asr
|
|
qwen-asr:
|
|
bash install.sh
|
|
|
|
.PHONY: run
|
|
run: qwen-asr
|
|
@echo "Running qwen-asr..."
|
|
bash run.sh
|
|
@echo "qwen-asr run."
|
|
|
|
.PHONY: test
|
|
test: qwen-asr
|
|
@echo "Testing qwen-asr..."
|
|
bash test.sh
|
|
@echo "qwen-asr tested."
|
|
|
|
.PHONY: protogen-clean
|
|
protogen-clean:
|
|
$(RM) backend_pb2_grpc.py backend_pb2.py
|
|
|
|
.PHONY: clean
|
|
clean: protogen-clean
|
|
rm -rf venv __pycache__
|