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