From 969ea6a2c029964175316dd71e4497f241fcc6a4 Mon Sep 17 00:00:00 2001 From: Andrei Betlen Date: Wed, 27 Dec 2023 17:33:26 -0500 Subject: [PATCH 1/2] Update llama.cpp --- vendor/llama.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendor/llama.cpp b/vendor/llama.cpp index 708e179..f679349 160000 --- a/vendor/llama.cpp +++ b/vendor/llama.cpp @@ -1 +1 @@ -Subproject commit 708e179e8562c2604240df95a2241dea17fd808b +Subproject commit f6793491b5af6da75edad34d6f503ef86d31b09f From 011c3630f5a130505458c29d58f1654d5efba3bf Mon Sep 17 00:00:00 2001 From: Andrei Betlen Date: Wed, 27 Dec 2023 17:35:02 -0500 Subject: [PATCH 2/2] Bump version --- CHANGELOG.md | 4 ++++ llama_cpp/__init__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 13454a3..228e3b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.26] + +- feat: Update llama.cpp to ggerganov/llama.cpp@f6793491b5af6da75edad34d6f503ef86d31b09f + ## [0.2.25] - feat(server): Multi model support by @D4ve-R in #931 diff --git a/llama_cpp/__init__.py b/llama_cpp/__init__.py index 8521e77..5db4664 100644 --- a/llama_cpp/__init__.py +++ b/llama_cpp/__init__.py @@ -1,4 +1,4 @@ from .llama_cpp import * from .llama import * -__version__ = "0.2.25" \ No newline at end of file +__version__ = "0.2.26" \ No newline at end of file