mirror of
https://github.com/mudler/LocalAI.git
synced 2024-06-07 19:40:48 +00:00
9aa2a7ca13
* tests: add vllm Signed-off-by: Ettore Di Giacinto <mudler@users.noreply.github.com> * tests: Add vall-e-x tests * Add bark tests * bump diffusers --------- Signed-off-by: Ettore Di Giacinto <mudler@users.noreply.github.com>
18 lines
313 B
Makefile
18 lines
313 B
Makefile
.PHONY: ttsbark
|
|
ttsbark:
|
|
@echo "Creating virtual environment..."
|
|
@conda env create --name ttsbark --file ttsbark.yml
|
|
@echo "Virtual environment created."
|
|
|
|
.PHONY: run
|
|
run:
|
|
@echo "Running bark..."
|
|
bash run.sh
|
|
@echo "bark run."
|
|
|
|
.PHONY: test
|
|
test:
|
|
@echo "Testing bark..."
|
|
bash test.sh
|
|
@echo "bark tested."
|