From bad93f9c8e27c9995139abaea613c2e991784a2f Mon Sep 17 00:00:00 2001 From: "Joel Z. Leibo" Date: Sat, 19 Oct 2024 14:41:07 -0700 Subject: [PATCH] Increment version number to 1.8.4 PiperOrigin-RevId: 687685421 Change-Id: Ieb9cbe95b6705a6edbf985ff00823ff9e158221a --- CHANGELOG.md | 25 +++++++++++++++++++++++++ setup.py | 2 +- 2 files changed, 26 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 25ebcd68..7e0f3234 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,31 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/). +## [1.8.3] - 2024-10-19 + +### Changed + +- Allow conversation game master to be configured with memory and additional components +- Prevent daily_activities component from adding irrelevant info to memory and improve some of the time_and_place setting prompts. +- Add deprecation warning to the Sequential component +- together and mistral language model wrappers to no longer delete after last ".". +- Improve together.ai language model wrapper. +- disable pytype on a kwargs unpack +- Forward device and api_key only when explicitly specified. + +### Added + +- Add support for custom cloud models (google cloud custom models) +- added instructions in the comment for finding relevant endpoint info. Defaulting location to "us-central1". +- Add agreement tracker contrib component. +- Add state_formation environment +- Add basic_agent_without_plan and use it in a scenario for state_formation. + +### Fixed + +- Fixes a bug in inventory and schelling payoffs components, which previously crashed if player_action_attempt had ': ' in its text. + + ## [1.8.3] - 2024-10-08 ### Changed diff --git a/setup.py b/setup.py index 04e228ec..72c6327e 100644 --- a/setup.py +++ b/setup.py @@ -33,7 +33,7 @@ def _remove_excluded(description: str) -> str: setuptools.setup( name='gdm-concordia', - version='1.8.3', + version='1.8.4', license='Apache 2.0', license_files=['LICENSE'], url='https://github.com/google-deepmind/concordia',