mirror of
https://github.com/mudler/LocalAI.git
synced 2024-06-07 19:40:48 +00:00
949da7792d
* deps(conda): use transformers with vllm * join vllm, exllama, exllama2, split petals
18 lines
317 B
Makefile
18 lines
317 B
Makefile
.PHONY: petals
|
|
petals:
|
|
@echo "Creating virtual environment..."
|
|
@conda env create --name petals --file petals.yml
|
|
@echo "Virtual environment created."
|
|
|
|
.PHONY: run
|
|
run:
|
|
@echo "Running petals..."
|
|
bash run.sh
|
|
@echo "petals run."
|
|
|
|
.PHONY: test
|
|
test:
|
|
@echo "Testing petals..."
|
|
bash test.sh
|
|
@echo "petals tested."
|