ant: add missing sleep during backoff (oops!)
diff --git a/ant/ant.go b/ant/ant.go
index 944abcc..0829286 100644
--- a/ant/ant.go
+++ b/ant/ant.go
@@ -335,6 +335,7 @@
// and then add some additional time for backoff.
sleep := time.Minute + backoff[min(attempts, len(backoff)-1)] + time.Duration(rand.Int64N(int64(time.Second)))
slog.WarnContext(ctx, "anthropic_request_rate_limited", "response", string(buf), "sleep", sleep)
+ time.Sleep(sleep)
// case resp.StatusCode == 400:
// TODO: parse ErrorResponse, make (*ErrorResponse) implement error
default: