From 3cd25b33037fd822da26d858920ebca4ec8aafe8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niklas=20K=C3=B6hnecke?= <155443293+NiklasKoehneckeAA@users.noreply.github.com> Date: Thu, 10 Oct 2024 13:47:06 +0200 Subject: [PATCH] feat: release 7.0.0 (#1073) --- CHANGELOG.md | 15 ++++++++++++++- pyproject.toml | 2 +- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f9cff0d9..148e9cb9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,25 @@ # Changelog ## Unreleased + +### Features +... +### Fixes +... +### Deprecations +... +### Breaking Changes +... + + +## 7.0.0 + ### Features - You can now specify a `hybrid_index` when creating an index for the document index to use hybrid (semantic and keyword) search. - `min_score` and `max_results` are now optional parameters in `DocumentIndexClient.SearchQuery`. - `k` is now an optional parameter in `DocumentIndexRetriever`. - List all indexes of a namespace with `DocumentIndexClient.list_indexes`. - Remove an index from a namespace with `DocumentIndexClient.delete_index`. -- `ChatModel` now inherits from `ControlModel`. +- `ChatModel` now inherits from `ControlModel`. Although we recommend to use the new chat interface, you can use the `Pharia1ChatModel` with tasks that rely on `ControlModel` now. ### Fixes - `DocumentIndexClient` now properly sets `chunk_overlap` when creating an index configuration. diff --git a/pyproject.toml b/pyproject.toml index f25ae2d5..5f5d1a40 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "intelligence-layer" -version = "6.0.0" +version = "7.0.0" description = "" authors = ["Aleph Alpha Engineering "] readme = "README.md"