added bedrock V4 support#2
Closed
MatthiasHowellYopp wants to merge 7 commits into
Closed
Conversation
Add fork classmethod, _restore_runtime, and _restore_event_scope to BaseAgent. Fix from_checkpoint to set runtime state on the event bus and restore event scopes. Store kickoff event ID across checkpoints to skip re-emission on resume. Handle agent entity type in checkpoint CLI and TUI.
Gemini thinking models (2.5+, 3.x) require thought_signature on functionCall parts when sent back in conversation history. The streaming path was extracting only name/args into plain dicts, losing the signature. Return raw Part objects (matching the non-streaming path) so the executor preserves them via raw_tool_call_parts.
…#5530) * feat: add Daytona sandbox tools for enhanced functionality - Introduced DaytonaBaseTool as a shared base for tools interacting with Daytona sandboxes. - Added DaytonaExecTool for executing shell commands within a sandbox. - Implemented DaytonaFileTool for managing files (read, write, delete, etc.) in a sandbox. - Created DaytonaPythonTool for running Python code in a sandbox environment. - Updated pyproject.toml to include Daytona as a dependency. * chore: update tool specifications * refactor: enhance error handling and logging in Daytona tools - Added logging for best-effort cleanup failures in DaytonaBaseTool and DaytonaFileTool to aid in debugging. - Improved error message for ImportError in DaytonaPythonTool to provide clearer guidance on SDK compatibility issues. * linted * addressing comment * pinning version * supporting append * chore: update tool specifications --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Added Bedrock Anthropic V4 LLM Support