LocalAI/backend/python/petals/Makefile
2023-12-20 00:04:57 +00:00

15 lines
226 B
Makefile

.PHONY: petals
petals:
$(MAKE) -C ../common-env/transformers
.PHONY: run
run:
@echo "Running petals..."
bash run.sh
@echo "petals run."
.PHONY: test
test:
@echo "Testing petals..."
bash test.sh
@echo "petals tested."