@tangle-network/agent-eval 0.145.2 → 0.145.4
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 +22 -0
- package/dist/analyst/index.d.ts +2 -2
- package/dist/analyst/index.js +2 -2
- package/dist/{benchmark-command-mJSa_4zd.js → benchmark-command-BANo4dTm.js} +6 -6
- package/dist/{benchmark-command-mJSa_4zd.js.map → benchmark-command-BANo4dTm.js.map} +1 -1
- package/dist/benchmarks/index.d.ts +2 -2
- package/dist/benchmarks/index.js +3 -3
- package/dist/campaign/index.d.ts +4 -4
- package/dist/campaign/index.js +6 -6
- package/dist/{campaign-BYjBAypg.js → campaign-FY23WYzZ.js} +504 -25
- package/dist/campaign-FY23WYzZ.js.map +1 -0
- package/dist/cli.js +1 -1
- package/dist/contract/index.d.ts +3 -3
- package/dist/contract/index.js +4 -4
- package/dist/{define-agent-eval-sH24zBfM.d.ts → define-agent-eval-DcAcC1yQ.d.ts} +2 -2
- package/dist/{define-agent-eval-sH24zBfM.d.ts.map → define-agent-eval-DcAcC1yQ.d.ts.map} +1 -1
- package/dist/{define-agent-eval-iqjT--ZZ.js → define-agent-eval-xaceIpPS.js} +3 -3
- package/dist/{define-agent-eval-iqjT--ZZ.js.map → define-agent-eval-xaceIpPS.js.map} +1 -1
- package/dist/{dspy-rlm-engine-B_qhSc21.js → dspy-rlm-engine-BZ2aMZEd.js} +2 -2
- package/dist/{dspy-rlm-engine-B_qhSc21.js.map → dspy-rlm-engine-BZ2aMZEd.js.map} +1 -1
- package/dist/{external-optimizer-process-BTiNB-RH.js → external-optimizer-process-BRE56woM.js} +2 -2
- package/dist/{external-optimizer-process-BTiNB-RH.js.map → external-optimizer-process-BRE56woM.js.map} +1 -1
- package/dist/{external-optimizer-subprocess-DrJ9hR8u.js → external-optimizer-subprocess-BhKYK0Jv.js} +6 -4
- package/dist/external-optimizer-subprocess-BhKYK0Jv.js.map +1 -0
- package/dist/{index-CUczrQ7a.d.ts → index-Dytg99g1.d.ts} +101 -4
- package/dist/index-Dytg99g1.d.ts.map +1 -0
- package/dist/index.d.ts +2 -2
- package/dist/index.js +4 -4
- package/dist/{llm-judge-dZ8P6nGI.js → llm-judge-BPKBdQTp.js} +8 -5
- package/dist/llm-judge-BPKBdQTp.js.map +1 -0
- package/dist/openapi.json +1 -1
- package/dist/{produced-state-DU79a81m.js → produced-state-B_-TW9o0.js} +2 -2
- package/dist/{produced-state-DU79a81m.js.map → produced-state-B_-TW9o0.js.map} +1 -1
- package/dist/{provenance-CCdxgLDT.d.ts → provenance-C_ln89b0.d.ts} +15 -1
- package/dist/provenance-C_ln89b0.d.ts.map +1 -0
- package/dist/{skillopt-optimization-method-C5cotF4E.d.ts → skillopt-optimization-method-CkySQ0ca.d.ts} +2 -2
- package/dist/{skillopt-optimization-method-C5cotF4E.d.ts.map → skillopt-optimization-method-CkySQ0ca.d.ts.map} +1 -1
- package/dist/{skillopt-optimization-method-jjdnc3YK.js → skillopt-optimization-method-CxrOjp1S.js} +4 -4
- package/dist/{skillopt-optimization-method-jjdnc3YK.js.map → skillopt-optimization-method-CxrOjp1S.js.map} +1 -1
- package/docs/eval-surface-map.md +11 -0
- package/package.json +1 -1
- package/dist/campaign-BYjBAypg.js.map +0 -1
- package/dist/external-optimizer-subprocess-DrJ9hR8u.js.map +0 -1
- package/dist/index-CUczrQ7a.d.ts.map +0 -1
- package/dist/llm-judge-dZ8P6nGI.js.map +0 -1
- package/dist/provenance-CCdxgLDT.d.ts.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,28 @@ All notable changes to `@tangle-network/agent-eval` and its sibling `agent-eval-
|
|
|
8
8
|
|
|
9
9
|
---
|
|
10
10
|
|
|
11
|
+
## [0.145.4] — 2026-08-12
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
|
|
15
|
+
- Consumers that split one profile matrix across bounded external grants can
|
|
16
|
+
create one Eval-owned plan, pass disjoint rows to each segment, reuse the
|
|
17
|
+
same segment identity to resume failed cells, and call finalization only
|
|
18
|
+
after every declared row is claimed.
|
|
19
|
+
- Finalization preserves the ordinary `runProfileMatrix` result and reports
|
|
20
|
+
missing, failed, and zero-score rows separately.
|
|
21
|
+
|
|
22
|
+
---
|
|
23
|
+
|
|
24
|
+
## [0.145.3] — 2026-08-12
|
|
25
|
+
|
|
26
|
+
### Fixed
|
|
27
|
+
|
|
28
|
+
- Accept and preserve a provider-qualified snapshot when an optimizer callback reports the requested model.
|
|
29
|
+
- Reject true model substitution and conflicting response and receipt identities.
|
|
30
|
+
|
|
31
|
+
---
|
|
32
|
+
|
|
11
33
|
## [0.145.2] — 2026-08-12
|
|
12
34
|
|
|
13
35
|
### Changed
|
package/dist/analyst/index.d.ts
CHANGED
|
@@ -1299,7 +1299,7 @@ declare const ANALYST_BENCHMARK_HELP = "agent-eval analyst-benchmark\n\nRun the
|
|
|
1299
1299
|
declare const ANALYST_BENCHMARK_IMPLEMENTATION_DIGEST_ALGORITHM = "sha256-canonical-source-manifest";
|
|
1300
1300
|
declare const ANALYST_BENCHMARK_DEPENDENCY_LOCK_DIGEST_ALGORITHM = "sha256-canonical-file-manifest";
|
|
1301
1301
|
declare const ANALYST_BENCHMARK_DEPENDENCY_LOCK_FILES: readonly string[];
|
|
1302
|
-
declare const ANALYST_BENCHMARK_DEPENDENCY_LOCK_SHA256 = "
|
|
1302
|
+
declare const ANALYST_BENCHMARK_DEPENDENCY_LOCK_SHA256 = "45a5c51773d54898165ee5d6ab339f0b5b20c028378f6ea52350797a778da092";
|
|
1303
1303
|
/** The published benchmark evidence was produced at this package version, by
|
|
1304
1304
|
* the retired one-shot direct runner, before trace analysts moved to the
|
|
1305
1305
|
* recursive DSPy RLM engine. Both evidence digests below are historical facts
|
|
@@ -1311,7 +1311,7 @@ declare const ANALYST_BENCHMARK_EVIDENCE_PACKAGE_VERSION = "0.137.0";
|
|
|
1311
1311
|
declare const ANALYST_BENCHMARK_EVIDENCE_DEPENDENCY_LOCK_SHA256 = "1e03f2daed356d60316aabefb407ec1e437ac94d408d61eea4ae096e9c6fbb5b";
|
|
1312
1312
|
declare const ANALYST_BENCHMARK_EVIDENCE_IMPLEMENTATION_SHA256 = "4dba263b6256a30d56c7fdb2d992d3a953c0035d731f359b704db806f68f75ac";
|
|
1313
1313
|
declare const ANALYST_BENCHMARK_IMPLEMENTATION_FILES: readonly string[];
|
|
1314
|
-
declare const ANALYST_BENCHMARK_IMPLEMENTATION_SHA256 = "
|
|
1314
|
+
declare const ANALYST_BENCHMARK_IMPLEMENTATION_SHA256 = "4a960df94935a8177be12a64d20083510ca4afbfa050533a9356447f39c6f846";
|
|
1315
1315
|
declare function analystBenchmarkImplementationDigest(): string;
|
|
1316
1316
|
declare function analystBenchmarkDependencyLockDigest(): string;
|
|
1317
1317
|
//#endregion
|
package/dist/analyst/index.js
CHANGED
|
@@ -4,10 +4,10 @@ import { i as isProposalFinding, n as clamp01, r as assertProposalFindings, t as
|
|
|
4
4
|
import { a as settleUsageReceiptFromCostLedger, n as makeFinding, r as makeProposalFinding, s as validateUsageSettlementTimeout, t as computeFindingId } from "../types-BI4fT3HN.js";
|
|
5
5
|
import { A as coerceJson, B as renderFindingSubject, D as RawAnalystFindingSchema, E as RawAnalystEvidenceSchema, F as FINDING_SUBJECT_SYNTAX, H as resolveTraceAnalystLimits, I as FindingSubjectStringSchema, L as KIND_EXPECTED_SUBJECTS, M as stripCodeFences, N as FINDING_SUBJECT_GRAMMAR_PROMPT, O as evidenceRefsFromRawFinding, P as FINDING_SUBJECT_KINDS, R as findingSubjectGrammarPromptFor, T as RAW_FINDING_SCHEMA_PROMPT, V as DEFAULT_TRACE_ANALYST_LIMITS, a as buildTraceToolsForGroup, i as runTraceAnalyst, j as coerceToFindingRows, k as parseRawFinding, n as renderPriorFindings, r as renderUpstreamFindings, t as createTraceAnalyst, w as ANALYST_SEVERITIES, z as parseFindingSubject } from "../kind-factory-CPmSd58s.js";
|
|
6
6
|
import { a as assertExactRegistryRunOpts, c as KNOWLEDGE_GAP_KIND_SPEC, d as CONTROL_INTEGRITY_ANALYST, f as ControlIntegrityAnalyst, h as deriveEfficiencyFindings, i as ExactAnalystRunExecutionError, l as IMPROVEMENT_KIND_SPEC, m as behavioralAnalyst, n as buildDefaultAnalystRegistry, o as DEFAULT_TRACE_ANALYST_KINDS, p as emitControlIntegrityFindings, r as AnalystRegistry, s as KNOWLEDGE_POISONING_KIND_SPEC, t as createChatClient, u as FAILURE_MODE_KIND_SPEC } from "../chat-client-Bp4Ebuuc.js";
|
|
7
|
-
import { t as createDspyRlmTraceEngine } from "../dspy-rlm-engine-
|
|
7
|
+
import { t as createDspyRlmTraceEngine } from "../dspy-rlm-engine-BZ2aMZEd.js";
|
|
8
8
|
import { a as diffFindings, i as defaultIsMaterial, n as runSemanticConceptJudge, r as FindingsStore, t as SEMANTIC_CONCEPT_JUDGE_VERSION } from "../semantic-concept-judge-BiJxScqe.js";
|
|
9
9
|
import { a as scoreAnalystFindings, i as summarizeAnalystBenchmarkRunner, n as runAnalystBenchmark, r as traceStoreEvidenceResolver, t as registryBenchmarkRunner } from "../benchmark-BhT16ep9.js";
|
|
10
|
-
import { $ as analystBenchmarkDependencyLockDigest, A as compareAnalystRunners, B as DEFAULT_MAX_VERIFICATION_ARTIFACT_BYTES, C as analystDefinitionProtocolSha256, D as readAnalystBenchmarkArtifact, E as expandCodeTraceFailureBlocks, F as MAX_INCORRECT_BLOCKS, G as ANALYST_BENCHMARK_DEPENDENCY_LOCK_FILES, H as loadCodeTraceVerificationArtifacts, I as MAX_INCORRECT_BLOCK_STEPS, J as ANALYST_BENCHMARK_EVIDENCE_IMPLEMENTATION_SHA256, K as ANALYST_BENCHMARK_DEPENDENCY_LOCK_SHA256, L as publicBenchmarkProtocolSha256, M as effectiveAnalystProtocolSha256, N as readAnalystInstructionsOverride, O as renderCodeTraceCalibrationMarkdown, P as CODE_TRACE_BENCH_ANALYST_PROMPT, Q as ANALYST_BENCHMARK_IMPLEMENTATION_SHA256, R as publicBenchmarkRlmInstructions, S as analystDefinitionAsymmetries, T as emptyPublicBenchmarkRunner, U as parseVerificationOutcome, V as appendVerificationArtifactsToOtlp, W as ANALYST_BENCHMARK_DEPENDENCY_LOCK_DIGEST_ALGORITHM, X as ANALYST_BENCHMARK_IMPLEMENTATION_DIGEST_ALGORITHM, Y as ANALYST_BENCHMARK_EVIDENCE_PACKAGE_VERSION, Z as ANALYST_BENCHMARK_IMPLEMENTATION_FILES, _ as runReplVariableAnalystDefinition, a as primeAnalystProtocolSha256, at as AGENT_RX_UPSTREAM_REVISION, b as runChunkedAnalystDefinition, c as nodeHttpPrimeBridgeTransport, ct as codeTraceBenchCase, d as publicBenchmarkDistributions, dt as agentRxPredictionsToFindings, et as analystBenchmarkImplementationDigest, f as publicBenchmarkSelectionReport, ft as normalizeAgentRxCategory, g as rlmEngineLimits, h as publicRlmAnalystDefinition, i as createPrimeBenchmarkRunner, it as ANALYST_BENCHMARK_OBSERVATIONS_FILE, j as analystInstructionsOverrideFromText, k as summarizeCodeTraceCalibration, l as loadPublicBenchmarkRows, lt as codeTracerPredictionsToFindings, m as createPublicBenchmarkRlmRunner, mt as normalizeBenchmarkLabel, n as runAnalystBenchmarkCommand, nt as ANALYST_BENCHMARK_LOCAL_RECEIPT_FILE, o as primeCodeTraceAnalystDefinition, ot as renderAgentRxCalibrationMarkdown, p as selectPublicBenchmarkRows, pt as roundAgentRxStep, q as ANALYST_BENCHMARK_EVIDENCE_DEPENDENCY_LOCK_SHA256, r as renderAnalystBenchmarkMarkdown, rt as ANALYST_BENCHMARK_MANIFEST_FILE, s as runInlineAnalystDefinition, st as summarizeAgentRxCalibration, t as ANALYST_BENCHMARK_HELP, tt as ANALYST_BENCHMARK_COST_LEDGER_FILE, u as preparePublicAnalystBenchmark, ut as agentRxBenchmarkCase, v as createPublicBenchmarkDirectRunner, w as adaptPublicBenchmarkFindings, x as AnalystExpressivenessError, y as publicDirectAnalystDefinition, z as publicBenchmarkSystemPrompt } from "../benchmark-command-
|
|
10
|
+
import { $ as analystBenchmarkDependencyLockDigest, A as compareAnalystRunners, B as DEFAULT_MAX_VERIFICATION_ARTIFACT_BYTES, C as analystDefinitionProtocolSha256, D as readAnalystBenchmarkArtifact, E as expandCodeTraceFailureBlocks, F as MAX_INCORRECT_BLOCKS, G as ANALYST_BENCHMARK_DEPENDENCY_LOCK_FILES, H as loadCodeTraceVerificationArtifacts, I as MAX_INCORRECT_BLOCK_STEPS, J as ANALYST_BENCHMARK_EVIDENCE_IMPLEMENTATION_SHA256, K as ANALYST_BENCHMARK_DEPENDENCY_LOCK_SHA256, L as publicBenchmarkProtocolSha256, M as effectiveAnalystProtocolSha256, N as readAnalystInstructionsOverride, O as renderCodeTraceCalibrationMarkdown, P as CODE_TRACE_BENCH_ANALYST_PROMPT, Q as ANALYST_BENCHMARK_IMPLEMENTATION_SHA256, R as publicBenchmarkRlmInstructions, S as analystDefinitionAsymmetries, T as emptyPublicBenchmarkRunner, U as parseVerificationOutcome, V as appendVerificationArtifactsToOtlp, W as ANALYST_BENCHMARK_DEPENDENCY_LOCK_DIGEST_ALGORITHM, X as ANALYST_BENCHMARK_IMPLEMENTATION_DIGEST_ALGORITHM, Y as ANALYST_BENCHMARK_EVIDENCE_PACKAGE_VERSION, Z as ANALYST_BENCHMARK_IMPLEMENTATION_FILES, _ as runReplVariableAnalystDefinition, a as primeAnalystProtocolSha256, at as AGENT_RX_UPSTREAM_REVISION, b as runChunkedAnalystDefinition, c as nodeHttpPrimeBridgeTransport, ct as codeTraceBenchCase, d as publicBenchmarkDistributions, dt as agentRxPredictionsToFindings, et as analystBenchmarkImplementationDigest, f as publicBenchmarkSelectionReport, ft as normalizeAgentRxCategory, g as rlmEngineLimits, h as publicRlmAnalystDefinition, i as createPrimeBenchmarkRunner, it as ANALYST_BENCHMARK_OBSERVATIONS_FILE, j as analystInstructionsOverrideFromText, k as summarizeCodeTraceCalibration, l as loadPublicBenchmarkRows, lt as codeTracerPredictionsToFindings, m as createPublicBenchmarkRlmRunner, mt as normalizeBenchmarkLabel, n as runAnalystBenchmarkCommand, nt as ANALYST_BENCHMARK_LOCAL_RECEIPT_FILE, o as primeCodeTraceAnalystDefinition, ot as renderAgentRxCalibrationMarkdown, p as selectPublicBenchmarkRows, pt as roundAgentRxStep, q as ANALYST_BENCHMARK_EVIDENCE_DEPENDENCY_LOCK_SHA256, r as renderAnalystBenchmarkMarkdown, rt as ANALYST_BENCHMARK_MANIFEST_FILE, s as runInlineAnalystDefinition, st as summarizeAgentRxCalibration, t as ANALYST_BENCHMARK_HELP, tt as ANALYST_BENCHMARK_COST_LEDGER_FILE, u as preparePublicAnalystBenchmark, ut as agentRxBenchmarkCase, v as createPublicBenchmarkDirectRunner, w as adaptPublicBenchmarkFindings, x as AnalystExpressivenessError, y as publicDirectAnalystDefinition, z as publicBenchmarkSystemPrompt } from "../benchmark-command-BANo4dTm.js";
|
|
11
11
|
import { a as extractPrimeJsonObject, c as primeProtocolSha256, d as runPrimeExchange, f as decodeReplyRows, i as emptyPrimeRawUsage, l as primeReplyDefect, n as buildPrimePrompt, o as mergePrimeRawUsage, r as buildPrimeRepairPrompt, s as normalizePrimeUsage, t as analystUsageReceiptFromPrimeUsage, u as projectPrimeTrajectory } from "../prime-protocol-6tZTVsWm.js";
|
|
12
12
|
import { existsSync, readFileSync, readdirSync, statSync } from "node:fs";
|
|
13
13
|
import { join } from "node:path";
|
|
@@ -4,14 +4,14 @@ import { a as resolveModelPricing } from "./metrics-Cl0L1KUy.js";
|
|
|
4
4
|
import { a as CostLedgerPersistenceError, i as CostLedger, n as CostCallConflictError, o as CostReceiptCaptureError, r as CostCeilingReachedError, s as CostReservationExceededError, t as CostAccountingIncompleteError } from "./cost-ledger-BSe92yAV.js";
|
|
5
5
|
import { c as writeLedgerFileAtomically, s as withLedgerFileLock } from "./ledger-core-BmZt19oQ.js";
|
|
6
6
|
import { i as hashCanonical, r as canonicalString } from "./canonical-D-XsTQ6_.js";
|
|
7
|
-
import { b as createRunCostLedger, i as startExternalOptimizerModelProxy, r as runWithCleanup, v as resolveExternalOptimizerProcessLimits, x as fsCampaignStorage } from "./external-optimizer-subprocess-
|
|
7
|
+
import { b as createRunCostLedger, i as startExternalOptimizerModelProxy, r as runWithCleanup, v as resolveExternalOptimizerProcessLimits, x as fsCampaignStorage } from "./external-optimizer-subprocess-BhKYK0Jv.js";
|
|
8
8
|
import { n as makeFinding, o as usageReceiptFromCostLedger } from "./types-BI4fT3HN.js";
|
|
9
9
|
import { D as RawAnalystFindingSchema, O as evidenceRefsFromRawFinding, T as RAW_FINDING_SCHEMA_PROMPT, h as TRACE_ANALYSIS_LIMITS, i as runTraceAnalyst } from "./kind-factory-CPmSd58s.js";
|
|
10
10
|
import { c as callLlmJson, r as LlmResponseError, t as LlmCallError } from "./llm-client-d0-2TT1g.js";
|
|
11
|
-
import { t as createDspyRlmTraceEngine } from "./dspy-rlm-engine-
|
|
11
|
+
import { t as createDspyRlmTraceEngine } from "./dspy-rlm-engine-BZ2aMZEd.js";
|
|
12
12
|
import { i as otlpTextToTraceAnalysisStore, r as createOtlpBufferTraceStore, t as DEFAULT_MAX_TRACE_FILE_BYTES } from "./store-otlp-CsptLYpN.js";
|
|
13
13
|
import { i as summarizeAnalystBenchmarkRunner, n as runAnalystBenchmark, r as traceStoreEvidenceResolver } from "./benchmark-BhT16ep9.js";
|
|
14
|
-
import { n as acquireSingleRunLock } from "./external-optimizer-process-
|
|
14
|
+
import { n as acquireSingleRunLock } from "./external-optimizer-process-BRE56woM.js";
|
|
15
15
|
import { c as primeProtocolSha256, d as runPrimeExchange, f as decodeReplyRows, n as buildPrimePrompt, p as assertEqualDeclarativeTerms, t as analystUsageReceiptFromPrimeUsage, u as projectPrimeTrajectory } from "./prime-protocol-6tZTVsWm.js";
|
|
16
16
|
import { createHash, randomUUID } from "node:crypto";
|
|
17
17
|
import { constants, existsSync, lstatSync, readFileSync } from "node:fs";
|
|
@@ -1209,7 +1209,7 @@ const ANALYST_BENCHMARK_DEPENDENCY_LOCK_FILES = Object.freeze([
|
|
|
1209
1209
|
"package.json",
|
|
1210
1210
|
"pnpm-lock.yaml"
|
|
1211
1211
|
]);
|
|
1212
|
-
const ANALYST_BENCHMARK_DEPENDENCY_LOCK_SHA256 = "
|
|
1212
|
+
const ANALYST_BENCHMARK_DEPENDENCY_LOCK_SHA256 = "45a5c51773d54898165ee5d6ab339f0b5b20c028378f6ea52350797a778da092";
|
|
1213
1213
|
/** The published benchmark evidence was produced at this package version, by
|
|
1214
1214
|
* the retired one-shot direct runner, before trace analysts moved to the
|
|
1215
1215
|
* recursive DSPy RLM engine. Both evidence digests below are historical facts
|
|
@@ -1327,7 +1327,7 @@ const ANALYST_BENCHMARK_IMPLEMENTATION_FILES = Object.freeze([
|
|
|
1327
1327
|
"src/trace/raw-provider-sink.ts",
|
|
1328
1328
|
"src/verdict-cache.ts"
|
|
1329
1329
|
]);
|
|
1330
|
-
const ANALYST_BENCHMARK_IMPLEMENTATION_SHA256 = "
|
|
1330
|
+
const ANALYST_BENCHMARK_IMPLEMENTATION_SHA256 = "4a960df94935a8177be12a64d20083510ca4afbfa050533a9356447f39c6f846";
|
|
1331
1331
|
function analystBenchmarkImplementationDigest() {
|
|
1332
1332
|
return ANALYST_BENCHMARK_IMPLEMENTATION_SHA256;
|
|
1333
1333
|
}
|
|
@@ -6369,4 +6369,4 @@ function shellQuote(value) {
|
|
|
6369
6369
|
//#endregion
|
|
6370
6370
|
export { analystBenchmarkDependencyLockDigest as $, compareAnalystRunners as A, DEFAULT_MAX_VERIFICATION_ARTIFACT_BYTES as B, analystDefinitionProtocolSha256 as C, readAnalystBenchmarkArtifact as D, expandCodeTraceFailureBlocks as E, MAX_INCORRECT_BLOCKS as F, ANALYST_BENCHMARK_DEPENDENCY_LOCK_FILES as G, loadCodeTraceVerificationArtifacts as H, MAX_INCORRECT_BLOCK_STEPS as I, ANALYST_BENCHMARK_EVIDENCE_IMPLEMENTATION_SHA256 as J, ANALYST_BENCHMARK_DEPENDENCY_LOCK_SHA256 as K, publicBenchmarkProtocolSha256 as L, effectiveAnalystProtocolSha256 as M, readAnalystInstructionsOverride as N, renderCodeTraceCalibrationMarkdown as O, CODE_TRACE_BENCH_ANALYST_PROMPT as P, ANALYST_BENCHMARK_IMPLEMENTATION_SHA256 as Q, publicBenchmarkRlmInstructions as R, analystDefinitionAsymmetries as S, emptyPublicBenchmarkRunner as T, parseVerificationOutcome as U, appendVerificationArtifactsToOtlp as V, ANALYST_BENCHMARK_DEPENDENCY_LOCK_DIGEST_ALGORITHM as W, ANALYST_BENCHMARK_IMPLEMENTATION_DIGEST_ALGORITHM as X, ANALYST_BENCHMARK_EVIDENCE_PACKAGE_VERSION as Y, ANALYST_BENCHMARK_IMPLEMENTATION_FILES as Z, runReplVariableAnalystDefinition as _, primeAnalystProtocolSha256 as a, AGENT_RX_UPSTREAM_REVISION as at, runChunkedAnalystDefinition as b, nodeHttpPrimeBridgeTransport as c, codeTraceBenchCase as ct, publicBenchmarkDistributions as d, agentRxPredictionsToFindings as dt, analystBenchmarkImplementationDigest as et, publicBenchmarkSelectionReport as f, normalizeAgentRxCategory as ft, rlmEngineLimits as g, publicRlmAnalystDefinition as h, createPrimeBenchmarkRunner as i, ANALYST_BENCHMARK_OBSERVATIONS_FILE as it, analystInstructionsOverrideFromText as j, summarizeCodeTraceCalibration as k, loadPublicBenchmarkRows as l, codeTracerPredictionsToFindings as lt, createPublicBenchmarkRlmRunner as m, normalizeBenchmarkLabel as mt, runAnalystBenchmarkCommand as n, ANALYST_BENCHMARK_LOCAL_RECEIPT_FILE as nt, primeCodeTraceAnalystDefinition as o, renderAgentRxCalibrationMarkdown as ot, selectPublicBenchmarkRows as p, roundAgentRxStep as pt, ANALYST_BENCHMARK_EVIDENCE_DEPENDENCY_LOCK_SHA256 as q, renderAnalystBenchmarkMarkdown as r, ANALYST_BENCHMARK_MANIFEST_FILE as rt, runInlineAnalystDefinition as s, summarizeAgentRxCalibration as st, ANALYST_BENCHMARK_HELP as t, ANALYST_BENCHMARK_COST_LEDGER_FILE as tt, preparePublicAnalystBenchmark as u, agentRxBenchmarkCase as ut, createPublicBenchmarkDirectRunner as v, adaptPublicBenchmarkFindings as w, AnalystExpressivenessError as x, publicDirectAnalystDefinition as y, publicBenchmarkSystemPrompt as z };
|
|
6371
6371
|
|
|
6372
|
-
//# sourceMappingURL=benchmark-command-
|
|
6372
|
+
//# sourceMappingURL=benchmark-command-BANo4dTm.js.map
|