LocalAI/backend/python/petals/Makefile

18 lines
296 B
Makefile
Raw Normal View History

.PHONY: petals
petals:
@echo "Creating virtual environment..."
bash install.sh "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."