@juspay/neurolink 10.7.1 → 10.8.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.
Files changed (41) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/dist/adapters/replicate/predictionLifecycle.d.ts +1 -1
  3. package/dist/adapters/replicate/predictionLifecycle.js +50 -45
  4. package/dist/agent/directTools.d.ts +2 -2
  5. package/dist/browser/neurolink.min.js +373 -373
  6. package/dist/cli/commands/proxyAnalyze.js +6 -0
  7. package/dist/core/baseProvider.d.ts +1 -0
  8. package/dist/core/baseProvider.js +74 -11
  9. package/dist/core/modules/TelemetryHandler.d.ts +5 -1
  10. package/dist/core/modules/TelemetryHandler.js +20 -0
  11. package/dist/lib/adapters/replicate/predictionLifecycle.d.ts +1 -1
  12. package/dist/lib/adapters/replicate/predictionLifecycle.js +50 -45
  13. package/dist/lib/core/baseProvider.d.ts +1 -0
  14. package/dist/lib/core/baseProvider.js +74 -11
  15. package/dist/lib/core/modules/TelemetryHandler.d.ts +5 -1
  16. package/dist/lib/core/modules/TelemetryHandler.js +20 -0
  17. package/dist/lib/mcp/httpRateLimiter.js +14 -21
  18. package/dist/lib/proxy/proxyAnalysis.js +22 -4
  19. package/dist/lib/types/cli.d.ts +1 -0
  20. package/dist/lib/types/generate.d.ts +16 -0
  21. package/dist/lib/types/proxy.d.ts +2 -0
  22. package/dist/lib/utils/errorHandling.d.ts +2 -0
  23. package/dist/lib/utils/errorHandling.js +2 -0
  24. package/dist/lib/utils/pdfProcessor.js +2 -2
  25. package/dist/lib/utils/providerRetry.d.ts +5 -1
  26. package/dist/lib/utils/providerRetry.js +34 -8
  27. package/dist/lib/utils/retryAfter.d.ts +7 -0
  28. package/dist/lib/utils/retryAfter.js +44 -0
  29. package/dist/mcp/httpRateLimiter.js +14 -21
  30. package/dist/proxy/proxyAnalysis.js +22 -4
  31. package/dist/types/cli.d.ts +1 -0
  32. package/dist/types/generate.d.ts +16 -0
  33. package/dist/types/proxy.d.ts +2 -0
  34. package/dist/utils/errorHandling.d.ts +2 -0
  35. package/dist/utils/errorHandling.js +2 -0
  36. package/dist/utils/pdfProcessor.js +2 -2
  37. package/dist/utils/providerRetry.d.ts +5 -1
  38. package/dist/utils/providerRetry.js +34 -8
  39. package/dist/utils/retryAfter.d.ts +7 -0
  40. package/dist/utils/retryAfter.js +43 -0
  41. package/package.json +3 -2
@@ -13,12 +13,19 @@
13
13
  *
14
14
  * @module utils/providerRetry
15
15
  */
16
+ import { NeuroLinkError } from "./errorHandling.js";
16
17
  import { logger } from "./logger.js";
17
18
  import { APICallError } from "./generationErrors.js";
19
+ import { parseRetryAfterMs } from "./retryAfter.js";
18
20
  /** Maximum number of retry attempts after the initial call (total = 1 + MAX_PROVIDER_RETRIES). */
19
21
  export const MAX_PROVIDER_RETRIES = 2;
20
22
  /** Base delay in ms for exponential backoff between retries. */
21
23
  export const BASE_RETRY_DELAY_MS = 1000;
24
+ /** Minimum delay in ms when a retryable response provides no retry timing. */
25
+ export const NO_HINT_FLOOR_MS = 10_000;
26
+ /** Maximum server-requested retry delay honored by provider retries. */
27
+ export const MAX_RETRY_AFTER_MS = 120_000;
28
+ const sleepWithTimeout = (delayMs) => new Promise((resolve) => setTimeout(resolve, delayMs));
22
29
  /**
23
30
  * Check whether an error thrown by the AI SDK is retryable.
24
31
  *
@@ -31,6 +38,9 @@ export function isRetryableProviderError(error) {
31
38
  if (APICallError.isInstance(error)) {
32
39
  return error.isRetryable;
33
40
  }
41
+ if (error instanceof NeuroLinkError) {
42
+ return error.retriable;
43
+ }
34
44
  // Fallback: duck-type for status codes on errors that aren't APICallError
35
45
  if (error && typeof error === "object" && "statusCode" in error) {
36
46
  const statusCode = error.statusCode;
@@ -50,6 +60,18 @@ export function getErrorStatusCode(error) {
50
60
  }
51
61
  return undefined;
52
62
  }
63
+ function getRetryAfterMs(error) {
64
+ if (APICallError.isInstance(error) && error.responseHeaders) {
65
+ const parsedDelay = parseRetryAfterMs(error.responseHeaders);
66
+ if (parsedDelay !== undefined) {
67
+ return parsedDelay;
68
+ }
69
+ }
70
+ if (error instanceof NeuroLinkError && error.retryAfterMs !== undefined) {
71
+ return error.retryAfterMs;
72
+ }
73
+ return undefined;
74
+ }
53
75
  /**
54
76
  * Execute a provider call with instrumented retry logic.
55
77
  *
@@ -58,12 +80,12 @@ export function getErrorStatusCode(error) {
58
80
  * @param label - A human-readable label for log messages (e.g. "generateText", "streamText")
59
81
  * @returns The result of the operation
60
82
  */
