* chore: cleanup, identify goal from conversation when evaluting achievement Signed-off-by: mudler <mudler@localai.io> * change base cpu model Signed-off-by: mudler <mudler@localai.io> * this is not necessary anymore Signed-off-by: mudler <mudler@localai.io> * use 12b Signed-off-by: mudler <mudler@localai.io> * use openthinker, it's smaller * chore(tests): set timeout Signed-off-by: mudler <mudler@localai.io> * Enable reasoning in some of the tests Signed-off-by: mudler <mudler@localai.io> * docker compose unification, small changes Signed-off-by: mudler <mudler@localai.io> * Simplify Signed-off-by: mudler <mudler@localai.io> * Back at arcee-agent as default Signed-off-by: mudler <mudler@localai.io> * Better error handling during planning Signed-off-by: mudler <mudler@localai.io> * Ci: do not run jobs for every branch Signed-off-by: mudler <mudler@localai.io> --------- Signed-off-by: mudler <mudler@localai.io>
33 lines
809 B
Makefile
33 lines
809 B
Makefile
GOCMD?=go
|
|
IMAGE_NAME?=webui
|
|
ROOT_DIR:=$(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
|
|
|
|
prepare-tests:
|
|
docker compose up -d --build
|
|
|
|
cleanup-tests:
|
|
docker compose down
|
|
|
|
tests: prepare-tests
|
|
LOCALAGI_MODEL="arcee-agent" LOCALAI_API_URL="http://localhost:8081" LOCALAGI_API_URL="http://localhost:8080" $(GOCMD) run github.com/onsi/ginkgo/v2/ginkgo --fail-fast -v -r ./...
|
|
|
|
run-nokb:
|
|
$(MAKE) run KBDISABLEINDEX=true
|
|
|
|
webui/react-ui/dist:
|
|
docker run --entrypoint /bin/bash -v $(ROOT_DIR):/app oven/bun:1 -c "cd /app/webui/react-ui && bun install && bun run build"
|
|
|
|
.PHONY: build
|
|
build: webui/react-ui/dist
|
|
$(GOCMD) build -o localagi ./
|
|
|
|
.PHONY: run
|
|
run: webui/react-ui/dist
|
|
$(GOCMD) run ./
|
|
|
|
build-image:
|
|
docker build -t $(IMAGE_NAME) -f Dockerfile.webui .
|
|
|
|
image-push:
|
|
docker push $(IMAGE_NAME)
|