diff --git a/CHANGELOG.md b/CHANGELOG.md index 04103e3b..25ebcd68 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,20 @@ 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-08 + +### Changed + +- Jitter sleep times in together ai wrapper. This may improve speed. +- Change AllSimilarMemories component so that it no longer weights retrieval by recency or importance. This will make it function more like its name suggests it should. Note that many agents use this component so their behavior may change as a result of this change. +- make default observations summary time frame be 24h +- Add seed parameter to all simulations, propagating it into sample_parameters + +### Fixed + +- Fix together AI api + + ## [1.8.2] - 2024-10-01 ### Changed diff --git a/setup.py b/setup.py index e92186ce..04e228ec 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.2', + version='1.8.3', license='Apache 2.0', license_files=['LICENSE'], url='https://github.com/google-deepmind/concordia',