From 33d8f18bff12e8b144251eb6667573727329d720 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Thu, 31 Oct 2024 13:16:19 -0400 Subject: [PATCH] refactor: Update Gemini provider to handle conversation-based completions and add structured response --- CHANGELOG.md | 5 +++++ docs/conf.py | 2 +- pyproject.toml | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e44fa1..4be162e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ Release History =============== +## 0.1.5 (2024-10-31) + +- Add Gemini provider. +- Add structured response to Gemini provider. + ## 0.1.4 (2024-10-30) - Introduce `Session` class to manage repeatability. diff --git a/docs/conf.py b/docs/conf.py index 67328fc..fc21e82 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -16,7 +16,7 @@ import simplemind project = "simplemind" copyright = "2024 Kenneth Reitz" author = "Kenneth Reitz" -release = "v0.1.4" +release = "v0.1.5" # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/pyproject.toml b/pyproject.toml index 8c287c4..93be072 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "simplemind" -version = "0.1.4" +version = "0.1.5" description = "An experimental client for AI providers that intends to replace LangChain and LangGraph for most common use cases." readme = "README.md" requires-python = ">=3.10"