@juspay/neurolink 12.12.1 → 12.12.2
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.
|
@@ -55,7 +55,7 @@ declare function resetEpochToMs(resetEpoch: number | undefined, now: number): nu
|
|
|
55
55
|
* burst / acceleration limit) is transient: honor retry-after as a floor,
|
|
56
56
|
* allow a couple of jittered same-account retries, then a short cooldown.
|
|
57
57
|
*/
|
|
58
|
-
declare function planCooldownFor429(quota: AccountQuota | null, retryAfterMs: number, now: number, unifiedStatus?: string | undefined, policy?: ProxyOveragePolicy): AccountCooldownPlan;
|
|
58
|
+
declare function planCooldownFor429(quota: AccountQuota | null, retryAfterMs: number, now: number, unifiedStatus?: string | undefined, policy?: ProxyOveragePolicy, requestedModel?: string): AccountCooldownPlan;
|
|
59
59
|
/**
|
|
60
60
|
* Reconcile quota-backed cooldowns against a fresh provider observation. A
|
|
61
61
|
* rejected window parks the account until its reset; an allowed observation for
|
|
@@ -553,6 +553,45 @@ function clampCooldownUntil(untilMs, now, reason) {
|
|
|
553
553
|
const ceiling = Math.min(MAX_COOLDOWN_MS, (reason && MAX_COOLDOWN_MS_BY_REASON[reason]) ?? MAX_COOLDOWN_MS);
|
|
554
554
|
return Math.min(Math.max(untilMs, now + MIN_COOLDOWN_MS), now + ceiling);
|
|
555
555
|
}
|
|
556
|
+
function isAllowedQuotaStatus(status) {
|
|
557
|
+
return status?.trim().toLowerCase() === "allowed";
|
|
558
|
+
}
|
|
559
|
+
function isScopedWindowExhausted(window, now) {
|
|
560
|
+
if (!window || resetEpochToMs(window.resetsAt, now) === undefined) {
|
|
561
|
+
return false;
|
|
562
|
+
}
|
|
563
|
+
return (window.status?.trim().toLowerCase() === "rejected" ||
|
|
564
|
+
(window.used ?? 0) >= 1);
|
|
565
|
+
}
|
|
566
|
+
/**
|
|
567
|
+
* Anthropic represents some model-specific limits through a rejected top-level
|
|
568
|
+
* unified status. The scope window is the authoritative discriminator: only
|
|
569
|
+
* treat that response as model-scoped when both account-wide windows remain
|
|
570
|
+
* explicitly allowed and the requested model's window is exhausted.
|
|
571
|
+
*/
|
|
572
|
+
function getScopedOnlyExhaustion(quota, requestedModel, now, policy = overagePolicy) {
|
|
573
|
+
if (!quota ||
|
|
574
|
+
!requestedModel ||
|
|
575
|
+
!isAllowedQuotaStatus(quota.sessionStatus) ||
|
|
576
|
+
!isAllowedQuotaStatus(quota.weeklyStatus) ||
|
|
577
|
+
isOverageUsable(quota, policy)) {
|
|
578
|
+
return null;
|
|
579
|
+
}
|
|
580
|
+
const scopedWindow = matchScopedQuotaWindow(quota, requestedModel, now);
|
|
581
|
+
return isScopedWindowExhausted(scopedWindow, now) ? scopedWindow : null;
|
|
582
|
+
}
|
|
583
|
+
function hasScopedOnlyExhaustion(quota, now, policy = overagePolicy) {
|
|
584
|
+
if (!isAllowedQuotaStatus(quota.sessionStatus) ||
|
|
585
|
+
!isAllowedQuotaStatus(quota.weeklyStatus) ||
|
|
586
|
+
isOverageUsable(quota, policy)) {
|
|
587
|
+
return false;
|
|
588
|
+
}
|
|
589
|
+
return (quota.windows ?? []).some((window) => window.kind === "weekly_scoped" &&
|
|
590
|
+
typeof window.scopeModel === "string" &&
|
|
591
|
+
now - scopedWindowObservedAt(quota, window) <=
|
|
592
|
+
QUOTA_SNAPSHOT_FRESHNESS_MS &&
|
|
593
|
+
isScopedWindowExhausted(window, now));
|
|
594
|
+
}
|
|
556
595
|
/**
|
|
557
596
|
* Decide how to cool an account after a genuine (non-anti-abuse) 429.
|
|
558
597
|
*
|
|
@@ -567,13 +606,14 @@ function clampCooldownUntil(untilMs, now, reason) {
|
|
|
567
606
|
* burst / acceleration limit) is transient: honor retry-after as a floor,
|
|
568
607
|
* allow a couple of jittered same-account retries, then a short cooldown.
|
|
569
608
|
*/
|
|
570
|
-
function planCooldownFor429(quota, retryAfterMs, now, unifiedStatus = quota?.unifiedStatus, policy = overagePolicy) {
|
|
609
|
+
function planCooldownFor429(quota, retryAfterMs, now, unifiedStatus = quota?.unifiedStatus, policy = overagePolicy, requestedModel) {
|
|
571
610
|
// Weekly exhaustion takes precedence — it's the longest, hardest ceiling.
|
|
572
611
|
if (quota && quota.weeklyStatus === "rejected") {
|
|
573
612
|
const reset = resetEpochToMs(quota.weeklyResetAt, now) ??
|
|
574
613
|
(retryAfterMs > 0 ? now + retryAfterMs : now + DEFAULT_COOLING_PERIOD_MS);
|
|
575
614
|
return {
|
|
576
615
|
reason: "weekly",
|
|
616
|
+
scope: "account",
|
|
577
617
|
coolingUntil: clampCooldownUntil(reset, now, "weekly"),
|
|
578
618
|
rotateImmediately: true,
|
|
579
619
|
};
|
|
@@ -584,10 +624,25 @@ function planCooldownFor429(quota, retryAfterMs, now, unifiedStatus = quota?.uni
|
|
|
584
624
|
(retryAfterMs > 0 ? now + retryAfterMs : now + DEFAULT_COOLING_PERIOD_MS);
|
|
585
625
|
return {
|
|
586
626
|
reason: "session",
|
|
627
|
+
scope: "account",
|
|
587
628
|
coolingUntil: clampCooldownUntil(reset, now, "session"),
|
|
588
629
|
rotateImmediately: true,
|
|
589
630
|
};
|
|
590
631
|
}
|
|
632
|
+
const scopedOnlyExhaustion = getScopedOnlyExhaustion(quota, requestedModel, now, policy);
|
|
633
|
+
if (scopedOnlyExhaustion) {
|
|
634
|
+
const reset = resetEpochToMs(scopedOnlyExhaustion.resetsAt, now) ??
|
|
635
|
+
(retryAfterMs > 0 ? now + retryAfterMs : now + DEFAULT_HARD_COOLDOWN_MS);
|
|
636
|
+
return {
|
|
637
|
+
// Keep the provider's top-level classification for logs, but do not
|
|
638
|
+
// persist it as an account cooldown. The scoped quota window gates only
|
|
639
|
+
// this model on subsequent requests.
|
|
640
|
+
reason: "unified",
|
|
641
|
+
scope: "model",
|
|
642
|
+
coolingUntil: reset,
|
|
643
|
+
rotateImmediately: true,
|
|
644
|
+
};
|
|
645
|
+
}
|
|
591
646
|
// Anthropic may reject the authoritative top-level unified limit while both
|
|
592
647
|
// 5h and 7d sub-window statuses still say "allowed". Treating this as a
|
|
593
648
|
// transient burst retries a known-exhausted account and delays failover.
|
|
@@ -595,6 +650,7 @@ function planCooldownFor429(quota, retryAfterMs, now, unifiedStatus = quota?.uni
|
|
|
595
650
|
const reset = retryAfterMs > 0 ? now + retryAfterMs : now + DEFAULT_HARD_COOLDOWN_MS;
|
|
596
651
|
return {
|
|
597
652
|
reason: "unified",
|
|
653
|
+
scope: "account",
|
|
598
654
|
coolingUntil: clampCooldownUntil(reset, now, "unified"),
|
|
599
655
|
rotateImmediately: true,
|
|
600
656
|
};
|
|
@@ -605,6 +661,7 @@ function planCooldownFor429(quota, retryAfterMs, now, unifiedStatus = quota?.uni
|
|
|
605
661
|
const base = retryAfterMs > 0 ? retryAfterMs : DEFAULT_COOLING_PERIOD_MS;
|
|
606
662
|
return {
|
|
607
663
|
reason: "transient",
|
|
664
|
+
scope: "account",
|
|
608
665
|
coolingUntil: now +
|
|
609
666
|
Math.max(MIN_COOLDOWN_MS, Math.min(base, TRANSIENT_MAX_COOLDOWN_MS)),
|
|
610
667
|
rotateImmediately: false,
|
|
@@ -622,6 +679,7 @@ function minutesUntil(untilMs, now) {
|
|
|
622
679
|
*/
|
|
623
680
|
function reconcileCooldownFromQuota(state, quota, now, policy = overagePolicy) {
|
|
624
681
|
const overageAvailable = isOverageUsable(quota, policy);
|
|
682
|
+
const scopedOnlyExhaustion = hasScopedOnlyExhaustion(quota, now, policy);
|
|
625
683
|
let until;
|
|
626
684
|
let reason;
|
|
627
685
|
if (quota.weeklyStatus === "rejected") {
|
|
@@ -646,7 +704,8 @@ function reconcileCooldownFromQuota(state, quota, now, policy = overagePolicy) {
|
|
|
646
704
|
}
|
|
647
705
|
else if (until === undefined &&
|
|
648
706
|
quota.unifiedStatus === "rejected" &&
|
|
649
|
-
!overageAvailable
|
|
707
|
+
!overageAvailable &&
|
|
708
|
+
!scopedOnlyExhaustion) {
|
|
650
709
|
until = now + DEFAULT_HARD_COOLDOWN_MS;
|
|
651
710
|
reason = "unified";
|
|
652
711
|
}
|
|
@@ -656,7 +715,7 @@ function reconcileCooldownFromQuota(state, quota, now, policy = overagePolicy) {
|
|
|
656
715
|
(state.coolingReason === "session" &&
|
|
657
716
|
quota.sessionStatus === "allowed") ||
|
|
658
717
|
(state.coolingReason === "unified" &&
|
|
659
|
-
quota.unifiedStatus === "allowed"));
|
|
718
|
+
(quota.unifiedStatus === "allowed" || scopedOnlyExhaustion)));
|
|
660
719
|
if (recoveredQuotaCooldown && state.coolingUntil) {
|
|
661
720
|
const previousCoolingUntil = state.coolingUntil;
|
|
662
721
|
const previousCoolingReason = state.coolingReason;
|
|
@@ -4348,13 +4407,14 @@ async function handleAnthropicStreamingSuccessResponse(args) {
|
|
|
4348
4407
|
const quota = parseQuotaHeaders(responseHeaders, { model: body.model });
|
|
4349
4408
|
const now = Date.now();
|
|
4350
4409
|
if (isRateLimit) {
|
|
4351
|
-
const cooldownPlan = planCooldownFor429(quota, parseRetryAfterMs(responseHeaders["retry-after"] ?? null), now, getUnifiedRateLimitStatus(responseHeaders));
|
|
4410
|
+
const cooldownPlan = planCooldownFor429(quota, parseRetryAfterMs(responseHeaders["retry-after"] ?? null), now, getUnifiedRateLimitStatus(responseHeaders), overagePolicy, typeof body.model === "string" ? body.model : undefined);
|
|
4352
4411
|
accountState.quota = quota
|
|
4353
4412
|
? mergeQuotaSnapshot(accountState.quota, quota)
|
|
4354
4413
|
: accountState.quota;
|
|
4355
4414
|
const rateLimitKind = cooldownPlan.reason === "transient" ? "transient" : "quota";
|
|
4356
|
-
if (
|
|
4357
|
-
|
|
4415
|
+
if (cooldownPlan.scope === "account" &&
|
|
4416
|
+
(!accountState.coolingUntil ||
|
|
4417
|
+
cooldownPlan.coolingUntil > accountState.coolingUntil)) {
|
|
4358
4418
|
accountState.coolingUntil = cooldownPlan.coolingUntil;
|
|
4359
4419
|
accountState.coolingReason = cooldownPlan.reason;
|
|
4360
4420
|
await saveAccountCooldown(account.key, cooldownPlan.coolingUntil, cooldownPlan.reason).catch(() => {
|
|
@@ -5132,7 +5192,7 @@ async function handleAnthropicAuthRetry(args) {
|
|
|
5132
5192
|
if (retryQuota429) {
|
|
5133
5193
|
accountState.quota = mergeQuotaSnapshot(accountState.quota, retryQuota429);
|
|
5134
5194
|
}
|
|
5135
|
-
const retryPlan = planCooldownFor429(retryQuota429, parseRetryAfterMs(retryRespHeaders["retry-after"] ?? null), nowRetry, getUnifiedRateLimitStatus(retryRespHeaders));
|
|
5195
|
+
const retryPlan = planCooldownFor429(retryQuota429, parseRetryAfterMs(retryRespHeaders["retry-after"] ?? null), nowRetry, getUnifiedRateLimitStatus(retryRespHeaders), overagePolicy, typeof body.model === "string" ? body.model : undefined);
|
|
5136
5196
|
const rateLimitKind = retryPlan.reason === "transient" ? "transient" : "quota";
|
|
5137
5197
|
recordAttemptError(account.label, account.type, retryStatus, rateLimitKind);
|
|
5138
5198
|
retryLogAttempt(429, "rate_limit_error", retryBody, {
|
|
@@ -5140,8 +5200,9 @@ async function handleAnthropicAuthRetry(args) {
|
|
|
5140
5200
|
rateLimitKind,
|
|
5141
5201
|
cooldownReason: retryPlan.reason,
|
|
5142
5202
|
});
|
|
5143
|
-
if (
|
|
5144
|
-
|
|
5203
|
+
if (retryPlan.scope === "account" &&
|
|
5204
|
+
(!accountState.coolingUntil ||
|
|
5205
|
+
retryPlan.coolingUntil > accountState.coolingUntil)) {
|
|
5145
5206
|
accountState.coolingUntil = retryPlan.coolingUntil;
|
|
5146
5207
|
accountState.coolingReason = retryPlan.reason;
|
|
5147
5208
|
}
|
|
@@ -5150,9 +5211,11 @@ async function handleAnthropicAuthRetry(args) {
|
|
|
5150
5211
|
// Non-fatal: routing already has the in-memory snapshot.
|
|
5151
5212
|
});
|
|
5152
5213
|
}
|
|
5153
|
-
|
|
5154
|
-
|
|
5155
|
-
|
|
5214
|
+
if (retryPlan.scope === "account") {
|
|
5215
|
+
await saveAccountCooldown(account.key, accountState.coolingUntil ?? retryPlan.coolingUntil, accountState.coolingReason ?? retryPlan.reason).catch(() => {
|
|
5216
|
+
// Non-fatal: routing already has the in-memory cooldown.
|
|
5217
|
+
});
|
|
5218
|
+
}
|
|
5156
5219
|
advancePrimaryIfCurrent(account.key, enabledAccounts.length, orderedAccounts[0]?.key);
|
|
5157
5220
|
break;
|
|
5158
5221
|
}
|
|
@@ -6149,10 +6212,10 @@ async function fetchAnthropicAccountResponse(args) {
|
|
|
6149
6212
|
const now = Date.now();
|
|
6150
6213
|
const quota = parseQuotaHeaders(errRespHeaders, { model: requestedModel });
|
|
6151
6214
|
const unifiedStatus = getUnifiedRateLimitStatus(errRespHeaders);
|
|
6152
|
-
const cooldownPlan = planCooldownFor429(quota, retryAfterMs, now, unifiedStatus);
|
|
6215
|
+
const cooldownPlan = planCooldownFor429(quota, retryAfterMs, now, unifiedStatus, overagePolicy, requestedModel);
|
|
6153
6216
|
const rateLimitKind = cooldownPlan.reason === "transient" ? "transient" : "quota";
|
|
6154
6217
|
recordAttemptError(account.label, account.type, 429, rateLimitKind);
|
|
6155
|
-
logger.always(`[proxy] ← 429 account=${account.label} reason=${cooldownPlan.reason} ` +
|
|
6218
|
+
logger.always(`[proxy] ← 429 account=${account.label} reason=${cooldownPlan.reason} scope=${cooldownPlan.scope} ` +
|
|
6156
6219
|
`retry-after=${retryAfterMs}ms 5h-status=${errRespHeaders["anthropic-ratelimit-unified-5h-status"] ?? "unknown"} ` +
|
|
6157
6220
|
`7d-status=${errRespHeaders["anthropic-ratelimit-unified-7d-status"] ?? "unknown"} ` +
|
|
6158
6221
|
`unified-status=${unifiedStatus ?? "unknown"} ` +
|
|
@@ -6507,14 +6570,15 @@ async function handleAnthropicRoutedClaudeRequest(args) {
|
|
|
6507
6570
|
// Publish the cooldown before retrying so requests arriving behind
|
|
6508
6571
|
// this one skip the throttled account instead of joining the burst.
|
|
6509
6572
|
let cooldownExtended = false;
|
|
6510
|
-
if (
|
|
6511
|
-
|
|
6573
|
+
if (plan.scope === "account" &&
|
|
6574
|
+
(!accountState.coolingUntil ||
|
|
6575
|
+
plan.coolingUntil > accountState.coolingUntil)) {
|
|
6512
6576
|
accountState.coolingUntil = plan.coolingUntil;
|
|
6513
6577
|
accountState.coolingReason = plan.reason;
|
|
6514
6578
|
cooldownExtended = true;
|
|
6515
6579
|
}
|
|
6516
|
-
if (cooldownExtended) {
|
|
6517
|
-
await saveAccountCooldown(account.key, accountState.coolingUntil, accountState.coolingReason ?? plan.reason).catch(() => {
|
|
6580
|
+
if (cooldownExtended && plan.scope === "account") {
|
|
6581
|
+
await saveAccountCooldown(account.key, accountState.coolingUntil ?? plan.coolingUntil, accountState.coolingReason ?? plan.reason).catch(() => {
|
|
6518
6582
|
// Non-fatal: routing already has the in-memory cooldown.
|
|
6519
6583
|
});
|
|
6520
6584
|
}
|
package/dist/types/proxy.d.ts
CHANGED
|
@@ -856,7 +856,13 @@ export type PreparedAnthropicAccountAttempt = {
|
|
|
856
856
|
export type RateLimitCoolingReason = Exclude<AccountCoolingReason, "auth">;
|
|
857
857
|
export type AccountCooldownPlan = {
|
|
858
858
|
reason: RateLimitCoolingReason;
|
|
859
|
-
/**
|
|
859
|
+
/**
|
|
860
|
+
* Whether this limit applies to every request on the account or only to the
|
|
861
|
+
* requested model. Model scope must never be persisted as an account
|
|
862
|
+
* cooldown; the quota window itself remains the routing evidence.
|
|
863
|
+
*/
|
|
864
|
+
scope: "account" | "model";
|
|
865
|
+
/** Epoch-ms until which the limiting window is expected to recover. */
|
|
860
866
|
coolingUntil: number;
|
|
861
867
|
/** When true (unified/5h/7d rejected), rotate immediately — retrying the
|
|
862
868
|
* same account is futile until its window resets. When false (transient
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@juspay/neurolink",
|
|
3
|
-
"version": "12.12.
|
|
3
|
+
"version": "12.12.2",
|
|
4
4
|
"packageManager": "pnpm@10.15.1",
|
|
5
5
|
"description": "TypeScript AI SDK with 24+ LLM providers behind one consistent API. MCP-native (connect any MCP server), voice TTS/STT/realtime, RAG, agents, memory, context compaction. OpenAI · Anthropic · Gemini · Bedrock · Azure · Ollama · DeepSeek · NVIDIA NIM and more.",
|
|
6
6
|
"author": {
|