@tangle-network/agent-eval 0.65.0 → 0.67.0

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 +25 -0
  2. package/dist/adapters/otel.d.ts +1 -1
  3. package/dist/campaign/index.d.ts +110 -6
  4. package/dist/campaign/index.js +26 -19
  5. package/dist/campaign/index.js.map +1 -1
  6. package/dist/{chunk-7TPYV2ER.js → chunk-6XQIEUQ2.js} +140 -7
  7. package/dist/chunk-6XQIEUQ2.js.map +1 -0
  8. package/dist/{chunk-HKINEDRZ.js → chunk-DFS3FEXO.js} +3 -2
  9. package/dist/chunk-DFS3FEXO.js.map +1 -0
  10. package/dist/chunk-MZ2IYGGN.js +592 -0
  11. package/dist/chunk-MZ2IYGGN.js.map +1 -0
  12. package/dist/{chunk-4ODZXQV2.js → chunk-NV2PF37Q.js} +645 -2
  13. package/dist/chunk-NV2PF37Q.js.map +1 -0
  14. package/dist/contract/index.d.ts +11 -9
  15. package/dist/contract/index.js +11 -12
  16. package/dist/contract/index.js.map +1 -1
  17. package/dist/hosted/index.d.ts +1 -1
  18. package/dist/hosted/index.js +1 -1
  19. package/dist/{index-CzhtwYBT.d.ts → index-DSEHMwvS.d.ts} +4 -2
  20. package/dist/index.d.ts +251 -7
  21. package/dist/index.js +292 -2
  22. package/dist/index.js.map +1 -1
  23. package/dist/openapi.json +1 -1
  24. package/dist/provenance-CChUqexv.d.ts +314 -0
  25. package/dist/{registry-DPly4_hZ.d.ts → registry-BGKyX6bw.d.ts} +2 -2
  26. package/dist/release-report-CN8hJlhk.d.ts +233 -0
  27. package/dist/reporting.d.ts +4 -3
  28. package/dist/{run-campaign-5J3ED2UJ.js → run-campaign-BVY3RGAZ.js} +2 -3
  29. package/dist/{provenance-lqyLpOYR.d.ts → run-improvement-loop-BKpM5T4t.d.ts} +51 -329
  30. package/dist/statistics-B7yCbi9i.d.ts +253 -0
  31. package/dist/{types-DhqpAi_z.d.ts → types-Croy5h7V.d.ts} +1 -1
  32. package/package.json +1 -1
  33. package/dist/chunk-4ODZXQV2.js.map +0 -1
  34. package/dist/chunk-7TPYV2ER.js.map +0 -1
  35. package/dist/chunk-CZRKD2X2.js +0 -1104
  36. package/dist/chunk-CZRKD2X2.js.map +0 -1
  37. package/dist/chunk-E22YUOAL.js +0 -111
  38. package/dist/chunk-E22YUOAL.js.map +0 -1
  39. package/dist/chunk-HKINEDRZ.js.map +0 -1
  40. package/dist/release-report-DGoeObZT.d.ts +0 -484
  41. /package/dist/{run-campaign-5J3ED2UJ.js.map → run-campaign-BVY3RGAZ.js.map} +0 -0
