mirror of
https://github.com/mudler/LocalAI.git
synced 2026-09-13 14:56:11 -04:00
Adds FunASR/SenseVoice as a Python backend for speech-to-text with support for CPU, CUDA 12/13, ROCm, Intel SYCL, L4T, and Apple MPS. Co-authored-by: xingyifeng <xingyifeng@users.noreply.github.com>
24 lines
362 B
Makefile
24 lines
362 B
Makefile
.PHONY: funasr
|
|
funasr:
|
|
bash install.sh
|
|
|
|
.PHONY: run
|
|
run: funasr
|
|
@echo "Running funasr..."
|
|
bash run.sh
|
|
@echo "funasr run."
|
|
|
|
.PHONY: test
|
|
test: funasr
|
|
@echo "Testing funasr..."
|
|
bash test.sh
|
|
@echo "funasr tested."
|
|
|
|
.PHONY: protogen-clean
|
|
protogen-clean:
|
|
$(RM) backend_pb2_grpc.py backend_pb2.py
|
|
|
|
.PHONY: clean
|
|
clean: protogen-clean
|
|
rm -rf venv __pycache__
|