mirror of
https://github.com/mudler/LocalAI.git
synced 2024-06-07 19:40:48 +00:00
13 lines
261 B
Makefile
13 lines
261 B
Makefile
|
.PHONY: exllama2
|
||
|
exllama2:
|
||
|
@echo "Creating virtual environment..."
|
||
|
@conda env create --name exllama2 --file exllama2.yml
|
||
|
@echo "Virtual environment created."
|
||
|
bash install.sh
|
||
|
|
||
|
.PHONY: run
|
||
|
run:
|
||
|
@echo "Running exllama2..."
|
||
|
bash run.sh
|
||
|
@echo "exllama2 run."
|