61
- export async function withProviderRetry(operation, span, label) {
83
+ export async function withProviderRetry(operation, span, label, sleep = sleepWithTimeout) {
62
84
  for (let attempt = 0; attempt <= MAX_PROVIDER_RETRIES; attempt++) {
63
85
  try {
64
86
  const result = await operation();
65
87
  // Record how many attempts it took on the span
66
- span.setAttribute("gen_ai.provider.total_attempts", attempt + 1);
88
+ span?.setAttribute("gen_ai.provider.total_attempts", attempt + 1);
67
89
  if (attempt > 0) {
68
90
  logger.info(`[providerRetry] ${label} succeeded after ${attempt + 1} attempts`);
69
91
  }
@@ -75,9 +97,9 @@ export async function withProviderRetry(operation, span, label) {
75
97
  const errorMessage = error instanceof Error ? error.message : String(error);
76
98
  if (!retryable || attempt === MAX_PROVIDER_RETRIES) {
77
99
  // Record failure details before re-throwing
78
- span.setAttribute("gen_ai.provider.total_attempts", attempt + 1);
100
+ span?.setAttribute("gen_ai.provider.total_attempts", attempt + 1);
79
101
  if (attempt > 0) {
80
- span.setAttribute("gen_ai.provider.retries_exhausted", true);
102
+ span?.setAttribute("gen_ai.provider.retries_exhausted", true);
81
103
  }
82
104
  logger.warn(`[providerRetry] ${label} failed (non-retryable or retries exhausted)`, {
83
105
  attempt: attempt + 1,
@@ -87,10 +109,14 @@ export async function withProviderRetry(operation, span, label) {
87
109
  });
88
110
  throw error;
89
111
  }
90
- // Calculate exponential backoff delay
91
- const delay = BASE_RETRY_DELAY_MS * Math.pow(2, attempt);
112
+ const retryAfterMs = getRetryAfterMs(error);
113
+ const boundedRetryAfterMs = retryAfterMs === undefined
114
+ ? undefined
115
+ : Math.min(MAX_RETRY_AFTER_MS, Math.max(0, retryAfterMs));
116
+ const delay = boundedRetryAfterMs ??
117
+ Math.max(BASE_RETRY_DELAY_MS * Math.pow(2, attempt), NO_HINT_FLOOR_MS);
92
118
  // Record retry event on the OTel span
93
- span.addEvent("gen_ai.provider.retry", {
119
+ span?.addEvent("gen_ai.provider.retry", {
94
120
  "retry.attempt": attempt + 1,
95
121
  "retry.delay_ms": delay,
96
122
  ...(statusCode !== undefined && { "retry.status_code": statusCode }),
@@ -103,7 +129,7 @@ export async function withProviderRetry(operation, span, label) {
103
129
  statusCode,
104
130
  error: errorMessage,
105
131
  });
106
- await new Promise((r) => setTimeout(r, delay));
132
+ await sleep(delay);
107
133
  }
108
134
  }
109
135
  // This should never be reached due to the throw inside the loop,
@@ -0,0 +1,7 @@
1
+ /**
2
+ * Parse standard and commonly used rate-limit response headers.
3
+ *
4
+ * @returns The requested delay in milliseconds, or undefined when the
5
+ * response does not provide a usable rate-limit delay.
6
+ */
7
+ export declare function parseRetryAfterMs(headers: Pick<Headers, "get"> | Readonly<Record<string, string>>): number | undefined;
@@ -0,0 +1,43 @@
1
+ function getHeader(headers, headerName) {
2
+ if ("get" in headers && typeof headers.get === "function") {
3
+ return headers.get(headerName);
4
+ }
5
+ const normalizedHeaderName = headerName.toLowerCase();
6
+ for (const [name, value] of Object.entries(headers)) {
7
+ if (name.toLowerCase() === normalizedHeaderName) {
8
+ return value;
9
+ }
10
+ }
11
+ return null;
12
+ }
13
+ /**
14
+ * Parse standard and commonly used rate-limit response headers.
15
+ *
16
+ * @returns The requested delay in milliseconds, or undefined when the
17
+ * response does not provide a usable rate-limit delay.
18
+ */
19
+ export function parseRetryAfterMs(headers) {
20
+ const retryAfter = getHeader(headers, "Retry-After");
21
+ if (retryAfter) {
22
+ const seconds = parseInt(retryAfter, 10);
23
+ if (!Number.isNaN(seconds)) {
24
+ return Math.max(0, seconds * 1000);
25
+ }
26
+ const retryDate = new Date(retryAfter);
27
+ if (!Number.isNaN(retryDate.getTime())) {
28
+ return Math.max(0, retryDate.getTime() - Date.now());
29
+ }
30
+ }
31
+ const rateLimitReset = getHeader(headers, "X-RateLimit-Reset");
32
+ if (rateLimitReset) {
33
+ const resetTimestamp = parseInt(rateLimitReset, 10);
34
+ if (!Number.isNaN(resetTimestamp)) {
35
+ const resetTime = resetTimestamp > 1e12 ? resetTimestamp : resetTimestamp * 1000;
36
+ return Math.max(0, resetTime - Date.now());
37
+ }
38
+ }
39
+ if (getHeader(headers, "X-RateLimit-Remaining") === "0") {
40
+ return 1000;
41
+ }
42
+ return undefined;
43
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juspay/neurolink",
3
- "version": "10.7.1",
3
+ "version": "10.8.1",
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": {
@@ -144,6 +144,7 @@
144
144
  "test:model-pool": "pnpm run test:model-pool:vitest && npx tsx test/continuous-test-suite-model-pool.ts",
145
145
  "test:model-capabilities:vitest": "pnpm exec vitest run test/modelCapabilities.test.ts",
146
146
  "test:agent-runtime:vitest": "pnpm exec vitest run test/agentRuntime.test.ts test/agentDelegation.test.ts test/agentPlumbing.test.ts test/toolExecutionRecorder.test.ts test/samplingParams.test.ts test/structuredRecovery.test.ts",
147
+ "test:retry-after:vitest": "pnpm exec vitest run test/retryAfter.test.ts",
147
148
  "test:ci": "pnpm run test && pnpm run test:client && pnpm run test:hitl",
148
149
  "// CI tier — fast, no live AI calls, safe for every commit": "",
149
150
  "test:unit:vitest": "pnpm exec vitest run test/toolRouting.test.ts",
@@ -152,7 +153,7 @@
152
153
  "test:system-messages:vitest": "pnpm exec vitest run test/systemMessages.test.ts",
153
154
  "test:tool-routing-semantic:vitest": "pnpm exec vitest run test/toolRoutingSemantic.test.ts",
154
155
  "test:tool-routing-semantic": "pnpm run test:tool-routing-semantic:vitest && npx tsx test/continuous-test-suite-tool-routing-semantic.ts",
155
- "test:unit": "pnpm run test:envguard && pnpm run test:bugfixes && pnpm run test:file-detector-extension && pnpm run test:file-detector-magic-bytes && pnpm run test:mcp:infra && pnpm run test:mcp:bash && pnpm run test:mcp:limits && pnpm run test:mcp:spans && pnpm run test:autoresearch:redis && pnpm run test:unit:vitest && pnpm run test:tool-routing-cli:vitest && pnpm run test:tool-dedup:vitest && pnpm run test:model-pool:vitest && pnpm run test:litellm-context:vitest && pnpm run test:step-budget-guard:vitest && pnpm run test:system-messages:vitest && pnpm run test:tool-routing-semantic:vitest && pnpm run test:anthropic-tools-policy && pnpm run test:sagemaker-tools && pnpm run test:anthropic-multimodal && pnpm run test:excel-interop && pnpm run test:model-capabilities:vitest && pnpm run test:agent-runtime:vitest",
156
+ "test:unit": "pnpm run test:envguard && pnpm run test:bugfixes && pnpm run test:file-detector-extension && pnpm run test:file-detector-magic-bytes && pnpm run test:mcp:infra && pnpm run test:mcp:bash && pnpm run test:mcp:limits && pnpm run test:mcp:spans && pnpm run test:autoresearch:redis && pnpm run test:unit:vitest && pnpm run test:tool-routing-cli:vitest && pnpm run test:tool-dedup:vitest && pnpm run test:model-pool:vitest && pnpm run test:litellm-context:vitest && pnpm run test:step-budget-guard:vitest && pnpm run test:system-messages:vitest && pnpm run test:tool-routing-semantic:vitest && pnpm run test:anthropic-tools-policy && pnpm run test:sagemaker-tools && pnpm run test:anthropic-multimodal && pnpm run test:excel-interop && pnpm run test:model-capabilities:vitest && pnpm run test:agent-runtime:vitest && pnpm run test:retry-after:vitest",
156
157
  "// CI tier — live providers, runs only when API keys are present (test:credentials and test:dynamic make real provider calls when keys are set, so they live here, not in test:unit)": "",
157
158
  "test:live": "pnpm run test:providers && pnpm run test:mcp:http && pnpm run test:mcp:sdk && pnpm run test:mcp:cli && pnpm run test:observability && pnpm run test:context && pnpm run test:memory && pnpm run test:tool-reliability && pnpm run test:evaluation && pnpm run test:autoresearch && pnpm run test:credentials && pnpm run test:dynamic",
158
159
  "// CI tier — product output (image/video/TTS/PPT) — costs $$ per run": "",