From 996221622d066d6ebc689c92062f1eade1034332 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Sat, 3 Feb 2024 21:40:29 +0000 Subject: [PATCH] chore(release): 1.1.0 [skip ci] ## [1.1.0](https://github.com/svange/openbrain/compare/v1.0.6...v1.1.0) (2024-02-03) ### Features * adding optional initial_context dictionary to agent creation, allowing for information like initiating user's information to be injected into the agent's memory. ([0e8feaa](https://github.com/svange/openbrain/commit/0e8feaa9b6b0da1de74ff76eba44200b739de070)) * adding optional initial_context dictionary to agent creation, allowing for information like initiating user's information to be injected into the agent's memory. ([fa751c5](https://github.com/svange/openbrain/commit/fa751c5f80b0910e0a11a96ea60d97c07ddf9334)) --- CHANGELOG.md | 8 ++++++++ openbrain/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c70da0..5bb0b23 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.0](https://github.com/svange/openbrain/compare/v1.0.6...v1.1.0) (2024-02-03) + + +### Features + +* adding optional initial_context dictionary to agent creation, allowing for information like initiating user's information to be injected into the agent's memory. ([0e8feaa](https://github.com/svange/openbrain/commit/0e8feaa9b6b0da1de74ff76eba44200b739de070)) +* adding optional initial_context dictionary to agent creation, allowing for information like initiating user's information to be injected into the agent's memory. ([fa751c5](https://github.com/svange/openbrain/commit/fa751c5f80b0910e0a11a96ea60d97c07ddf9334)) + ## [1.0.6](https://github.com/svange/openbrain/compare/v1.0.5...v1.0.6) (2024-01-16) diff --git a/openbrain/__init__.py b/openbrain/__init__.py index 807a3d2..9ab35c6 100644 --- a/openbrain/__init__.py +++ b/openbrain/__init__.py @@ -1,4 +1,4 @@ -__version__ = "1.0.6" +__version__ = "1.1.0" # import os # from pathlib import Path diff --git a/pyproject.toml b/pyproject.toml index ff2e2b2..c5ecdb1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "openbrain" -version = "1.0.6" +version = "1.1.0" description = "A package to interact with generative AI and build specialized generative AI workflows. This project is dual-licensed under AGPL-3.0 and a separate commercial license." authors = ["Samuel Vange <7166607+svange@users.noreply.github.com>"] readme = "README.md"