mirror of
https://github.com/mudler/LocalAI.git
synced 2024-06-07 19:40:48 +00:00
9e653d6abe
feat(mamba): Initial import This is a first iteration of the mamba backend, loosely based on mamba-chat(https://github.com/havenhq/mamba-chat).
16 lines
236 B
Makefile
16 lines
236 B
Makefile
.PHONY: mamba
|
|
mamba:
|
|
$(MAKE) -C ../common-env/transformers
|
|
bash install.sh
|
|
|
|
.PHONY: run
|
|
run:
|
|
@echo "Running mamba..."
|
|
bash run.sh
|
|
@echo "mamba run."
|
|
|
|
.PHONY: test
|
|
test:
|
|
@echo "Testing mamba..."
|
|
bash test.sh
|
|
@echo "mamba tested."
|