diff --git a/CHANGELOG.md b/CHANGELOG.md index 85ef012..d91e272 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.8.27] - 2024-11-06 + +### Added + +- Missing stop and prediction properties (OpenAI, Anthropic) + ## [0.8.26] - 2024-11-04 ### Fixed @@ -273,7 +279,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Upgrade OpenAI chat models: **gpt-4-0125-preview**, **gpt-3.5-turbo-0125** -[0.8.26]: https://github.com/carlrobertoh/llm-client/compare/a315976138c73fbfcc00dfdcfa6ffbea01c0c6dd...HEAD +[0.8.27]: https://github.com/carlrobertoh/llm-client/compare/84b2d6204381e7eb4aa7c0504b7f0c46ee87f880...HEAD +[0.8.26]: https://github.com/carlrobertoh/llm-client/compare/a315976138c73fbfcc00dfdcfa6ffbea01c0c6dd...84b2d6204381e7eb4aa7c0504b7f0c46ee87f880 [0.8.25]: https://github.com/carlrobertoh/llm-client/compare/aad0d7187cbc1d2d1f46efd0f0d929ca74357764...a315976138c73fbfcc00dfdcfa6ffbea01c0c6dd [0.8.24]: https://github.com/carlrobertoh/llm-client/compare/9c8a34339402d765d83f50273b1fa02c2a4a4b2c...aad0d7187cbc1d2d1f46efd0f0d929ca74357764 [0.8.23]: https://github.com/carlrobertoh/llm-client/compare/488583ec3c6b47d75d309bd9381a048743f9c891...9c8a34339402d765d83f50273b1fa02c2a4a4b2c diff --git a/README.md b/README.md index 56aa85c..fd6acde 100644 --- a/README.md +++ b/README.md @@ -12,13 +12,13 @@ To use the package, you need to use following Maven dependency: ee.carlrobert llm-client - 0.8.26 + 0.8.27 ``` Gradle dependency: ```kts dependencies { - implementation("ee.carlrobert:llm-client:0.8.26") + implementation("ee.carlrobert:llm-client:0.8.27") } ``` diff --git a/build.gradle.kts b/build.gradle.kts index 40b909e..f9b73e1 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -7,7 +7,7 @@ plugins { } group = "ee.carlrobert" -version = "0.8.26" +version = "0.8.27" repositories { mavenCentral()