- Remove unnecessary `pass` in HindsightError - Add `Callable` return type annotations to create/register functions - Use lazy logger formatting instead of f-strings - Add test-ag2-integration CI job in test.yml - Add ag2 to release-integration.sh valid integrations
5 lines
136 B
Python
5 lines
136 B
Python
"""Hindsight-AG2 error types."""
|
|
|
|
|
|
class HindsightError(Exception):
|
|
"""Exception raised when a Hindsight memory operation fails."""
|