diff --git a/Makefile b/Makefile index 67387fa..19f93d1 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,21 @@ +# Default RERANKING Model is BAAI/bge-reranker-large from huggingface +export RERANKING_MODEL_PATH ?= BAAI/bge-reranker-large .PHONY: lint lint: @python -m pip install --upgrade pip @python -m pip install -e './libs/core/.[dev]' @pylint -d all -e E0602 ./libs/ - @black . \ No newline at end of file + @black . + +.PHONY: install +install: + @pip install -e libs/core/ + @pip install -e libs/cli/ + +.PHONY: server +server: install + @kubeagi-cli serve + + +