Maybe fix gemini

This commit is contained in:
Colin McDonnell
2025-12-23 18:09:48 -08:00
parent 3f996b4759
commit 8a7db7bba2
3 changed files with 9280 additions and 16278 deletions
+3 -2
View File
@@ -37,11 +37,12 @@ export async function retry<T>(fn: () => Promise<T>, options: RetryOptions = {})
}
const delay = delayMs * attempt;
log.warning(`» ${label} failed (attempt ${attempt}/${maxAttempts}), retrying in ${delay}ms...`);
log.warning(
`» ${label} failed (attempt ${attempt}/${maxAttempts}), retrying in ${delay}ms...`
);
await new Promise((resolve) => setTimeout(resolve, delay));
}
}
throw lastError;
}