diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ca220e..df635fa 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.1.78] + +### Added + +- Grammar based sampling via LlamaGrammar which can be passed to completions +- Make n_gpu_layers == -1 offload all layers + ## [0.1.77] - (llama.cpp) Update llama.cpp add support for LLaMa 2 70B diff --git a/pyproject.toml b/pyproject.toml index c636d5d..8735b60 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "llama_cpp_python" -version = "0.1.77" +version = "0.1.78" description = "Python bindings for the llama.cpp library" authors = ["Andrei Betlen "] license = "MIT" diff --git a/setup.py b/setup.py index 74040d5..bdc5a2e 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( description="A Python wrapper for llama.cpp", long_description=long_description, long_description_content_type="text/markdown", - version="0.1.77", + version="0.1.78", author="Andrei Betlen", author_email="abetlen@gmail.com", license="MIT",