Version bump.
This commit is contained in:
parent
e3d0de332f
commit
23dfc024e3
25
CHANGELOG.md
25
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/),
|
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).
|
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
|
## [0.13.2] - 2025-02-02
|
||||||
|
|
||||||
- Fix temperature parameter error for expert tool.
|
- Fix temperature parameter error for expert tool.
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,3 @@
|
||||||
"""Version information."""
|
"""Version information."""
|
||||||
|
|
||||||
__version__ = "0.13.2"
|
__version__ = "0.14.0"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue