@tangle-network/agent-eval 0.145.18 → 0.145.20

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.
@@ -1,6 +1,6 @@
1
1
  import { p as CostProvenance } from "../cost-ledger-DbQdN3nO.js";
2
2
  import { w as JudgeScore } from "../types-BjsNDR49.js";
3
- import { o as MatrixResult } from "../index-CvjYbU0D.js";
3
+ import { o as MatrixResult } from "../index-D_P7Ye43.js";
4
4
  import { AgentProfile } from "@tangle-network/agent-interface";
5
5
  //#region src/multishot/types.d.ts
6
6
  interface MultishotMessage {
@@ -27,7 +27,17 @@ interface MultishotResult {
27
27
  artifacts: MultishotArtifact[];
28
28
  toolCalls: number;
29
29
  durationMs: number;
30
+ /** Known spend. A subtotal, not a total, when `costProvenance.kind` is
31
+ * `uncaptured`. */
30
32
  costUsd: number;
33
+ /** Origin of `costUsd`. A shot that priced every call reports `estimated`
34
+ * or `observed`; a shot with a call the router priced at nothing reports
35
+ * `uncaptured`, and the matrix records the cell as under-counted instead of
36
+ * presenting the subtotal as a complete estimate.
37
+ *
38
+ * Optional so an engine written before this field keeps working; the matrix
39
+ * then judges the cell on judge receipts alone, as it did before. */
40
+ costProvenance?: CostProvenance;
31
41
  }
32
42
  interface MultishotToolDefinition {
33
43
  type: 'function';
@@ -110,6 +120,27 @@ declare class MultishotDriverEmptyError extends Error {
110
120
  declare class MultishotFatalToolError extends Error {
111
121
  constructor(message: string);
112
122
  }
123
+ declare class MultishotShotResultError extends Error {
124
+ constructor(reason: string);
125
+ }
126
+ /** Contract guard for the value a caller-supplied shot resolves with. The
127
+ * matrix writes per-cell artifacts, builds judge inputs, and meters cost from
128
+ * this value, so a malformed result must stop the cell instead of scoring a
129
+ * degraded one. Two silent degradations this closes: an artifact with no
130
+ * `type` matches neither the code nor the content artifact set, so the cell
131
+ * scores as though the artifact was never produced; a non-finite `costUsd`
132
+ * reaches `summary.totalCostUsd` and makes every cost number NaN.
133
+ *
134
+ * A rejected cell is still billed: the matrix cell reads the shot's own
135
+ * `costUsd` when it is a usable amount and declares that spend on the throw,
136
+ * so money the shot spent before returning a malformed result stays in the
137
+ * cumulative sum the cost ceiling reads. A result whose `costUsd` is itself
138
+ * malformed carries no usable amount, and the cell records as `uncaptured`.
139
+ *
140
+ * Every required field of `MultishotMessage` and `MultishotArtifact` is
141
+ * checked, including `toolCalls` elements and `invocation.args`. Optional
142
+ * fields are checked only when present. */
143
+ declare function assertMultishotShotResult(value: unknown): asserts value is MultishotResult;
113
144
  //#endregion
114
145
  //#region src/multishot/router.d.ts
115
146
  interface RouterCompletionRequest {
@@ -225,6 +256,60 @@ declare function renderDimensions(dims: readonly JudgeDimension[]): string;
225
256
  /** Convenience: build the "Respond with ONLY this JSON" footer for a judge prompt. */
226
257
  declare function renderJsonFooter(dims: readonly JudgeDimension[]): string;
227
258
  //#endregion
259
+ //#region src/multishot/multishot.d.ts
260
+ interface RunMultishotOptions<TPersona extends MultishotPersona> {
261
+ profile: AgentProfile;
262
+ persona: TPersona;
263
+ /** Persona-shaping callbacks. Optional — omitted callbacks are derived from
264
+ * the profile + persona payload, so a pure-profile call works. */
265
+ shape?: MultishotShape<TPersona>;
266
+ /** Tool definitions advertised to the agent. Defaults to delegate_research + delegate_code. */
267
+ tools?: MultishotToolDefinition[];
268
+ /** Map from tool name → executor invoked inline when the agent emits a tool_call. */
269
+ toolExecutors?: Record<string, MultishotToolExecutor>;
270
+ /** Map from tool name → artifact type label written into MultishotArtifact.type.
271
+ * Tools without a mapping still execute, but their results aren't surfaced as
272
+ * typed artifacts (only as tool messages in the transcript). */
273
+ artifactTypeFor?: (toolName: string) => string | undefined;
274
+ maxTurns?: number;
275
+ agentModel?: string;
276
+ driverModel?: string;
277
+ /** Fallback driver models tried when the primary simulated-user model returns empty twice. */
278
+ driverFallbackModels?: string[];
279
+ /** Maximum output tokens for the first agent call in each assistant turn. */
280
+ agentMaxTokens?: number;
281
+ /** Maximum output tokens for agent follow-up calls after tool results. */
282
+ toolFollowupMaxTokens?: number;
283
+ /** Maximum output tokens for each simulated-user driver response. */
284
+ driverMaxTokens?: number;
285
+ /** Maximum tool calls the agent may dispatch inside one assistant turn. */
286
+ maxToolDispatches?: number;
287
+ /** Execution seam for the agent leg. When provided, every agent inference
288
+ * step goes through this function instead of the router HTTP call; the
289
+ * string levers (agentModel, apiKey, baseUrl) stop applying to that leg.
290
+ * apiKey/baseUrl are still resolved for tool executors and any leg
291
+ * without an injected transport. */
292
+ agentTransport?: MultishotTransport;
293
+ /** Execution seam for the simulated-user driver leg (symmetric to
294
+ * agentTransport). Driver model fallback rotation still applies — the
295
+ * transport receives each candidate model in turn. */
296
+ driverTransport?: MultishotTransport;
297
+ apiKey?: string;
298
+ baseUrl?: string;
299
+ signal?: AbortSignal;
300
+ }
301
+ /** One multishot shot — the conversation engine `runMultishotMatrix` invokes
302
+ * once per cell. `runMultishot` is the default implementation.
303
+ *
304
+ * An alternative engine (a graph-backed conversation, a replay of a recorded
305
+ * transcript, a sandbox-hosted agent) implements this exact signature and
306
+ * reaches the matrix through `RunMultishotMatrixOptions.runShot`. The matrix
307
+ * keeps every other cell mechanic — cell fan-out, concurrency, the cost
308
+ * ceiling, the judge slots, the cell composite, and the per-cell writers — so
309
+ * swapping the engine needs no copy of the cell body. */
310
+ type MultishotShot<TPersona extends MultishotPersona> = (opts: RunMultishotOptions<TPersona>) => Promise<MultishotResult>;
311
+ declare function runMultishot<TPersona extends MultishotPersona>(opts: RunMultishotOptions<TPersona>): Promise<MultishotResult>;
312
+ //#endregion
228
313
  //#region src/multishot/matrix.d.ts
229
314
  interface ConversationJudgeInput<TPersona extends MultishotPersona> {
230
315
  transcript: MultishotMessage[];
@@ -295,6 +380,10 @@ interface RunMultishotMatrixOptions<TPersona extends MultishotPersona> {
295
380
  maxConcurrency?: number;
296
381
  /** Total $ ceiling across the matrix; cells aborted past this. */
297
382
  costCeiling?: number;
383
+ /** Upper bound on what one cell can spend. A cell whose cost is a subtotal
384
+ * is charged this bound against `costCeiling` instead of its known amount,
385
+ * so hidden spend cannot walk the run past its budget. */
386
+ maxCellCostUsd?: number;
298
387
  /** Agent model. */
299
388
  agentModel?: string;
300
389
  /** Driver model. */
@@ -315,11 +404,29 @@ interface RunMultishotMatrixOptions<TPersona extends MultishotPersona> {
315
404
  agentTransport?: MultishotTransport;
316
405
  /** Execution seam for the simulated-user driver leg of every cell. */
317
406
  driverTransport?: MultishotTransport;
407
+ /** Conversation engine for every cell. Defaults to `runMultishot`.
408
+ *
409
+ * The matrix owns everything around the shot — cell fan-out, concurrency,
410
+ * the cost ceiling, the judge slots, the cell composite, the per-cell
411
+ * artifact writers and the run summary — and forwards the whole cell input
412
+ * to this function, so an alternative engine replaces ONLY the
413
+ * conversation. Every option on this interface that `runMultishot` accepts
414
+ * reaches the shot unchanged. `RunMultishotOptions.signal` has no
415
+ * matrix-level counterpart and is not forwarded; a shot owns its own
416
+ * cancellation.
417
+ *
418
+ * A shot that resolves with a value outside `MultishotResult` throws
419
+ * `MultishotShotResultError` for that cell. The default engine is never
420
+ * used as a fallback. */
421
+ runShot?: MultishotShot<TPersona>;
318
422
  /** Pass-thru fields. */
319
423
  apiKey?: string;
320
424
  baseUrl?: string;
321
425
  }
322
- interface CellOutput {
426
+ /** Per-cell output the multishot matrix records in `MatrixResult.cells`.
427
+ * A consumer that supplies its own `runShot` reads the matrix through this
428
+ * type instead of declaring a structural copy. */
429
+ interface MultishotCellOutput {
323
430
  turns: number;
324
431
  toolCalls: number;
325
432
  artifactCount: number;
@@ -343,54 +450,10 @@ declare function computeCellComposite(input: CellCompositeInput): {
343
450
  allJudgesFailed: boolean;
344
451
  };
345
452
  interface RunMultishotMatrixResult {
346
- matrix: MatrixResult<CellOutput>;
453
+ matrix: MatrixResult<MultishotCellOutput>;
347
454
  }
348
455
  declare function runMultishotMatrix<TPersona extends MultishotPersona>(opts: RunMultishotMatrixOptions<TPersona>): Promise<RunMultishotMatrixResult>;
349
456
  //#endregion
350
- //#region src/multishot/multishot.d.ts
351
- interface RunMultishotOptions<TPersona extends MultishotPersona> {
352
- profile: AgentProfile;
353
- persona: TPersona;
354
- /** Persona-shaping callbacks. Optional — omitted callbacks are derived from
355
- * the profile + persona payload, so a pure-profile call works. */
356
- shape?: MultishotShape<TPersona>;
357
- /** Tool definitions advertised to the agent. Defaults to delegate_research + delegate_code. */
358
- tools?: MultishotToolDefinition[];
359
- /** Map from tool name → executor invoked inline when the agent emits a tool_call. */
360
- toolExecutors?: Record<string, MultishotToolExecutor>;
361
- /** Map from tool name → artifact type label written into MultishotArtifact.type.
362
- * Tools without a mapping still execute, but their results aren't surfaced as
363
- * typed artifacts (only as tool messages in the transcript). */
364
- artifactTypeFor?: (toolName: string) => string | undefined;
365
- maxTurns?: number;
366
- agentModel?: string;
367
- driverModel?: string;
368
- /** Fallback driver models tried when the primary simulated-user model returns empty twice. */
369
- driverFallbackModels?: string[];
370
- /** Maximum output tokens for the first agent call in each assistant turn. */
371
- agentMaxTokens?: number;
372
- /** Maximum output tokens for agent follow-up calls after tool results. */
373
- toolFollowupMaxTokens?: number;
374
- /** Maximum output tokens for each simulated-user driver response. */
375
- driverMaxTokens?: number;
376
- /** Maximum tool calls the agent may dispatch inside one assistant turn. */
377
- maxToolDispatches?: number;
378
- /** Execution seam for the agent leg. When provided, every agent inference
379
- * step goes through this function instead of the router HTTP call; the
380
- * string levers (agentModel, apiKey, baseUrl) stop applying to that leg.
381
- * apiKey/baseUrl are still resolved for tool executors and any leg
382
- * without an injected transport. */
383
- agentTransport?: MultishotTransport;
384
- /** Execution seam for the simulated-user driver leg (symmetric to
385
- * agentTransport). Driver model fallback rotation still applies — the
386
- * transport receives each candidate model in turn. */
387
- driverTransport?: MultishotTransport;
388
- apiKey?: string;
389
- baseUrl?: string;
390
- signal?: AbortSignal;
391
- }
392
- declare function runMultishot<TPersona extends MultishotPersona>(opts: RunMultishotOptions<TPersona>): Promise<MultishotResult>;
393
- //#endregion
394
457
  //#region src/multishot/shape-defaults.d.ts
395
458
  /** Persona payload rendered as stable `- key: value` lines. `id` is identity,
396
459
  * not voice, and structured values are serialized so nothing is dropped. */
@@ -405,5 +468,5 @@ declare function defaultMultishotDriverSystemPrompt(profile: AgentProfile, perso
405
468
  * profile-derived defaults fill the rest. */
406
469
  declare function defaultShapeFromProfile<TPersona extends MultishotPersona>(profile: AgentProfile, shape?: MultishotShape<TPersona>): Required<MultishotShape<TPersona>>;
407
470
  //#endregion
408
- export { type ArtifactJudgeInput, type CellCompositeInput, type CellCompositeScore, type ConversationJudgeInput, DEFAULT_CODER_MODEL, DEFAULT_DELEGATE_CODE_TOOL, DEFAULT_DELEGATE_RESEARCH_TOOL, DEFAULT_JUDGE_MODEL, DEFAULT_RESEARCHER_MODEL, type DefaultCoderConfig, type DefaultResearcherConfig, type DefaultToolsBundle, type DefaultToolsConfig, type JudgeConfig, type JudgeDimension, type JudgeRunResult, type JudgeScore, type MultishotArtifact, MultishotDriverEmptyError, MultishotFatalToolError, type MultishotJudges, type MultishotMessage, type MultishotPersona, type MultishotResult, type MultishotShape, type MultishotToolDefinition, type MultishotToolExecutor, type MultishotTransport, type MultishotTransportRequest, type MultishotTransportResponse, type MultishotTransportToolCall, type RouterCompletionRequest, type RouterCompletionResponse, type RouterToolCall, type RunMultishotMatrixOptions, type RunMultishotMatrixResult, type RunMultishotOptions, computeCellComposite, createCodeExecutor, createResearchExecutor, defaultDelegationTools, defaultMultishotDriverSystemPrompt, defaultMultishotOpener, defaultRouterBaseUrl, defaultShapeFromProfile, estimateRouterCost, renderDimensions, renderJsonFooter, renderPersonaFacts, requireRouterApiKey, routerCompletion, runJudge, runMultishot, runMultishotMatrix };
471
+ export { type ArtifactJudgeInput, type CellCompositeInput, type CellCompositeScore, type ConversationJudgeInput, DEFAULT_CODER_MODEL, DEFAULT_DELEGATE_CODE_TOOL, DEFAULT_DELEGATE_RESEARCH_TOOL, DEFAULT_JUDGE_MODEL, DEFAULT_RESEARCHER_MODEL, type DefaultCoderConfig, type DefaultResearcherConfig, type DefaultToolsBundle, type DefaultToolsConfig, type JudgeConfig, type JudgeDimension, type JudgeRunResult, type JudgeScore, type MultishotArtifact, type MultishotCellOutput, MultishotDriverEmptyError, MultishotFatalToolError, type MultishotJudges, type MultishotMessage, type MultishotPersona, type MultishotResult, type MultishotShape, type MultishotShot, MultishotShotResultError, type MultishotToolDefinition, type MultishotToolExecutor, type MultishotTransport, type MultishotTransportRequest, type MultishotTransportResponse, type MultishotTransportToolCall, type RouterCompletionRequest, type RouterCompletionResponse, type RouterToolCall, type RunMultishotMatrixOptions, type RunMultishotMatrixResult, type RunMultishotOptions, assertMultishotShotResult, computeCellComposite, createCodeExecutor, createResearchExecutor, defaultDelegationTools, defaultMultishotDriverSystemPrompt, defaultMultishotOpener, defaultRouterBaseUrl, defaultShapeFromProfile, estimateRouterCost, renderDimensions, renderJsonFooter, renderPersonaFacts, requireRouterApiKey, routerCompletion, runJudge, runMultishot, runMultishotMatrix };
409
472
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","names":[],"sources":["../../src/multishot/types.ts","../../src/multishot/router.ts","../../src/multishot/default-tools.ts","../../src/multishot/judges.ts","../../src/multishot/matrix.ts","../../src/multishot/multishot.ts","../../src/multishot/shape-defaults.ts"],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","names":[],"sources":["../../src/multishot/types.ts","../../src/multishot/router.ts","../../src/multishot/default-tools.ts","../../src/multishot/judges.ts","../../src/multishot/multishot.ts","../../src/multishot/matrix.ts","../../src/multishot/shape-defaults.ts"],"mappings":"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"}