From 9a1146cd418307d6695dc4eae8ff70304c6a2598 Mon Sep 17 00:00:00 2001 From: Johannes Wesch <83402561+JohannesWesch@users.noreply.github.com> Date: Tue, 15 Oct 2024 10:51:43 +0200 Subject: [PATCH] release: 7.1.0 (#1085) --- CHANGELOG.md | 20 +++++++++++++------- pyproject.toml | 2 +- 2 files changed, 14 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0954b74e..1614bb08 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,18 +2,26 @@ ## Unreleased ### Features -- Add Catalan and Polish support to `DetectLanguage`. -- Add utility function `run_is_already_computed` to `Runner` to check if a run with the given metadata has already been computed. - - The `parameter_optimization` notebook describes how to use the `run_is_already_computed` function. -### Fixes -- The default `max_retry_time` for the `LimitedConcurrencyClient` is now set to 3 minutes from a day. If you have long-running evaluations that need this, you can re-set a long retry time in the constructor. +... +### Fixes +... ### Deprecations ... ### Breaking Changes ... +## 7.1.0 + +### Features +- Add Catalan and Polish support to `DetectLanguage`. +- Add utility function `run_is_already_computed` to `Runner` to check if a run with the given metadata has already been computed. + - The `parameter_optimization` notebook describes how to use the `run_is_already_computed` function. + +### Fixes +- The default `max_retry_time` for the `LimitedConcurrencyClient` is now set to 3 minutes from a day. If you have long-running evaluations that need this, you can re-set a long retry time in the constructor. + ## 7.0.0 @@ -28,8 +36,6 @@ ### Fixes - `DocumentIndexClient` now properly sets `chunk_overlap` when creating an index configuration. -### Deprecations -... ### Breaking Changes - The default model for `Llama3InstructModel` is now `llama-3.1-8b-instruct` instead of `llama-3-8b-instruct`. We also removed the llama3.0 models from the recommended models of the `Llama3InstructModel`. - The default value of `threshold` in the `DocumentIndexRetriever` has changed from `0.5` to `0.0`. This accommodates fusion scoring for searches over hybrid indexes. diff --git a/pyproject.toml b/pyproject.toml index 15476678..a6cea9c7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "intelligence-layer" -version = "7.0.0" +version = "7.1.0" description = "" authors = ["Aleph Alpha Engineering "] readme = "README.md"