version bump
This commit is contained in:
parent
58c0739cfc
commit
1643518b50
10
CHANGELOG.md
10
CHANGELOG.md
|
|
@ -5,6 +5,16 @@ 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.16.1] 2025-03-07
|
||||
|
||||
### Changed
|
||||
- Replaced thread-local storage with contextvars in agent_context.py for better context isolation
|
||||
- Improved React agent execution with LangGraph's interrupt mechanism
|
||||
- Enhanced _run_agent_stream function to properly handle agent state and continuation
|
||||
|
||||
### Fixed
|
||||
- Fixed tests to work with the new implementation
|
||||
|
||||
## [0.16.0] 2025-03-07
|
||||
|
||||
### Added
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
"""Version information."""
|
||||
|
||||
__version__ = "0.16.0"
|
||||
__version__ = "0.16.1"
|
||||
|
|
|
|||
|
|
@ -151,7 +151,8 @@ def test_create_agent_anthropic(mock_model, mock_config_repository):
|
|||
mock_react.assert_called_once_with(
|
||||
mock_model,
|
||||
[],
|
||||
interrupt_after=['tools'],
|
||||
interrupt_before=['agent', 'tools'],
|
||||
interrupt_after=['agent', 'tools'],
|
||||
version="v2",
|
||||
state_modifier=mock_react.call_args[1]["state_modifier"],
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in New Issue