From 1615eb9e5b74fe00eaa065520796b1af18c94557 Mon Sep 17 00:00:00 2001 From: Andrei Betlen Date: Mon, 10 Jun 2024 11:05:45 -0400 Subject: [PATCH 1/2] feat: 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 5795b94..fd5ea0f 160000 --- a/vendor/llama.cpp +++ b/vendor/llama.cpp @@ -1 +1 @@ -Subproject commit 5795b941827fdec6c1662986de962badff456718 +Subproject commit fd5ea0f897ecb3659d6c269ef6f3d833e865ead7 From 86a38ad4a02933fc7a1d86dac865b790dd7da1e6 Mon Sep 17 00:00:00 2001 From: Andrei Betlen Date: Mon, 10 Jun 2024 11:14:33 -0400 Subject: [PATCH 2/2] chore: Bump version --- CHANGELOG.md | 7 +++++++ llama_cpp/__init__.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1b9865d..7b19985 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.78] + +- feat: Update llama.cpp to ggerganov/llama.cpp@fd5ea0f897ecb3659d6c269ef6f3d833e865ead7 +- fix: Avoid duplicate special tokens in chat formats by @CISC in #1439 +- fix: fix logprobs when BOS is not present by @ghorbani in #1471 +- feat: adding rpc_servers parameter to Llama class by @chraac in #1477 + ## [0.2.77] - feat: Update llama.cpp to ggerganov/llama.cpp@bde7cd3cd949c1a85d3a199498ac98e78039d46f diff --git a/llama_cpp/__init__.py b/llama_cpp/__init__.py index 3df249f..5dd2b43 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.77" \ No newline at end of file +__version__ = "0.2.78" \ No newline at end of file