From 23dfc024e343fbfc3a71365be41a27fb4653584c Mon Sep 17 00:00:00 2001 From: AI Christianson Date: Wed, 12 Feb 2025 18:09:38 -0500 Subject: [PATCH] Version bump. --- CHANGELOG.md | 25 +++++++++++++++++++++++++ ra_aid/__version__.py | 2 +- 2 files changed, 26 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ad4f21..623f202 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,31 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.14.0] - 2025-02-12 + +### Added +- Status panel showing tool/LLM status and outputs +- Automatic detection of OpenAI expert models +- Timeouts on LLM clients + +### Changed +- Improved interactive TTY process capture and history handling +- Upgraded langgraph dependencies +- Improved prompts and work logging +- Refined token/bytes ratio handling +- Support default temperature on per-model basis +- Reduced tool count for more reliable tool calling +- Updated logo and branding assets +- Set environment variables to disable common interactive modes + +### Fixed +- Various test fixes +- Bug fixes for completion message handling and file content operations +- Interactive command input improvements +- Use reasoning_effort=high for OpenAI expert models +- Do not default to o1 model (#82) +- Make current working directory and date available to more agents + ## [0.13.2] - 2025-02-02 - Fix temperature parameter error for expert tool. diff --git a/ra_aid/__version__.py b/ra_aid/__version__.py index a179b38..ff2f19d 100644 --- a/ra_aid/__version__.py +++ b/ra_aid/__version__.py @@ -1,3 +1,3 @@ """Version information.""" -__version__ = "0.13.2" +__version__ = "0.14.0"