@agentfield/sdk 0.1.54 → 0.1.55-rc.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -1365,12 +1365,12 @@ var StatelessRateLimiter = class {
1365
1365
  _consecutiveFailures = 0;
1366
1366
  _circuitOpenTime;
1367
1367
  constructor(options = {}) {
1368
- this.maxRetries = options.maxRetries ?? 20;
1369
- this.baseDelay = options.baseDelay ?? 1;
1370
- this.maxDelay = options.maxDelay ?? 300;
1368
+ this.maxRetries = options.maxRetries ?? 5;
1369
+ this.baseDelay = options.baseDelay ?? 0.5;
1370
+ this.maxDelay = options.maxDelay ?? 30;
1371
1371
  this.jitterFactor = options.jitterFactor ?? 0.25;
1372
- this.circuitBreakerThreshold = options.circuitBreakerThreshold ?? 10;
1373
- this.circuitBreakerTimeout = options.circuitBreakerTimeout ?? 300;
1372
+ this.circuitBreakerThreshold = options.circuitBreakerThreshold ?? 5;
1373
+ this.circuitBreakerTimeout = options.circuitBreakerTimeout ?? 30;
1374
1374
  this._containerSeed = this._getContainerSeed();
1375
1375
  }
1376
1376
  _getContainerSeed() {