feat: updated agent harness

This commit is contained in:
DESKTOP-RTLN3BA\$punk 2026-04-28 09:22:19 -07:00
parent 9ec9b64348
commit 31a372bb84
139 changed files with 12583 additions and 1111 deletions

View file

@ -33,7 +33,7 @@ F = TypeVar("F", bound=Callable)
def _is_retryable(exc: BaseException) -> bool:
if isinstance(exc, ConnectorError):
return exc.retryable
return bool(isinstance(exc, (httpx.TimeoutException, httpx.ConnectError)))
return bool(isinstance(exc, httpx.TimeoutException | httpx.ConnectError))
def build_retry(