From a9a875ee2b2e98379581a860677b7ceae3a48e02 Mon Sep 17 00:00:00 2001 From: Ettore Di Giacinto Date: Mon, 17 Apr 2023 21:34:02 +0200 Subject: [PATCH] :arrow_up: Bump llama.cpp (#33) Signed-off-by: mudler --- Dockerfile | 2 +- Makefile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4d08cb7..9c29712 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ ARG GO_VERSION=1.20 ARG DEBIAN_VERSION=11 FROM golang:$GO_VERSION as builder WORKDIR /build -ARG GO_LLAMA_CPP_TAG=llama.cpp-2f7c8e0 +ARG GO_LLAMA_CPP_TAG=llama.cpp-4ad7313 RUN git clone -b $GO_LLAMA_CPP_TAG --recurse-submodules https://github.com/go-skynet/go-llama.cpp RUN cd go-llama.cpp && make libbinding.a COPY go.mod ./ diff --git a/Makefile b/Makefile index ce3827a..96703c7 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ GOCMD=go GOTEST=$(GOCMD) test GOVET=$(GOCMD) vet BINARY_NAME=llama-cli -GOLLAMA_VERSION?=llama.cpp-8b67998 +GOLLAMA_VERSION?=llama.cpp-4ad7313 GREEN := $(shell tput -Txterm setaf 2) YELLOW := $(shell tput -Txterm setaf 3) @@ -49,4 +49,4 @@ help: ## Show this help. @awk 'BEGIN {FS = ":.*?## "} { \ if (/^[a-zA-Z_-]+:.*?##.*$$/) {printf " ${YELLOW}%-20s${GREEN}%s${RESET}\n", $$1, $$2} \ else if (/^## .*$$/) {printf " ${CYAN}%s${RESET}\n", substr($$1,4)} \ - }' $(MAKEFILE_LIST) \ No newline at end of file + }' $(MAKEFILE_LIST)