@juspay/neurolink 10.2.2 → 10.3.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/CHANGELOG.md +12 -0
- package/dist/browser/neurolink.min.js +425 -422
- package/dist/cli/loop/optionsSchema.js +4 -0
- package/dist/constants/contextWindows.d.ts +24 -0
- package/dist/constants/contextWindows.js +50 -0
- package/dist/context/errorDetection.d.ts +6 -0
- package/dist/context/errorDetection.js +18 -0
- package/dist/context/stepBudgetGuard.d.ts +61 -0
- package/dist/context/stepBudgetGuard.js +328 -0
- package/dist/core/baseProvider.d.ts +12 -0
- package/dist/core/baseProvider.js +18 -0
- package/dist/core/modules/GenerationHandler.js +257 -43
- package/dist/core/modules/ToolsManager.d.ts +17 -0
- package/dist/core/modules/ToolsManager.js +99 -1
- package/dist/lib/constants/contextWindows.d.ts +24 -0
- package/dist/lib/constants/contextWindows.js +50 -0
- package/dist/lib/context/errorDetection.d.ts +6 -0
- package/dist/lib/context/errorDetection.js +18 -0
- package/dist/lib/context/stepBudgetGuard.d.ts +61 -0
- package/dist/lib/context/stepBudgetGuard.js +329 -0
- package/dist/lib/core/baseProvider.d.ts +12 -0
- package/dist/lib/core/baseProvider.js +18 -0
- package/dist/lib/core/modules/GenerationHandler.js +257 -43
- package/dist/lib/core/modules/ToolsManager.d.ts +17 -0
- package/dist/lib/core/modules/ToolsManager.js +99 -1
- package/dist/lib/mcp/toolDiscoveryService.js +59 -20
- package/dist/lib/neurolink.js +30 -9
- package/dist/lib/providers/litellm.d.ts +27 -19
- package/dist/lib/providers/litellm.js +171 -92
- package/dist/lib/providers/openaiChatCompletionsBase.d.ts +37 -1
- package/dist/lib/providers/openaiChatCompletionsBase.js +201 -33
- package/dist/lib/providers/openaiChatCompletionsClient.d.ts +23 -5
- package/dist/lib/providers/openaiChatCompletionsClient.js +94 -14
- package/dist/lib/proxy/proxyFetch.d.ts +17 -0
- package/dist/lib/proxy/proxyFetch.js +42 -4
- package/dist/lib/types/context.d.ts +22 -0
- package/dist/lib/types/generate.d.ts +18 -2
- package/dist/lib/types/openaiCompatible.d.ts +2 -0
- package/dist/lib/types/providers.d.ts +9 -0
- package/dist/lib/utils/errorHandling.js +8 -2
- package/dist/lib/utils/schemaConversion.d.ts +16 -0
- package/dist/lib/utils/schemaConversion.js +165 -8
- package/dist/lib/utils/timeout.d.ts +22 -0
- package/dist/lib/utils/timeout.js +72 -12
- package/dist/lib/utils/tokenLimits.js +22 -0
- package/dist/lib/utils/toolCallRepair.d.ts +8 -0
- package/dist/lib/utils/toolCallRepair.js +4 -1
- package/dist/mcp/toolDiscoveryService.js +59 -20
- package/dist/neurolink.js +30 -9
- package/dist/providers/litellm.d.ts +27 -19
- package/dist/providers/litellm.js +171 -92
- package/dist/providers/openaiChatCompletionsBase.d.ts +37 -1
- package/dist/providers/openaiChatCompletionsBase.js +201 -33
- package/dist/providers/openaiChatCompletionsClient.d.ts +23 -5
- package/dist/providers/openaiChatCompletionsClient.js +94 -14
- package/dist/proxy/proxyFetch.d.ts +17 -0
- package/dist/proxy/proxyFetch.js +42 -4
- package/dist/types/context.d.ts +22 -0
- package/dist/types/generate.d.ts +18 -2
- package/dist/types/openaiCompatible.d.ts +2 -0
- package/dist/types/providers.d.ts +9 -0
- package/dist/utils/errorHandling.js +8 -2
- package/dist/utils/schemaConversion.d.ts +16 -0
- package/dist/utils/schemaConversion.js +165 -8
- package/dist/utils/timeout.d.ts +22 -0
- package/dist/utils/timeout.js +72 -12
- package/dist/utils/tokenLimits.js +22 -0
- package/dist/utils/toolCallRepair.d.ts +8 -0
- package/dist/utils/toolCallRepair.js +4 -1
- package/package.json +6 -3
|
@@ -19,8 +19,10 @@ import { logger } from "../../utils/logger.js";
|
|
|
19
19
|
import { emitToolEndFromStepFinish } from "../../utils/toolEndEmitter.js";
|
|
20
20
|
import { calculateCost } from "../../utils/pricing.js";
|
|
21
21
|
import { withProviderRetry } from "../../utils/providerRetry.js";
|
|
22
|
+
import { parseTimeout } from "../../utils/timeout.js";
|
|
22
23
|
import { calculateCacheSavingsPercent, extractCacheCreationTokens, extractCacheReadTokens, extractTokenUsage, } from "../../utils/tokenUtils.js";
|
|
23
|
-
import { DEFAULT_MAX_STEPS } from "../constants.js";
|
|
24
|
+
import { DEFAULT_MAX_STEPS, DEFAULT_WRAPUP_TIME_LEAD_MS, } from "../constants.js";
|
|
25
|
+
import { createStepBudgetGuard, estimateFixedOverheadTokens, } from "../../context/stepBudgetGuard.js";
|
|
24
26
|
import { isTemperatureDeprecatedError, isSchemaComplexityError, isToolsSchemaConflictError, isToolsSchemaExclusionInForce, } from "./structuredOutputPolicy.js";
|
|
25
27
|
import { coerceJsonToSchema } from "../../utils/json/coerce.js";
|
|
26
28
|
import { NoObjectGeneratedError } from "../../utils/generationErrors.js";
|
|
@@ -44,6 +46,94 @@ function safePreview(v) {
|
|
|
44
46
|
return "[unserializable]";
|
|
45
47
|
}
|
|
46
48
|
}
|
|
49
|
+
/**
|
|
50
|
+
* Turn budget + wrap-up deadline (parity with the googleVertex native loops).
|
|
51
|
+
* A deadline is engaged only when the caller expressed one: turnTimeoutMs
|
|
52
|
+
* wins, else an explicit generate timeout. Callers that set neither keep the
|
|
53
|
+
* pre-existing behaviour (no wrap-up; the outer defensive timeout in
|
|
54
|
+
* executeStandardGenerateFlow still applies). With `wrapupTimeLeadMs` left of
|
|
55
|
+
* the deadline, the loop stops offering tools (toolChoice: "none") so the
|
|
56
|
+
* model spends the remaining budget producing a final answer instead of being
|
|
57
|
+
* guillotined mid-tool-loop with all work discarded. The lead is clamped to a
|
|
58
|
+
* quarter of the budget so short explicit timeouts (e.g. 30s) don't trigger
|
|
59
|
+
* wrap-up on the very first step.
|
|
60
|
+
*
|
|
61
|
+
* `turnStartMs` anchors the deadline to the ORIGINAL generation start:
|
|
62
|
+
* callGenerateText re-runs on executeGeneration's fallback retries
|
|
63
|
+
* (structured-output conflict, temperature-deprecated) and provider retries,
|
|
64
|
+
* and a deadline computed from Date.now() per attempt would hand each retry
|
|
65
|
+
* a fresh budget — multiplying the caller's wall-clock cap.
|
|
66
|
+
*/
|
|
67
|
+
function resolveTurnBudget(options, turnStartMs) {
|
|
68
|
+
const callerTimeoutMs = parseTimeout(options.timeout);
|
|
69
|
+
const hasValidTurnTimeout = typeof options.turnTimeoutMs === "number" &&
|
|
70
|
+
Number.isFinite(options.turnTimeoutMs) &&
|
|
71
|
+
options.turnTimeoutMs > 0;
|
|
72
|
+
if (options.turnTimeoutMs !== undefined && !hasValidTurnTimeout) {
|
|
73
|
+
logger.warn("[GenerationHandler] Ignoring invalid turnTimeoutMs — expected a positive number of milliseconds; falling back to the timeout option", { turnTimeoutMs: options.turnTimeoutMs });
|
|
74
|
+
}
|
|
75
|
+
const turnBudgetMs = hasValidTurnTimeout
|
|
76
|
+
? options.turnTimeoutMs
|
|
77
|
+
: callerTimeoutMs;
|
|
78
|
+
const wrapupLeadMs = turnBudgetMs
|
|
79
|
+
? Math.min(options.wrapupTimeLeadMs ?? DEFAULT_WRAPUP_TIME_LEAD_MS, Math.floor(turnBudgetMs / 4))
|
|
80
|
+
: 0;
|
|
81
|
+
const turnDeadline = turnBudgetMs ? turnStartMs + turnBudgetMs : undefined;
|
|
82
|
+
return { callerTimeoutMs, turnBudgetMs, wrapupLeadMs, turnDeadline };
|
|
83
|
+
}
|
|
84
|
+
/**
|
|
85
|
+
* Merge the per-call providerOptions namespaces for generateText. Both the
|
|
86
|
+
* timeout forwarding (`neurolink.timeoutMs`, read by NeuroLink's delegating
|
|
87
|
+
* chat-completions models) and Gemini thinking (`google.thinkingConfig`) may
|
|
88
|
+
* apply on the same call — built here as ONE object because two conditional
|
|
89
|
+
* `providerOptions:` spreads in the args literal would silently clobber each
|
|
90
|
+
* other (object spread does not deep-merge).
|
|
91
|
+
*/
|
|
92
|
+
function buildProviderOptions(options, isGoogleProvider, callerTimeoutMs) {
|
|
93
|
+
const providerOptions = {};
|
|
94
|
+
if (callerTimeoutMs !== undefined) {
|
|
95
|
+
providerOptions.neurolink = { timeoutMs: callerTimeoutMs };
|
|
96
|
+
}
|
|
97
|
+
if (options.thinkingConfig?.enabled && isGoogleProvider) {
|
|
98
|
+
// Gemini 3 uses thinkingLevel; Gemini 2.5 uses thinkingBudget.
|
|
99
|
+
providerOptions.google = {
|
|
100
|
+
thinkingConfig: {
|
|
101
|
+
...(options.thinkingConfig.thinkingLevel && {
|
|
102
|
+
thinkingLevel: options.thinkingConfig.thinkingLevel,
|
|
103
|
+
}),
|
|
104
|
+
...(options.thinkingConfig.budgetTokens &&
|
|
105
|
+
!options.thinkingConfig.thinkingLevel && {
|
|
106
|
+
thinkingBudget: options.thinkingConfig.budgetTokens,
|
|
107
|
+
}),
|
|
108
|
+
includeThoughts: true,
|
|
109
|
+
},
|
|
110
|
+
};
|
|
111
|
+
}
|
|
112
|
+
return Object.keys(providerOptions).length > 0
|
|
113
|
+
? providerOptions
|
|
114
|
+
: undefined;
|
|
115
|
+
}
|
|
116
|
+
/**
|
|
117
|
+
* Build the prepareStep result for a forced wrap-up step: tools withdrawn
|
|
118
|
+
* (toolChoice: "none") plus an honest time message (native-loop parity) —
|
|
119
|
+
* without the message, weaker models keep trying to emit tool calls and leak
|
|
120
|
+
* raw tool-call tokens into the text answer.
|
|
121
|
+
*/
|
|
122
|
+
function buildWrapupStepResult(prepared, stepMessages) {
|
|
123
|
+
const baseMessages = prepared?.messages ??
|
|
124
|
+
stepMessages;
|
|
125
|
+
return {
|
|
126
|
+
...(prepared ?? {}),
|
|
127
|
+
messages: [
|
|
128
|
+
...baseMessages,
|
|
129
|
+
{
|
|
130
|
+
role: "user",
|
|
131
|
+
content: "The time budget for this task is nearly exhausted. Do not call any more tools. Give your best final answer NOW from the information already gathered, and note anything you could not verify in the remaining time.",
|
|
132
|
+
},
|
|
133
|
+
],
|
|
134
|
+
toolChoice: "none",
|
|
135
|
+
};
|
|
136
|
+
}
|
|
47
137
|
/**
|
|
48
138
|
* GenerationHandler class - Handles text generation operations for AI providers
|
|
49
139
|
*/
|
|
@@ -66,7 +156,8 @@ export class GenerationHandler {
|
|
|
66
156
|
* Helper method to call generateText with optional structured output
|
|
67
157
|
* @private
|
|
68
158
|
*/
|
|
69
|
-
async callGenerateText(model, messages, tools, options,
|
|
159
|
+
async callGenerateText(model, messages, tools, options, callConfig) {
|
|
160
|
+
const { shouldUseTools, includeStructuredOutput, turnStartMs } = callConfig;
|
|
70
161
|
// Check if this is a Google provider (for provider-specific options)
|
|
71
162
|
const isGoogleProvider = this.providerName === "google-ai" || this.providerName === "vertex";
|
|
72
163
|
// Check if this is an Anthropic provider (includes Vertex+Claude)
|
|
@@ -112,11 +203,45 @@ export class GenerationHandler {
|
|
|
112
203
|
}
|
|
113
204
|
}
|
|
114
205
|
const prepareStep = options.prepareStep;
|
|
206
|
+
const { callerTimeoutMs, turnBudgetMs, wrapupLeadMs, turnDeadline } = resolveTurnBudget(options, turnStartMs);
|
|
207
|
+
let wrapupForced = false;
|
|
208
|
+
const providerOptions = buildProviderOptions(options, isGoogleProvider, callerTimeoutMs);
|
|
115
209
|
// Hoist system-role messages into generateText's top-level `system` option
|
|
116
210
|
// rather than passing them inside `messages` (deprecated by the AI SDK,
|
|
117
211
|
// rejected in v7). See extractSystemMessages for the rationale. (#1024)
|
|
118
212
|
const { system, messages: nonSystemMessages } = extractSystemMessages(messages);
|
|
119
|
-
|
|
213
|
+
// Per-step context budget guard: the tool loop appends assistant turns and
|
|
214
|
+
// tool results on every step — growth the pre-call budget check never
|
|
215
|
+
// sees. Estimate each step's projected request and deterministically
|
|
216
|
+
// reclaim budget (truncate old tool outputs, then drop oldest exchanges)
|
|
217
|
+
// so long agentic runs cannot overflow the model's window mid-loop.
|
|
218
|
+
// Parity with the googleVertex native loops' createContextGuard, upgraded
|
|
219
|
+
// from stop-only to compact-and-continue. The caller's prepareStep result
|
|
220
|
+
// wins on conflicts; the guard only contributes `messages`.
|
|
221
|
+
//
|
|
222
|
+
// Overhead is resolved PER STEP because `toolsWithCache` is deliberately
|
|
223
|
+
// mutable (search_tools hydration adds discovered tools mid-loop) — a
|
|
224
|
+
// once-captured estimate would undercount later steps. Tools are only
|
|
225
|
+
// ever added, so memoizing on tool count keeps the common step O(1).
|
|
226
|
+
let cachedOverhead = { toolCount: -1, tokens: 0 };
|
|
227
|
+
const stepBudgetGuard = createStepBudgetGuard({
|
|
228
|
+
provider: this.providerName ?? "unknown",
|
|
229
|
+
model: this.modelName,
|
|
230
|
+
maxTokens: options.maxTokens,
|
|
231
|
+
getFixedOverheadTokens: () => {
|
|
232
|
+
const toolCount = shouldUseTools
|
|
233
|
+
? Object.keys(toolsWithCache).length
|
|
234
|
+
: 0;
|
|
235
|
+
if (toolCount !== cachedOverhead.toolCount) {
|
|
236
|
+
cachedOverhead = {
|
|
237
|
+
toolCount,
|
|
238
|
+
tokens: estimateFixedOverheadTokens(system, shouldUseTools ? toolsWithCache : undefined, this.providerName),
|
|
239
|
+
};
|
|
240
|
+
}
|
|
241
|
+
return cachedOverhead.tokens;
|
|
242
|
+
},
|
|
243
|
+
});
|
|
244
|
+
const result = await generateText({
|
|
120
245
|
model,
|
|
121
246
|
...(system && { system }),
|
|
122
247
|
messages: nonSystemMessages,
|
|
@@ -125,52 +250,88 @@ export class GenerationHandler {
|
|
|
125
250
|
stopWhen: stepCountIs(options.maxSteps ?? DEFAULT_MAX_STEPS),
|
|
126
251
|
...(shouldUseTools &&
|
|
127
252
|
options.toolChoice && { toolChoice: options.toolChoice }),
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
253
|
+
experimental_prepareStep: (async (stepOptions) => {
|
|
254
|
+
// Public contract preserved: a caller-supplied prepareStep receives
|
|
255
|
+
// the ORIGINAL AI-SDK step options, exactly as before the guard
|
|
256
|
+
// existed — callers that inspect message history see the real thing.
|
|
257
|
+
const callerResult = prepareStep
|
|
258
|
+
? await prepareStep({
|
|
259
|
+
...stepOptions,
|
|
260
|
+
maxSteps: options.maxSteps ?? DEFAULT_MAX_STEPS,
|
|
261
|
+
})
|
|
262
|
+
: undefined;
|
|
263
|
+
// The guard runs LAST, on the messages that will actually be sent:
|
|
264
|
+
// the caller's override when one was returned (out-of-contract for
|
|
265
|
+
// NeuroLink's public prepareStep type, but possible at runtime), else
|
|
266
|
+
// the step's own messages. It never replaces a caller's content
|
|
267
|
+
// choices — it only reclaims budget from whatever was chosen.
|
|
268
|
+
const callerMessages = callerResult?.messages;
|
|
269
|
+
// Usage feedback: the provider's REAL prompt-token count for the
|
|
270
|
+
// previous step calibrates the guard's char-based estimator (see
|
|
271
|
+
// createStepBudgetGuard) — free precision, no tokenizer.
|
|
272
|
+
const previousStep = stepOptions.steps[stepOptions.steps.length - 1];
|
|
273
|
+
const compacted = stepBudgetGuard(callerMessages ?? stepOptions.messages, previousStep?.usage?.inputTokens);
|
|
274
|
+
const prepared = compacted
|
|
275
|
+
? { ...(callerResult ?? {}), messages: compacted }
|
|
276
|
+
: callerResult;
|
|
277
|
+
// Wrap-up: inside the lead window before the turn deadline, stop
|
|
278
|
+
// offering tools so this step produces the final answer. Overrides
|
|
279
|
+
// any caller toolChoice — an honest partial beats a discarded turn.
|
|
280
|
+
if (turnDeadline !== undefined &&
|
|
281
|
+
shouldUseTools &&
|
|
282
|
+
Date.now() >= turnDeadline - wrapupLeadMs) {
|
|
283
|
+
if (!wrapupForced) {
|
|
284
|
+
wrapupForced = true;
|
|
285
|
+
logger.warn("[GenerationHandler] Turn budget nearly exhausted — forcing wrap-up (toolChoice: none)", {
|
|
286
|
+
provider: this.providerName,
|
|
287
|
+
turnBudgetMs,
|
|
288
|
+
wrapupLeadMs,
|
|
289
|
+
stepNumber: stepOptions.stepNumber,
|
|
290
|
+
});
|
|
291
|
+
}
|
|
292
|
+
return buildWrapupStepResult(prepared, stepOptions.messages);
|
|
293
|
+
}
|
|
294
|
+
return prepared;
|
|
133
295
|
}),
|
|
134
296
|
temperature: options.temperature,
|
|
135
297
|
maxOutputTokens: options.maxTokens,
|
|
136
298
|
maxRetries: 0, // NL11: Disable AI SDK's invisible internal retries; we handle retries with OTel instrumentation
|
|
137
299
|
abortSignal: options.abortSignal,
|
|
300
|
+
// Schema-driven tool-call repair (BZ-665): fixes near-miss tool names
|
|
301
|
+
// (case/substring/Levenshtein) and — for tools whose schema carries a
|
|
302
|
+
// validator — coerces mis-typed arguments ("123" → 123) and remaps
|
|
303
|
+
// near-miss parameter names before the call is marked invalid. Wired
|
|
304
|
+
// for every AI-SDK-loop provider; native loops have their own paths.
|
|
305
|
+
...(shouldUseTools &&
|
|
306
|
+
!options.disableToolCallRepair && {
|
|
307
|
+
experimental_repairToolCall: (async (...repairArgs) => {
|
|
308
|
+
// Lazy import to avoid a circular dependency at module load time
|
|
309
|
+
const { createToolCallRepair } = await import("../../utils/toolCallRepair.js");
|
|
310
|
+
return createToolCallRepair()(...repairArgs);
|
|
311
|
+
}),
|
|
312
|
+
}),
|
|
313
|
+
// Forward the caller's resolved timeout to the model layer: the AI-SDK
|
|
314
|
+
// V3 call options carry no `timeout`, so delegating chat-completions
|
|
315
|
+
// models (litellm & friends) could otherwise only ever apply their
|
|
316
|
+
// provider default per step — an explicit `timeout: "15m"` bounded the
|
|
317
|
+
// outer loop while each step stayed capped at the default.
|
|
318
|
+
// Merged namespaces (neurolink timeout forwarding + Gemini thinking) —
|
|
319
|
+
// built as ONE object; see buildProviderOptions.
|
|
320
|
+
...(providerOptions && { providerOptions }),
|
|
138
321
|
...(useStructuredOutput &&
|
|
139
322
|
options.schema && {
|
|
140
323
|
experimental_output: Output.object({ schema: options.schema }),
|
|
141
324
|
}),
|
|
142
|
-
//
|
|
143
|
-
// Gemini
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
type: "enabled",
|
|
153
|
-
budgetTokens: options.thinkingConfig.budgetTokens,
|
|
154
|
-
},
|
|
155
|
-
}),
|
|
156
|
-
// For Google Gemini 3: providerOptions with thinkingLevel
|
|
157
|
-
// For Gemini 2.5: providerOptions with thinkingBudget
|
|
158
|
-
...(isGoogleProvider && {
|
|
159
|
-
providerOptions: {
|
|
160
|
-
google: {
|
|
161
|
-
thinkingConfig: {
|
|
162
|
-
...(options.thinkingConfig.thinkingLevel && {
|
|
163
|
-
thinkingLevel: options.thinkingConfig.thinkingLevel,
|
|
164
|
-
}),
|
|
165
|
-
...(options.thinkingConfig.budgetTokens &&
|
|
166
|
-
!options.thinkingConfig.thinkingLevel && {
|
|
167
|
-
thinkingBudget: options.thinkingConfig.budgetTokens,
|
|
168
|
-
}),
|
|
169
|
-
includeThoughts: true,
|
|
170
|
-
},
|
|
171
|
-
},
|
|
172
|
-
},
|
|
173
|
-
}),
|
|
325
|
+
// Anthropic thinking: experimental_thinking with budgetTokens.
|
|
326
|
+
// (Gemini thinking rides providerOptions.google above.)
|
|
327
|
+
...(options.thinkingConfig?.enabled &&
|
|
328
|
+
isAnthropicProvider &&
|
|
329
|
+
options.thinkingConfig.budgetTokens &&
|
|
330
|
+
!options.thinkingConfig.thinkingLevel && {
|
|
331
|
+
experimental_thinking: {
|
|
332
|
+
type: "enabled",
|
|
333
|
+
budgetTokens: options.thinkingConfig.budgetTokens,
|
|
334
|
+
},
|
|
174
335
|
}),
|
|
175
336
|
experimental_telemetry: this.getTelemetryConfigFn(options, "generate"),
|
|
176
337
|
onStepFinish: ({ toolCalls, toolResults }) => {
|
|
@@ -189,6 +350,16 @@ export class GenerationHandler {
|
|
|
189
350
|
});
|
|
190
351
|
},
|
|
191
352
|
});
|
|
353
|
+
if (wrapupForced) {
|
|
354
|
+
// Non-enumerable marker read by formatEnhancedResult to report
|
|
355
|
+
// stopReason "time-limit" — the result object itself is the only
|
|
356
|
+
// artifact that travels from this call to result formatting.
|
|
357
|
+
Object.defineProperty(result, "__nlTurnWrapup", {
|
|
358
|
+
value: true,
|
|
359
|
+
enumerable: false,
|
|
360
|
+
});
|
|
361
|
+
}
|
|
362
|
+
return result;
|
|
192
363
|
}
|
|
193
364
|
/**
|
|
194
365
|
* Execute the generation with AI SDK
|
|
@@ -245,7 +416,11 @@ export class GenerationHandler {
|
|
|
245
416
|
}
|
|
246
417
|
const genStartTime = Date.now();
|
|
247
418
|
try {
|
|
248
|
-
const result = await withProviderRetry(() => this.callGenerateText(model, messages, tools, options,
|
|
419
|
+
const result = await withProviderRetry(() => this.callGenerateText(model, messages, tools, options, {
|
|
420
|
+
shouldUseTools,
|
|
421
|
+
includeStructuredOutput: true,
|
|
422
|
+
turnStartMs: genStartTime,
|
|
423
|
+
}), span, "generateText");
|
|
249
424
|
logger.info("[GenerationHandler] generateText returned", {
|
|
250
425
|
requestId,
|
|
251
426
|
durationMs: Date.now() - genStartTime,
|
|
@@ -340,7 +515,12 @@ export class GenerationHandler {
|
|
|
340
515
|
}
|
|
341
516
|
// Retry without experimental_output - the formatEnhancedResult method
|
|
342
517
|
// will extract JSON from the text response
|
|
343
|
-
const result = await withProviderRetry(() => this.callGenerateText(model, messages, tools, options,
|
|
518
|
+
const result = await withProviderRetry(() => this.callGenerateText(model, messages, tools, options, {
|
|
519
|
+
shouldUseTools,
|
|
520
|
+
// includeStructuredOutput intentionally omitted
|
|
521
|
+
includeStructuredOutput: false,
|
|
522
|
+
turnStartMs: genStartTime,
|
|
523
|
+
}), span, "generateText(fallback)");
|
|
344
524
|
// NLK-GAP-007: Record recovery event after successful fallback
|
|
345
525
|
span.addEvent("retry.recovered", {
|
|
346
526
|
"retry.attempts": 2,
|
|
@@ -391,7 +571,12 @@ export class GenerationHandler {
|
|
|
391
571
|
model: this.modelName,
|
|
392
572
|
error: error instanceof Error ? error.message : String(error),
|
|
393
573
|
});
|
|
394
|
-
const result = await withProviderRetry(() => this.callGenerateText(model, messages, tools, { ...options, temperature: undefined },
|
|
574
|
+
const result = await withProviderRetry(() => this.callGenerateText(model, messages, tools, { ...options, temperature: undefined }, {
|
|
575
|
+
shouldUseTools,
|
|
576
|
+
// mirror the initial call; the structured-output policy still applies
|
|
577
|
+
includeStructuredOutput: true,
|
|
578
|
+
turnStartMs: genStartTime,
|
|
579
|
+
}), span, "generateText(no-temperature)");
|
|
395
580
|
span.addEvent("retry.recovered", {
|
|
396
581
|
"retry.attempts": 2,
|
|
397
582
|
"retry.strategy": "temperature_omitted",
|
|
@@ -674,11 +859,40 @@ export class GenerationHandler {
|
|
|
674
859
|
: String(rawReasoning)
|
|
675
860
|
: undefined;
|
|
676
861
|
const reasoningTokens = usage.reasoning ?? undefined;
|
|
862
|
+
// stopReason / stepsUsed parity with the native loops (Vertex Gemini /
|
|
863
|
+
// Claude / Bedrock): the AI-SDK loop path previously left both undefined,
|
|
864
|
+
// so consumers could not distinguish a completed turn from one truncated
|
|
865
|
+
// by the step cap or ended by the turn budget.
|
|
866
|
+
const steps = generateResult.steps;
|
|
867
|
+
const stepsUsed = Array.isArray(steps) ? steps.length : undefined;
|
|
868
|
+
const maxSteps = options.maxSteps ?? DEFAULT_MAX_STEPS;
|
|
869
|
+
let stopReason;
|
|
870
|
+
if (generateResult.__nlTurnWrapup === true) {
|
|
871
|
+
stopReason = "time-limit";
|
|
872
|
+
}
|
|
873
|
+
else if (stepsUsed !== undefined &&
|
|
874
|
+
stepsUsed >= maxSteps &&
|
|
875
|
+
generateResult.finishReason === "tool-calls") {
|
|
876
|
+
stopReason = "step-cap";
|
|
877
|
+
}
|
|
878
|
+
else if (generateResult.finishReason === "error") {
|
|
879
|
+
// Parity with resolveTurnStopReason (native loops): a turn that ended
|
|
880
|
+
// on a provider "error" finish is not a completion. length /
|
|
881
|
+
// content-filter DO map to "completed" — deliberately matching the
|
|
882
|
+
// native contract, where truncation is signaled via finishReason /
|
|
883
|
+
// rawFinishReason / jsonTruncated, never via stopReason.
|
|
884
|
+
stopReason = "provider-error";
|
|
885
|
+
}
|
|
886
|
+
else if (stepsUsed !== undefined) {
|
|
887
|
+
stopReason = "completed";
|
|
888
|
+
}
|
|
677
889
|
return {
|
|
678
890
|
content,
|
|
679
891
|
structuredData,
|
|
680
892
|
usage,
|
|
681
893
|
finishReason: generateResult.finishReason,
|
|
894
|
+
stopReason,
|
|
895
|
+
stepsUsed,
|
|
682
896
|
jsonRepaired: jsonRepaired || undefined,
|
|
683
897
|
jsonTruncated: jsonTruncated || undefined,
|
|
684
898
|
provider: this.providerName,
|
|
@@ -1,6 +1,23 @@
|
|
|
1
1
|
import type { AIProviderName, ToolUtilities } from "../../types/index.js";
|
|
2
2
|
import type { NeuroLink } from "../../neurolink.js";
|
|
3
3
|
import type { Tool } from "../../types/index.js";
|
|
4
|
+
/**
|
|
5
|
+
* Build an argument validator for an external MCP tool's JSON Schema, in the
|
|
6
|
+
* shape the AI SDK's `jsonSchema()` wrapper expects. Returns undefined when
|
|
7
|
+
* the schema can't be compiled (exotic dialect) — the tool then keeps the
|
|
8
|
+
* previous declarative-only behaviour instead of failing registration.
|
|
9
|
+
*
|
|
10
|
+
* The error message is written for the MODEL (it is fed back verbatim as the
|
|
11
|
+
* tool-error text): it names the offending fields and restates the contract
|
|
12
|
+
* (required properties + types) so the retry can succeed on the first attempt.
|
|
13
|
+
*/
|
|
14
|
+
export declare function buildMCPSchemaValidator(toolName: string, schema: Record<string, unknown>): Promise<((value: unknown) => {
|
|
15
|
+
success: true;
|
|
16
|
+
value: unknown;
|
|
17
|
+
} | {
|
|
18
|
+
success: false;
|
|
19
|
+
error: Error;
|
|
20
|
+
}) | undefined>;
|
|
4
21
|
/**
|
|
5
22
|
* ToolsManager class - Handles all tool management operations
|
|
6
23
|
*/
|
|
@@ -13,6 +13,87 @@ function makeToolAbortError() {
|
|
|
13
13
|
e.name = "AbortError";
|
|
14
14
|
return e;
|
|
15
15
|
}
|
|
16
|
+
/**
|
|
17
|
+
* Compiled-validator cache, keyed by the ORIGINAL MCP tool inputSchema
|
|
18
|
+
* object. createExternalMCPTool runs once per external tool on EVERY
|
|
19
|
+
* getAllTools() (i.e. every generation call), and the schema object identity
|
|
20
|
+
* is stable for the lifetime of a server connection — without the cache the
|
|
21
|
+
* same JSON Schema is recompiled on every generate() (hot-path CPU for
|
|
22
|
+
* 50+-tool deployments). Rediscovery produces new schema objects, so stale
|
|
23
|
+
* entries fall out via WeakMap semantics. `undefined` values (schemas that
|
|
24
|
+
* failed to compile) are cached too — hence has()/get() rather than a
|
|
25
|
+
* get()-only check.
|
|
26
|
+
*/
|
|
27
|
+
const mcpValidatorCache = new WeakMap();
|
|
28
|
+
/**
|
|
29
|
+
* Build an argument validator for an external MCP tool's JSON Schema, in the
|
|
30
|
+
* shape the AI SDK's `jsonSchema()` wrapper expects. Returns undefined when
|
|
31
|
+
* the schema can't be compiled (exotic dialect) — the tool then keeps the
|
|
32
|
+
* previous declarative-only behaviour instead of failing registration.
|
|
33
|
+
*
|
|
34
|
+
* The error message is written for the MODEL (it is fed back verbatim as the
|
|
35
|
+
* tool-error text): it names the offending fields and restates the contract
|
|
36
|
+
* (required properties + types) so the retry can succeed on the first attempt.
|
|
37
|
+
*/
|
|
38
|
+
export async function buildMCPSchemaValidator(toolName, schema) {
|
|
39
|
+
try {
|
|
40
|
+
const { Validator } = await import("@cfworker/json-schema");
|
|
41
|
+
// draft-07: the lingua franca of MCP server inputSchemas. shortCircuit
|
|
42
|
+
// false so the error lists every violation, not just the first.
|
|
43
|
+
const validator = new Validator(schema, "7", false);
|
|
44
|
+
const required = Array.isArray(schema.required)
|
|
45
|
+
? schema.required
|
|
46
|
+
: [];
|
|
47
|
+
const properties = schema.properties && typeof schema.properties === "object"
|
|
48
|
+
? schema.properties
|
|
49
|
+
: {};
|
|
50
|
+
const contract = Object.entries(properties)
|
|
51
|
+
.map(([key, prop]) => `${key}${required.includes(key) ? "" : "?"}: ${prop?.type ?? "any"}`)
|
|
52
|
+
.join(", ");
|
|
53
|
+
return (value) => {
|
|
54
|
+
try {
|
|
55
|
+
const result = validator.validate(value);
|
|
56
|
+
if (result.valid) {
|
|
57
|
+
return { success: true, value };
|
|
58
|
+
}
|
|
59
|
+
// Root-level entries ("#") are mostly generic "instance does not
|
|
60
|
+
// match schema" noise — EXCEPT missing-required errors, which carry
|
|
61
|
+
// the offending property name and must reach the model.
|
|
62
|
+
const details = result.errors
|
|
63
|
+
.filter((e) => e.instanceLocation !== "#" || /required property/i.test(e.error))
|
|
64
|
+
.slice(0, 3)
|
|
65
|
+
.map((e) => {
|
|
66
|
+
const loc = e.instanceLocation.replace(/^#\/?/, "");
|
|
67
|
+
return loc ? `${loc}: ${e.error}` : e.error;
|
|
68
|
+
})
|
|
69
|
+
.join("; ");
|
|
70
|
+
return {
|
|
71
|
+
success: false,
|
|
72
|
+
error: new Error(`Invalid arguments for tool '${toolName}'${details ? ` — ${details}` : ""}. ` +
|
|
73
|
+
`Expected: { ${contract} } (send every non-optional property with the exact name and JSON type).`),
|
|
74
|
+
};
|
|
75
|
+
}
|
|
76
|
+
catch (validationError) {
|
|
77
|
+
// Validator crashed on this instance — treat as valid rather than
|
|
78
|
+
// block the call; the MCP-layer validator still backstops execution.
|
|
79
|
+
logger.debug(`[ToolsManager] Schema validator failed for '${toolName}', passing through`, {
|
|
80
|
+
error: validationError instanceof Error
|
|
81
|
+
? validationError.message
|
|
82
|
+
: String(validationError),
|
|
83
|
+
});
|
|
84
|
+
return { success: true, value };
|
|
85
|
+
}
|
|
86
|
+
};
|
|
87
|
+
}
|
|
88
|
+
catch (compileError) {
|
|
89
|
+
logger.debug(`[ToolsManager] Could not compile schema validator for '${toolName}' — arguments will not be pre-validated`, {
|
|
90
|
+
error: compileError instanceof Error
|
|
91
|
+
? compileError.message
|
|
92
|
+
: String(compileError),
|
|
93
|
+
});
|
|
94
|
+
return undefined;
|
|
95
|
+
}
|
|
96
|
+
}
|
|
16
97
|
/**
|
|
17
98
|
* Race a tool-execution promise against an AbortSignal so the calling loop
|
|
18
99
|
* observes a deadline/caller abort IMMEDIATELY instead of waiting for the
|
|
@@ -583,7 +664,24 @@ export class ToolsManager {
|
|
|
583
664
|
const fixedSchema = this.utilities?.fixSchemaForOpenAIStrictMode
|
|
584
665
|
? this.utilities.fixSchemaForOpenAIStrictMode(originalSchema)
|
|
585
666
|
: originalSchema;
|
|
586
|
-
|
|
667
|
+
// A jsonSchema() wrapper WITHOUT a validate function is declarative
|
|
668
|
+
// only — the AI SDK passes any parsed arguments straight through
|
|
669
|
+
// (safeValidateTypes short-circuits on `validate == null`). That let
|
|
670
|
+
// malformed calls (missing required params, "123" for a number)
|
|
671
|
+
// reach execution, where the MCP-layer validator rejected them at
|
|
672
|
+
// the cost of a full model round-trip. Attach a real validator so
|
|
673
|
+
// invalid calls fail at parse time, where experimental_repairToolCall
|
|
674
|
+
// can still fix them silently. Compiled once per schema object —
|
|
675
|
+
// see mcpValidatorCache.
|
|
676
|
+
let validate;
|
|
677
|
+
if (mcpValidatorCache.has(originalSchema)) {
|
|
678
|
+
validate = mcpValidatorCache.get(originalSchema);
|
|
679
|
+
}
|
|
680
|
+
else {
|
|
681
|
+
validate = await buildMCPSchemaValidator(tool.name, fixedSchema);
|
|
682
|
+
mcpValidatorCache.set(originalSchema, validate);
|
|
683
|
+
}
|
|
684
|
+
finalSchema = jsonSchema(fixedSchema, validate ? { validate } : {});
|
|
587
685
|
}
|
|
588
686
|
else {
|
|
589
687
|
finalSchema = this.utilities?.createPermissiveZodSchema
|
|
@@ -30,6 +30,30 @@ export declare const MODEL_CONTEXT_WINDOWS: Record<string, Record<string, number
|
|
|
30
30
|
export declare function registerRuntimeContextWindow(provider: string, model: string, contextWindow: number): void;
|
|
31
31
|
/** Test hook: clear runtime-discovered windows (state is module-global). */
|
|
32
32
|
export declare function clearRuntimeContextWindows(): void;
|
|
33
|
+
/**
|
|
34
|
+
* Runtime-discovered window for an exact provider/model pair, or undefined.
|
|
35
|
+
*
|
|
36
|
+
* Unlike {@link getContextWindowSize} this NEVER falls back to static table
|
|
37
|
+
* values. Callers use it to distinguish "the serving infrastructure told us
|
|
38
|
+
* the real window" (safe to hard-enforce: clamp max_tokens, fail fast) from
|
|
39
|
+
* "static guess" (advisory only — hard-enforcing a guessed window would
|
|
40
|
+
* falsely reject requests that the real deployment accepts).
|
|
41
|
+
*/
|
|
42
|
+
export declare function getRuntimeContextWindow(provider: string, model?: string): number | undefined;
|
|
43
|
+
/**
|
|
44
|
+
* Register a runtime-discovered output-token ceiling for a provider/model
|
|
45
|
+
* pair. Later registrations overwrite earlier ones (rediscovery refreshes
|
|
46
|
+
* values). Non-positive/non-finite ceilings are ignored so a malformed
|
|
47
|
+
* discovery source can never shrink an output budget to zero.
|
|
48
|
+
*/
|
|
49
|
+
export declare function registerRuntimeOutputCeiling(provider: string, model: string, maxOutputTokens: number): void;
|
|
50
|
+
/**
|
|
51
|
+
* Runtime-discovered output ceiling for an exact provider/model pair, or
|
|
52
|
+
* undefined when the serving infrastructure has not advertised one.
|
|
53
|
+
*/
|
|
54
|
+
export declare function getRuntimeOutputCeiling(provider: string, model?: string): number | undefined;
|
|
55
|
+
/** Test hook: clear runtime-discovered output ceilings (state is module-global). */
|
|
56
|
+
export declare function clearRuntimeOutputCeilings(): void;
|
|
33
57
|
/**
|
|
34
58
|
* Resolve context window size for a provider/model combination.
|
|
35
59
|
*
|
|
@@ -420,6 +420,56 @@ export function registerRuntimeContextWindow(provider, model, contextWindow) {
|
|
|
420
420
|
export function clearRuntimeContextWindows() {
|
|
421
421
|
RUNTIME_CONTEXT_WINDOWS.clear();
|
|
422
422
|
}
|
|
423
|
+
/**
|
|
424
|
+
* Runtime-discovered window for an exact provider/model pair, or undefined.
|
|
425
|
+
*
|
|
426
|
+
* Unlike {@link getContextWindowSize} this NEVER falls back to static table
|
|
427
|
+
* values. Callers use it to distinguish "the serving infrastructure told us
|
|
428
|
+
* the real window" (safe to hard-enforce: clamp max_tokens, fail fast) from
|
|
429
|
+
* "static guess" (advisory only — hard-enforcing a guessed window would
|
|
430
|
+
* falsely reject requests that the real deployment accepts).
|
|
431
|
+
*/
|
|
432
|
+
export function getRuntimeContextWindow(provider, model) {
|
|
433
|
+
if (!model) {
|
|
434
|
+
return undefined;
|
|
435
|
+
}
|
|
436
|
+
return RUNTIME_CONTEXT_WINDOWS.get(`${provider}:${model}`);
|
|
437
|
+
}
|
|
438
|
+
/**
|
|
439
|
+
* Runtime-discovered output-token ceilings, keyed `${provider}:${model}` —
|
|
440
|
+
* the `max_output_tokens` the serving infrastructure advertises for a model
|
|
441
|
+
* (e.g. LiteLLM `/model/info`). Same async-populate/sync-read contract as
|
|
442
|
+
* {@link registerRuntimeContextWindow}. Consumed by `getSafeMaxTokens` so
|
|
443
|
+
* requested maxTokens is clamped to the deployed model's real cap instead of
|
|
444
|
+
* a static per-provider table value.
|
|
445
|
+
*/
|
|
446
|
+
const RUNTIME_OUTPUT_CEILINGS = new Map();
|
|
447
|
+
/**
|
|
448
|
+
* Register a runtime-discovered output-token ceiling for a provider/model
|
|
449
|
+
* pair. Later registrations overwrite earlier ones (rediscovery refreshes
|
|
450
|
+
* values). Non-positive/non-finite ceilings are ignored so a malformed
|
|
451
|
+
* discovery source can never shrink an output budget to zero.
|
|
452
|
+
*/
|
|
453
|
+
export function registerRuntimeOutputCeiling(provider, model, maxOutputTokens) {
|
|
454
|
+
if (!Number.isFinite(maxOutputTokens) || maxOutputTokens <= 0) {
|
|
455
|
+
return;
|
|
456
|
+
}
|
|
457
|
+
RUNTIME_OUTPUT_CEILINGS.set(`${provider}:${model}`, maxOutputTokens);
|
|
458
|
+
}
|
|
459
|
+
/**
|
|
460
|
+
* Runtime-discovered output ceiling for an exact provider/model pair, or
|
|
461
|
+
* undefined when the serving infrastructure has not advertised one.
|
|
462
|
+
*/
|
|
463
|
+
export function getRuntimeOutputCeiling(provider, model) {
|
|
464
|
+
if (!model) {
|
|
465
|
+
return undefined;
|
|
466
|
+
}
|
|
467
|
+
return RUNTIME_OUTPUT_CEILINGS.get(`${provider}:${model}`);
|
|
468
|
+
}
|
|
469
|
+
/** Test hook: clear runtime-discovered output ceilings (state is module-global). */
|
|
470
|
+
export function clearRuntimeOutputCeilings() {
|
|
471
|
+
RUNTIME_OUTPUT_CEILINGS.clear();
|
|
472
|
+
}
|
|
423
473
|
/**
|
|
424
474
|
* Resolve context window size for a provider/model combination.
|
|
425
475
|
*
|
|
@@ -23,6 +23,12 @@ export declare function getContextOverflowProvider(error: unknown): string | nul
|
|
|
23
23
|
export declare function parseProviderOverflowDetails(error: unknown): {
|
|
24
24
|
actualTokens: number;
|
|
25
25
|
budgetTokens: number;
|
|
26
|
+
/**
|
|
27
|
+
* Output tokens the rejected request asked for, when the message states
|
|
28
|
+
* them separately (vllm/LiteLLM phrasing). Lets recovery re-fit
|
|
29
|
+
* max_tokens instead of shrinking the input.
|
|
30
|
+
*/
|
|
31
|
+
requestedOutputTokens?: number;
|
|
26
32
|
} | null;
|
|
27
33
|
/**
|
|
28
34
|
* Extract error message from various error formats.
|
|
@@ -113,6 +113,24 @@ export function parseProviderOverflowDetails(error) {
|
|
|
113
113
|
budgetTokens: parseInt(openaiMax[1].replace(/,/g, ""), 10),
|
|
114
114
|
};
|
|
115
115
|
}
|
|
116
|
+
// vllm / LiteLLM-proxied backends: "This model's maximum context length is
|
|
117
|
+
// N tokens. However, you requested X output tokens and your prompt contains
|
|
118
|
+
// at least Y input tokens..." — input and requested-output are stated
|
|
119
|
+
// separately (no "resulted in"), so recovery can re-fit max_tokens to
|
|
120
|
+
// N − Y instead of shrinking the input.
|
|
121
|
+
const vllmInput = message.match(/prompt\s+contains\s+at\s+least\s+(\d[\d,]{0,19})\s+input\s+tokens/i);
|
|
122
|
+
if (vllmInput && openaiMax) {
|
|
123
|
+
const requestedOutput = message.match(/requested\s+(\d[\d,]{0,19})\s+output\s+tokens/i);
|
|
124
|
+
return {
|
|
125
|
+
actualTokens: parseInt(vllmInput[1].replace(/,/g, ""), 10),
|
|
126
|
+
budgetTokens: parseInt(openaiMax[1].replace(/,/g, ""), 10),
|
|
127
|
+
...(requestedOutput
|
|
128
|
+
? {
|
|
129
|
+
requestedOutputTokens: parseInt(requestedOutput[1].replace(/,/g, ""), 10),
|
|
130
|
+
}
|
|
131
|
+
: {}),
|
|
132
|
+
};
|
|
133
|
+
}
|
|
116
134
|
// Anthropic pattern: "X tokens > Y token limit" or "X tokens, limit Y"
|
|
117
135
|
// Use single character-class number groups to prevent ReDoS (CodeQL: js/polynomial-redos)
|
|
118
136
|
const anthropicMatch = message.match(/(\d[\d,]{0,19})\s*tokens?\s*[>:]\s*(\d[\d,]{0,19})/i);
|