diff --git a/CHANGELOG.md b/CHANGELOG.md index 0cdcc09..53195c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # LM Format Enforcer Changelog +## v0.9.7 +- [#93] Improved JSONSchemaParser performance, unit tests run twice as fast! Joint effort with [Ari Weinstein](https://github.com/AriX). Thanks! + + ## v0.9.6 - [#88] ExllamaV2 optimizations - Bugfix in ExllamaV2 sample notebook that generated garbage data after the response. diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 4e4ea1d..d9a2141 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -9,6 +9,7 @@ * [Josh C](https://github.com/JoshC8C7) (Bug fixes) * [Brian Dashore](https://github.com/bdashore3) (ExLlamaV2 improvements) * [turboderp](https://github.com/turboderp) (ExLlamaV2 improvements) +* [Ari Weinstein](https://github.com/AriX) (JSONSchemaParser performance improvements) ## I would like to join this list. How can I help the project? diff --git a/pyproject.toml b/pyproject.toml index eabdcd6..694d1d5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "lm-format-enforcer" -version = "0.9.6" +version = "0.9.7" description = "Enforce the output format (JSON Schema, Regex etc) of a language model" authors = ["Noam Gat "] license = "MIT"