@@ -1,484 +0,0 @@
1
- import { C as ContinuousAgreementOptions, a as ContinuousAgreement } from './judge-calibration-DilmB3Ml.js';
2
- import { a as JudgeScore } from './types-DhqpAi_z.js';
3
- import { D as DatasetSplit, c as DatasetManifest, a as DatasetScenario } from './dataset-B2kL-fSM.js';
4
- import { m as GateDecision } from './summary-report-ByiOUrHj.js';
5
- import { R as RunRecord, b as RunSplitTag } from './run-record-BgTFzO2r.js';
6
-
7
- /**
8
- * Release confidence gate.
9
- *
10
- * This is the production-facing composition layer over the lower-level
11
- * primitives:
12
- * - Dataset manifests prove corpus/version coverage.
13
- * - RunRecord rows prove reproducible search/holdout outcomes.
14
- * - Multi-shot trace evidence carries turn counts and ASI diagnostics.
15
- * - HeldOutGate decisions remain the paired promotion authority.
16
- *
17
- * The gate is intentionally pure and conservative. Missing declared evidence
18
- * fails closed instead of being treated as a neutral zero.
19
- */
20
-
21
- /** Severity of an actionable finding attached to a run/trace. */
22
- type AsiSeverity = 'info' | 'warning' | 'error' | 'critical';
23
- /** Actionable side-info — a diagnosed finding the loop can act on. */
24
- interface ActionableSideInfo {
25
- /** Stable expectation/check id when available. */
26
- expectationId?: string;
27
- /** Human-readable diagnosis of what happened. */
28
- message: string;
29
- severity?: AsiSeverity;
30
- /** Concrete trace excerpt, file path, tool call, screenshot id, etc. */
31
- evidence?: string;
32
- /** Prompt/tool/context surface likely responsible. */
33
- responsibleSurface?: string;
34
- /** Suggested fix in natural language. */
35
- suggestion?: string;
36
- /** Whether this expectation was satisfied. Defaults to false for ASI rows. */
37
- matched?: boolean;
38
- metadata?: Record<string, unknown>;
39
- }
40
- type ReleaseConfidenceStatus = 'pass' | 'warn' | 'fail';
41
- type ReleaseConfidenceAxisName = 'corpus' | 'quality' | 'generalization' | 'diagnostics' | 'efficiency';
42
- interface ReleaseTraceEvidence {
43
- scenarioId: string;
44
- candidateId?: string;
45
- split?: RunSplitTag;
46
- score?: number;
47
- ok?: boolean;
48
- turnCount?: number;
49
- costUsd?: number;
50
- durationMs?: number;
51
- failureMode?: string;
52
- asi?: ActionableSideInfo[];
53
- metadata?: Record<string, unknown>;
54
- }
55
- interface ReleaseConfidenceThresholds {
56
- /** Require a Dataset manifest or explicit scenarios. Default true. */
57
- requireCorpus?: boolean;
58
- minScenarioCount?: number;
59
- minSearchRuns?: number;
60
- minHoldoutRuns?: number;
61
- /** Require at least one holdout scenario/run. Default true. */
62
- requireHoldout?: boolean;
63
- minPassRate?: number;
64
- minMeanScore?: number;
65
- /** Search mean may exceed holdout mean by at most this much. */
66
- maxOverfitGap?: number;
67
- maxMeanCostUsd?: number;
68
- maxP95WallMs?: number;
69
- /** Low-score/failed rows must carry ASI. Default true. */
70
- requireAsiForFailures?: boolean;
71
- /** Score below this is considered a failure for ASI coverage. Default 0.5. */
72
- failureScoreThreshold?: number;
73
- }
74
- interface ReleaseConfidenceInput {
75
- target: string;
76
- candidateId?: string;
77
- baselineId?: string;
78
- dataset?: DatasetManifest;
79
- scenarios?: readonly DatasetScenario[];
80
- runs?: readonly RunRecord[];
81
- traces?: readonly ReleaseTraceEvidence[];
82
- gateDecision?: GateDecision | null;
83
- thresholds?: ReleaseConfidenceThresholds;
84
- }
85
- interface ReleaseConfidenceAxis {
86
- name: ReleaseConfidenceAxisName;
87
- status: ReleaseConfidenceStatus;
88
- score: number;
89
- detail: string;
90
- }
91
- interface ReleaseConfidenceIssue {
92
- axis: ReleaseConfidenceAxisName;
93
- severity: 'critical' | 'warning';
94
- code: string;
95
- detail: string;
96
- }
97
- interface ReleaseConfidenceMetrics {
98
- scenarioCount: number;
99
- searchRuns: number;
100
- holdoutRuns: number;
101
- passRate: number;
102
- meanScore: number;
103
- searchMeanScore: number;
104
- holdoutMeanScore: number;
105
- overfitGap: number;
106
- meanCostUsd: number;
107
- p95WallMs: number;
108
- failedRows: number;
109
- failuresWithAsi: number;
110
- singleShotTraces: number;
111
- multiShotTraces: number;
112
- splitCounts: Record<DatasetSplit, number>;
113
- domainCounts: Record<string, number>;
114
- failureModeCounts: Record<string, number>;
115
- responsibleSurfaceCounts: Record<string, number>;
116
- }
117
- interface ReleaseConfidenceScorecard {
118
- target: string;
119
- candidateId: string | null;
120
- baselineId: string | null;
121
- status: ReleaseConfidenceStatus;
122
- promote: boolean;
123
- axes: ReleaseConfidenceAxis[];
124
- issues: ReleaseConfidenceIssue[];
125
- metrics: ReleaseConfidenceMetrics;
126
- dataset: DatasetManifest | null;
127
- gateDecision: GateDecision | null;
128
- summary: string;
129
- }
130
- declare function evaluateReleaseConfidence(input: ReleaseConfidenceInput): ReleaseConfidenceScorecard;
131
- declare function assertReleaseConfidence(input: ReleaseConfidenceInput): ReleaseConfidenceScorecard;
132
-
133
- /**
134
- * Normalize scores so all dimensions follow "higher = better".
135
- * Inverted dimensions (hallucination, false_confidence, worst_failure)
136
- * already use inverted scoring in the prompt (10 = no hallucination),
137
- * but this function ensures consistency if raw scores leak through.
138
- */
139
- declare function normalizeScores(scores: JudgeScore[]): JudgeScore[];
140
- /** Weighted mean — falls back to uniform weights when omitted */
141
- declare function weightedMean(scores: {
142
- score: number;
143
- weight?: number;
144
- }[]): number;
145
- /** Bootstrap confidence interval */
146
- declare function confidenceInterval(scores: number[], confidence?: number, opts?: {
147
- seed?: number;
148
- resamples?: number;
149
- }): {
150
- mean: number;
151
- lower: number;
152
- upper: number;
153
- };
154
- /**
155
- * Inter-rater reliability — simplified Krippendorff's alpha.
156
- *
157
- * Each inner array is one judge's scores for all items.
158
- * All arrays must have the same length (same items scored).
159
- */
160
- declare function interRaterReliability(judgeScores: JudgeScore[][]): number;
161
- /**
162
- * Mann-Whitney U test for comparing two independent groups.
163
- * Returns U statistic and approximate p-value (normal approximation).
164
- */
165
- declare function mannWhitneyU(a: number[], b: number[]): {
166
- u: number;
167
- p: number;
168
- };
169
- /** Partial credit: returns 0-1 ratio of current toward target */
170
- declare function partialCredit(current: number, target: number): number;
171
- /**
172
- * Paired t-test — before/after measurements on the SAME items.
173
- * Pairing removes inter-item variance, giving tighter significance than
174
- * an unpaired test when comparing prompt v1 vs prompt v2 on identical
175
- * scenarios.
176
- */
177
- declare function pairedTTest(before: number[], after: number[]): {
178
- t: number;
179
- df: number;
180
- p: number;
181
- };
182
- /**
183
- * Wilcoxon signed-rank test — paired non-parametric alternative.
184
- * Use when the differences aren't normally distributed.
185
- */
186
- declare function wilcoxonSignedRank(before: number[], after: number[]): {
187
- w: number;
188
- p: number;
189
- };
190
- /**
191
- * Cohen's d — standardized effect size for two independent groups.
192
- * Positive d means group b has higher mean than group a.
193
- * Rule of thumb: |d| < 0.2 negligible, 0.2–0.5 small, 0.5–0.8 medium, > 0.8 large.
194
- */
195
- declare function cohensD(a: number[], b: number[]): number;
196
- type CliffsMagnitude = 'negligible' | 'small' | 'medium' | 'large';
197
- /**
198
- * Cliff's delta — a non-parametric effect size for two independent samples.
199
- * `δ = (#(after > before) − #(after < before)) / (n_before · n_after)`,
200
- * ranging [-1, 1]. Positive ⇒ `after` tends to exceed `before` (improvement).
201
- *
202
- * Distribution-free counterpart to Cohen's d: no normality assumption, robust
203
- * to the bounded/skewed score distributions judges produce. Pairs with
204
- * `pairedBootstrap` / `wilcoxonSignedRank` for the non-parametric reporting
205
- * path. Returns 0 when either sample is empty.
206
- */
207
- declare function cliffsDelta(before: number[], after: number[]): number;
208
- /**
209
- * Map a Cliff's delta to a qualitative magnitude using the standard
210
- * Romano et al. thresholds (|δ|): <0.147 negligible, <0.33 small,
211
- * <0.474 medium, else large.
212
- */
213
- declare function interpretCliffs(delta: number): CliffsMagnitude;
214
- interface WeightedCompositeInput {
215
- /** Per-dimension scores (typically 0..1). */
216
- dims: Record<string, number>;
217
- /** Weight per dimension. Every weighted dimension MUST be present in
218
- * `dims` — a weight for an absent dimension is a config error and throws,
219
- * because silently dropping it would renormalise the composite onto a
220
- * different denominator than intended. */
221
- weights: Record<string, number>;
222
- /** Optional pass threshold; when set, the result reports `pass`. */
223
- threshold?: number;
224
- }
225
- interface WeightedCompositeResult {
226
- composite: number;
227
- pass?: boolean;
228
- }
229
- /**
230
- * Weighted composite over judge dimensions: `Σ(score_d · w_d) / Σ(w_d)` across
231
- * the weighted dimensions. The canonical replacement for the per-consumer
232
- * hand-rolled composite math (tax/legal/creative/gtm each ship a copy).
233
- *
234
- * Fail-loud: throws if a weighted dimension is missing from `dims`, if any
235
- * weight is negative, or if the weights sum to 0 — none of which can produce
236
- * a meaningful composite.
237
- */
238
- declare function weightedComposite(input: WeightedCompositeInput): WeightedCompositeResult;
239
- interface CorpusScoreRecord {
240
- /** Stable identifier for the rated item (scenario, span, turn, …). */
241
- itemId: string;
242
- /** Identifier for the judge that produced this score. */
243
- judgeName: string;
244
- /** Dimension name (matches `JudgeScore.dimension`). */
245
- dimension: string;
246
- /** Numeric score; must be finite. */
247
- score: number;
248
- }
249
- interface CorpusAgreementPerDimension extends ContinuousAgreement {
250
- dimension: string;
251
- /** Item IDs that contributed to this dimension's matrix (every judge scored them). */
252
- itemIds: string[];
253
- /** Judge IDs that contributed to this dimension's matrix. */
254
- judgeIds: string[];
255
- }
256
- interface CorpusAgreementReport {
257
- /** Per-dimension ICC(2,1) + κ_w + Pearson + Spearman + bootstrap CIs. */
258
- perDimension: CorpusAgreementPerDimension[];
259
- /** Mean ICC across dimensions (NaN if no dimension yielded a finite ICC). */
260
- overallIcc: number;
261
- /** Mean weighted κ across dimensions (NaN if none finite). */
262
- overallWeightedKappa: number;
263
- /** Dimensions evaluated (sorted). */
264
- dimensions: string[];
265
- /** Judges seen across the corpus (sorted). */
266
- judgeIds: string[];
267
- }
268
- interface CorpusAgreementOptions extends ContinuousAgreementOptions {
269
- /**
270
- * Restrict the audit to these dimensions. Default = every dimension
271
- * that appears in the input. A dimension named here but absent from
272
- * the input throws — silent omission would corrupt the overall metric.
273
- */
274
- dimensions?: string[];
275
- /**
276
- * Restrict the audit to these judges. Default = every judge that
277
- * appears in the input. A judge named here but absent from a
278
- * dimension throws (see "fail loud" below).
279
- */
280
- judges?: string[];
281
- }
282
- /**
283
- * Corpus-wide inter-rater agreement across N items × M judges × D dimensions.
284
- *
285
- * For each dimension, builds the [n_items][n_judges] matrix of scores
286
- * (keeping only items every judge rated on that dimension), then runs
287
- * `continuousAgreement` to get ICC(2,1), κ_w, Pearson, Spearman, and
288
- * bootstrap CIs. Reports a pooled mean across dimensions as a single
289
- * "is this judge panel reliable on this corpus?" number.
290
- *
291
- * Fail-loud contract:
292
- * - Empty input throws.
293
- * - Fewer than 2 judges or fewer than 2 items per dimension throws.
294
- * - A judge present in some dimensions but with zero scored items on
295
- * another dimension throws (would silently shrink the matrix).
296
- * - Duplicate (itemId, judgeName, dimension) records throw.
297
- */
298
- declare function corpusInterRaterAgreement(records: CorpusScoreRecord[], opts?: CorpusAgreementOptions): CorpusAgreementReport;
299
- /**
300
- * Convenience adapter for `JudgeScore[]` data keyed externally by item.
301
- *
302
- * Use when you have per-item arrays of `JudgeScore[]` (e.g. one
303
- * `ScenarioResult.judgeScores` per scenario) and want corpus-wide
304
- * agreement without manually flattening. `itemId` must be unique per
305
- * row of `itemsScores`.
306
- */
307
- declare function corpusInterRaterAgreementFromJudgeScores(itemsScores: Array<{
308
- itemId: string;
309
- scores: JudgeScore[];
310
- }>, opts?: CorpusAgreementOptions): CorpusAgreementReport;
311
- /**
312
- * Required N per arm for a two-sample comparison at target effect size,
313
- * alpha, and power. Normal-approximation formula:
314
- * n = 2 * ( (z_{1-α/2} + z_{1-β}) / d )^2
315
- * where d is Cohen's d. Returns Infinity for effect ≤ 0.
316
- */
317
- declare function requiredSampleSize(opts: {
318
- effect: number;
319
- alpha?: number;
320
- power?: number;
321
- twoSided?: boolean;
322
- }): number;
323
- /**
324
- * Minimum detectable paired effect (standardised units) for a target paired
325
- * sample size: d_min = (z_{1-α/2} + z_β) / sqrt(n_paired). Multiply by
326
- * sd(deltas) for score units; treat as a lower bound — Wilcoxon and bootstrap
327
- * have asymptotic relative efficiency below 1 vs the t-test on heavy tails.
328
- */
329
- declare function pairedMde(opts: {
330
- nPaired: number;
331
- alpha?: number;
332
- power?: number;
333
- twoSided?: boolean;
334
- }): number;
335
- /** Bonferroni adjustment: multiply every p-value by the test count, clamp at 1. */
336
- declare function bonferroni(pValues: number[], alpha?: number): {
337
- adjusted: number[];
338
- significant: boolean[];
339
- };
340
- /**
341
- * Benjamini–Hochberg false discovery rate. Returns adjusted q-values and
342
- * significance at the target FDR; handles ties and preserves q monotonicity.
343
- */
344
- declare function benjaminiHochberg(pValues: number[], fdr?: number): {
345
- qValues: number[];
346
- significant: boolean[];
347
- };
348
- interface PairedBootstrapResult {
349
- /** Number of paired observations. */
350
- n: number;
351
- /** Median of paired deltas (after − before). */
352
- median: number;
353
- /** Mean of paired deltas. */
354
- mean: number;
355
- /** Lower bound of the bootstrap CI on the chosen statistic. */
356
- low: number;
357
- /** Upper bound of the bootstrap CI on the chosen statistic. */
358
- high: number;
359
- /** Confidence level used (e.g. 0.95). */
360
- confidence: number;
361
- /** Number of bootstrap resamples used. */
362
- resamples: number;
363
- }
364
- interface PairedBootstrapOptions {
365
- /** Confidence level. Default 0.95. */
366
- confidence?: number;
367
- /** Bootstrap resample count. Default 2000. */
368
- resamples?: number;
369
- /** Statistic to bootstrap. Default 'median'. */
370
- statistic?: 'median' | 'mean';
371
- /** Deterministic seed. If omitted, uses Math.random(). */
372
- seed?: number;
373
- }
374
- /**
375
- * Paired bootstrap on (after − before) deltas. Returns a CI on the chosen
376
- * statistic (median by default); pairs are resampled with replacement. The
377
- * lower bound is what the promotion gate checks — `low > threshold` means the
378
- * gain is real at the confidence level. Throws on unequal sample sizes.
379
- */
380
- declare function pairedBootstrap(before: number[], after: number[], opts?: PairedBootstrapOptions): PairedBootstrapResult;
381
-
382
- /**
383
- * Bootstrap-CI promotion gate.
384
- *
385
- * In any iterative-improvement loop (GEPA, prompt evolution, dataset
386
- * curation), the question is "did this generation actually improve, or are
387
- * we celebrating noise?". With small N and noisy outcomes, point-estimate
388
- * deltas lie. Bootstrap confidence intervals tell the operator whether the
389
- * delta is real before code or prompts get promoted.
390
- *
391
- * This module is pure functions — no I/O, no model calls. Easy to unit-test
392
- * and to compose into any verdict gate.
393
- *
394
- * Default gate:
395
- * - Bootstrap mean baseline vs candidate (1k resamples).
396
- * - Compute the delta distribution; pass if the lower CI bound > 0.
397
- * - Tunable confidence (default 95%) and resample count.
398
- *
399
- * Verdict semantics intentionally match the existing `experiments.jsonl`
400
- * vocabulary:
401
- * - ADVANCE: candidate's CI lower bound > baseline mean (real win)
402
- * - KEEP: overlap, but candidate point estimate >= baseline (neutral)
403
- * - REVERT: candidate's CI upper bound < baseline mean (real regression)
404
- * - INCONCLUSIVE: not enough samples or CI straddles zero with no signal
405
- */
406
- type Verdict = 'ADVANCE' | 'KEEP' | 'REVERT' | 'INCONCLUSIVE';
407
- interface BootstrapResult {
408
- baselineMean: number;
409
- candidateMean: number;
410
- /** candidateMean - baselineMean, point estimate. */
411
- delta: number;
412
- /** Lower bound of the (1 - alpha) CI on the delta. */
413
- ciLower: number;
414
- /** Upper bound of the (1 - alpha) CI on the delta. */
415
- ciUpper: number;
416
- /** Number of bootstrap resamples used. */
417
- iterations: number;
418
- alpha: number;
419
- verdict: Verdict;
420
- }
421
- interface BootstrapOptions {
422
- /** Confidence level alpha (default 0.05 → 95% CI). */
423
- alpha?: number;
424
- /** Number of resamples (default 1000). */
425
- iterations?: number;
426
- /**
427
- * Minimum total samples (baseline + candidate) below which we always
428
- * return INCONCLUSIVE — bootstrap with too few samples is meaningless.
429
- * Default 6 (combined).
430
- */
431
- minTotalSamples?: number;
432
- /** RNG seed for reproducibility. Default: Math.random. */
433
- seed?: number;
434
- }
435
- /**
436
- * Compute the bootstrap CI on (candidateMean - baselineMean) and a verdict.
437
- *
438
- * Uses simple percentile bootstrap on the difference of resampled means.
439
- * That's the standard non-parametric primitive — no distributional
440
- * assumptions, robust to skew, easy to reason about.
441
- */
442
- declare function bootstrapCi(baseline: number[], candidate: number[], options?: BootstrapOptions): BootstrapResult;
443
- /**
444
- * Judge-replay promotion gate.
445
- *
446
- * The cheap inner-loop judge that drives an evolution run is by definition
447
- * fast and noisy. When you're about to promote a winning variant to the
448
- * canonical default, you want a STRONGER judge (a more expensive model, a
449
- * human grader, a separately-trained reward model) to confirm the win
450
- * generalises beyond the inner loop.
451
- *
452
- * This helper takes raw winner + baseline outputs, scores both through the
453
- * stronger judge, and applies `bootstrapCi`. ADVANCE means the stronger
454
- * judge agrees the winner is real with the configured confidence. Doesn't
455
- * matter what shape your "output" is — pass a string, an object, anything
456
- * the judge can read.
457
- */
458
- interface JudgeReplayGateArgs<TOutput> {
459
- baselineOutputs: TOutput[];
460
- candidateOutputs: TOutput[];
461
- /** Stronger judge — async to allow LLM calls. Return a 0..N scalar score. */
462
- judge: (output: TOutput) => Promise<number> | number;
463
- alpha?: number;
464
- iterations?: number;
465
- /** RNG seed for reproducibility. */
466
- seed?: number;
467
- /** Maximum concurrent judge calls. Default 4. */
468
- judgeConcurrency?: number;
469
- }
470
- declare function judgeReplayGate<TOutput>(args: JudgeReplayGateArgs<TOutput>): Promise<BootstrapResult & {
471
- baselineSamples: number;
472
- candidateSamples: number;
473
- }>;
474
-
475
- interface RenderReleaseReportOptions {
476
- title?: string;
477
- runs?: readonly RunRecord[];
478
- comparator?: string;
479
- traceAnalystFindings?: readonly string[];
480
- nextActions?: readonly string[];
481
- }
482
- declare function renderReleaseReport(scorecard: ReleaseConfidenceScorecard, options?: RenderReleaseReportOptions): string;
483
-
484
- export { type ActionableSideInfo as A, type BootstrapOptions as B, type CliffsMagnitude as C, cliffsDelta as D, cohensD as E, confidenceInterval as F, corpusInterRaterAgreement as G, corpusInterRaterAgreementFromJudgeScores as H, interRaterReliability as I, type JudgeReplayGateArgs as J, interpretCliffs as K, mannWhitneyU as L, normalizeScores as M, pairedMde as N, pairedTTest as O, type PairedBootstrapOptions as P, partialCredit as Q, type ReleaseConfidenceAxis as R, requiredSampleSize as S, weightedComposite as T, weightedMean as U, type Verdict as V, type WeightedCompositeInput as W, type BootstrapResult as a, type PairedBootstrapResult as b, type ReleaseConfidenceAxisName as c, type ReleaseConfidenceInput as d, type ReleaseConfidenceIssue as e, type ReleaseConfidenceMetrics as f, type ReleaseConfidenceScorecard as g, type ReleaseConfidenceStatus as h, type ReleaseConfidenceThresholds as i, type ReleaseTraceEvidence as j, type RenderReleaseReportOptions as k, assertReleaseConfidence as l, benjaminiHochberg as m, bootstrapCi as n, evaluateReleaseConfidence as o, judgeReplayGate as p, pairedBootstrap as q, renderReleaseReport as r, type AsiSeverity as s, type CorpusAgreementOptions as t, type CorpusAgreementPerDimension as u, type CorpusAgreementReport as v, wilcoxonSignedRank as w, type CorpusScoreRecord as x, type WeightedCompositeResult as y, bonferroni as z };