From 0fe12b0ea18be8cbc47f5e60862510f95aea2ea9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20=C3=81ngel=20Gonz=C3=A1lez=20Santamarta?= Date: Thu, 28 Nov 2024 15:08:09 +0100 Subject: [PATCH] llama.cpp updated --- llama_cpp_vendor/CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/llama_cpp_vendor/CMakeLists.txt b/llama_cpp_vendor/CMakeLists.txt index 3d65f56..fac5583 100644 --- a/llama_cpp_vendor/CMakeLists.txt +++ b/llama_cpp_vendor/CMakeLists.txt @@ -11,10 +11,11 @@ find_package(ament_cmake REQUIRED) FetchContent_Declare( llama GIT_REPOSITORY https://github.com/ggerganov/llama.cpp.git - GIT_TAG b4195 + GIT_TAG b4206 ) option(LLAMA_BUILD_COMMON "llama: build common utils library" ON) +option(LLAMA_CURL "llama: use libcurl to download model from an URL" ON) FetchContent_MakeAvailable(llama)