Increase rate limiting to 15s (5 req/min quota compliance)

This commit is contained in:
2025-12-31 10:28:18 +01:00
parent 6daf686954
commit a4e3906c3b
2 changed files with 4 additions and 4 deletions

View File

@@ -146,7 +146,7 @@ def run_generation():
else:
stats['failed'] += 1
time.sleep(2) # Rate limiting
time.sleep(15) # Rate limiting (5 req/min limit)
# Generate styleB
stats['total'] += 1
@@ -164,7 +164,7 @@ def run_generation():
progress = (stats['total'] / manifest['remaining']) * 100
print(f"\n📊 Progress: {progress:.1f}% | Success: {stats['success']} | Failed: {stats['failed']}")
time.sleep(2) # Rate limiting
time.sleep(15) # Rate limiting (5 req/min limit)
# Final summary
print("\n" + "="*70)