LocalAI/backend/python/petals/Makefile

11 lines
229 B
Makefile
Raw Normal View History

.PONY: petals
petals:
@echo "Creating virtual environment..."
@conda env create --name petals --file petals.yml
@echo "Virtual environment created."
.PONY: run
run:
@echo "Running petals..."
bash run.sh
@echo "petals run."