LocalAI/backend/python/petals/Makefile
Ettore Di Giacinto b7821361c3
feat(petals): add backend (#1350)
* feat(petals): add backend

Signed-off-by: Ettore Di Giacinto <mudler@localai.io>

* fixups

---------

Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
2023-11-28 09:01:46 +01:00

11 lines
229 B
Makefile

.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."