Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
README.md | 2025-09-29 | 801 Bytes | |
v2.18.1 source code.tar.gz | 2025-09-29 | 6.9 MB | |
v2.18.1 source code.zip | 2025-09-29 | 7.6 MB | |
Totals: 3 Items | 14.5 MB | 0 |
Release Notes
v2.18.1
⚡️ Enhancement Notes
- Added tools to agent run parameters to enhance the agent's flexibility. Users can now choose a subset of tools for the agent at runtime by providing a list of tool names, or supply an entirely new set by passing Tool objects or a Toolset.
🐛 Bug Fixes
- Fix Agent
run_async
method to correctly handle async streaming callbacks. This previously triggered errors due to a bug. - Prevent duplication of the last assistant message in the chat history when initializing from an
AgentSnapshot
. - We were setting
response_format
toNone
inOpenAIChatGenerator
by default which doesn't follow the API spec. We now omit the variable ifresponse_format
is not passed by the user.