Skip to content

Commit

Permalink
initalize
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanMarten committed Dec 14, 2024
1 parent 081ddff commit d40f4ab
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class StatusTracker:
max_tokens_per_minute: int = 0
pbar: tqdm = field(default=None)
response_cost: float = 0
time_of_last_rate_limit_error: float = field(default=None)
time_of_last_rate_limit_error: float = field(default=time.time() - SECONDS_TO_PAUSE_ON_RATE_LIMIT)

def __str__(self):
return (
Expand Down

0 comments on commit d40f4ab

Please sign in to comment.