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>
19 lines
344 B
Makefile
19 lines
344 B
Makefile
.PHONY: ttsvalle
|
|
ttsvalle:
|
|
@echo "Creating virtual environment..."
|
|
@conda env create --name ttsvalle --file ttsvalle.yml
|
|
@echo "Virtual environment created."
|
|
bash install.sh
|
|
|
|
.PHONY: run
|
|
run:
|
|
@echo "Running ttsvalle..."
|
|
bash run.sh
|
|
@echo "ttsvalle run."
|
|
|
|
.PHONY: test
|
|
test:
|
|
@echo "Testing valle..."
|
|
bash test.sh
|
|
@echo "valle tested."
|