You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(adk): add Unwrap support to WillRetryError for error chain inspe…
…ction (#707)
- Add unexported 'err' field to WillRetryError to store original error
- Implement Unwrap() method for errors.Is/errors.As support
- Update genErrWrapper to populate the err field
- Add comprehensive documentation explaining field design rationale
- Add test for Unwrap functionality with custom error type
The err field is unexported because Gob serialization would fail for
unregistered concrete error types. End-users only need the original
error when AgentEvent first occurs, not after checkpoint restore.
feat(adk): Improve filesystem backend fields comments and add validat…
…ion to write method (#687)
feat(adk): Improve comments and add validation to Write function