mirror of
https://github.com/mudler/LocalAI.git
synced 2026-01-17 02:41:14 -05:00
* feat(backends): add moonshine backend for faster transcription Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * Add backend to CI, update AGENTS.md from this exercise Signed-off-by: Ettore Di Giacinto <mudler@localai.io> --------- Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
16 lines
240 B
Makefile
16 lines
240 B
Makefile
.DEFAULT_GOAL := install
|
|
|
|
.PHONY: install
|
|
install:
|
|
bash install.sh
|
|
|
|
.PHONY: protogen-clean
|
|
protogen-clean:
|
|
$(RM) backend_pb2_grpc.py backend_pb2.py
|
|
|
|
.PHONY: clean
|
|
clean: protogen-clean
|
|
rm -rf venv __pycache__
|
|
|
|
test: install
|
|
bash test.sh
|