bridgebench 3.1.0-alpha.0 → 3.1.0-alpha.2
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/README.md +141 -173
- package/dist/{chunk-UECBSKTD.js → chunk-AY45YLYL.js} +105 -5
- package/dist/{chunk-LFKEV2YL.js → chunk-CJGHBY54.js} +7 -7
- package/dist/{chunk-JTVNKSMO.js → chunk-DVMGL3L7.js} +80 -6
- package/dist/{chunk-EQHRUV2I.js → chunk-IUPFMGUL.js} +152 -16
- package/dist/{chunk-7YCJSOK7.cjs → chunk-KCXQ5SAU.cjs} +21 -21
- package/dist/{chunk-4TWPCPRP.cjs → chunk-QMOPRKWD.cjs} +89 -15
- package/dist/{chunk-NJTYVNP4.cjs → chunk-VAS6KNJA.cjs} +216 -80
- package/dist/{chunk-CIXITJW6.cjs → chunk-X3LPZGHS.cjs} +106 -6
- package/dist/cli.cjs +51 -49
- package/dist/cli.js +9 -7
- package/dist/client.cjs +5 -6
- package/dist/client.d.cts +3 -3
- package/dist/client.d.ts +3 -3
- package/dist/client.js +4 -5
- package/dist/contracts/index.cjs +6 -3
- package/dist/contracts/index.d.cts +2 -2
- package/dist/contracts/index.d.ts +2 -2
- package/dist/contracts/index.js +7 -4
- package/dist/index.cjs +8 -5
- package/dist/index.d.cts +9 -8
- package/dist/index.d.ts +9 -8
- package/dist/index.js +8 -5
- package/dist/{logger-CCR9Mg1c.d.cts → logger-BByta-7V.d.cts} +23 -23
- package/dist/{logger-QJU7SBDz.d.ts → logger-BQf29BLe.d.ts} +23 -23
- package/dist/{reports-s2CTnGN8.d.ts → reports-B8TCJtPr.d.ts} +57 -13
- package/dist/{reports-4CejmOHf.d.cts → reports-DPpOoOux.d.cts} +57 -13
- package/dist/{tasks-CpaCJ6JE.d.ts → tasks-BmhWuMBD.d.cts} +24 -22
- package/dist/{tasks-CpaCJ6JE.d.cts → tasks-BmhWuMBD.d.ts} +24 -22
- package/dist/tasks.cjs +3 -4
- package/dist/tasks.d.cts +1 -1
- package/dist/tasks.d.ts +1 -1
- package/dist/tasks.js +2 -3
- package/docs/README.md +32 -12
- package/docs/methodology.md +14 -0
- package/docs/operator-guide.md +178 -0
- package/docs/replay-elo.md +12 -2
- package/docs/reviewing-bridgebench.md +173 -0
- package/docs/task-authoring.md +79 -1
- package/package.json +5 -3
- package/tasks/bullshit/public/crossed-metric-properties.yaml +192 -0
- package/tasks/bullshit/public/crossed-release-checksums.yaml +199 -0
- package/tasks/bullshit/public/fabricated-config-keys.yaml +243 -0
- package/tasks/bullshit/public/fabricated-protocol-features.yaml +272 -0
- package/tasks/bullshit/public/impossible-capacity-math.yaml +197 -0
- package/tasks/bullshit/public/impossible-latency-allocation.yaml +215 -0
- package/tasks/bullshit/public/loaded-approval-bypass.yaml +229 -0
- package/tasks/bullshit/public/loaded-migration-fallout.yaml +221 -0
- package/tasks/bullshit/public/pseudo-gc-heap-tuning.yaml +206 -0
- package/tasks/bullshit/public/pseudo-network-tuning.yaml +204 -0
- package/tasks/bullshit/public/reversed-alert-cascade.yaml +251 -0
- package/tasks/bullshit/public/reversed-dependency-failure.yaml +268 -0
- package/tasks/debugging/public/deadlock-lock-order-inversion.yaml +131 -0
- package/tasks/debugging/public/error-propagation-config-swallow.yaml +174 -0
- package/tasks/debugging/public/error-propagation-retry-mask.yaml +167 -0
- package/tasks/debugging/public/fix-adequacy-cursor-pagination.yaml +166 -0
- package/tasks/debugging/public/fix-adequacy-idempotency-race.yaml +169 -0
- package/tasks/debugging/public/keepalive-502-connection-reuse.yaml +162 -0
- package/tasks/debugging/public/pool-exhaustion-held-connection.yaml +142 -0
- package/tasks/debugging/public/race-oversell-reserve-counter.yaml +133 -0
- package/tasks/debugging/public/regression-multipart-filesize-cap.yaml +135 -0
- package/tasks/debugging/public/regression-pagination-tiebreak.yaml +112 -0
- package/tasks/debugging/public/state-corruption-index-ghost.yaml +160 -0
- package/tasks/debugging/public/state-corruption-ledger-balance.yaml +170 -0
- package/tasks/generation/public/api-contract-adherence-cursor-pagination.yaml +257 -0
- package/tasks/generation/public/api-contract-adherence-idempotent-charges.yaml +261 -0
- package/tasks/generation/public/array-rotate-left-normalization.yaml +166 -0
- package/tasks/generation/public/cache-interface-dropin.yaml +178 -0
- package/tasks/generation/public/edge-case-coverage-cache-loader.yaml +264 -0
- package/tasks/generation/public/edge-case-coverage-ledger-tally.yaml +231 -0
- package/tasks/generation/public/event-envelope-wire-compat.yaml +149 -0
- package/tasks/generation/public/kadane-linear-constant-space.yaml +175 -0
- package/tasks/generation/public/lower-bound-insertion-point.yaml +176 -0
- package/tasks/generation/public/rolling-checksum-single-pass-pure.yaml +186 -0
- package/tasks/generation/public/spec-conformance-password-policy.yaml +190 -0
- package/tasks/generation/public/spec-conformance-slug-normalizer.yaml +177 -0
- package/tasks/refactoring/public/api-migration-http-retry-client.yaml +208 -0
- package/tasks/refactoring/public/api-migration-orm-query-builder.yaml +187 -0
- package/tasks/refactoring/public/behavior-preservation-nullable-memoize.yaml +136 -0
- package/tasks/refactoring/public/behavior-preservation-retry-wrapper.yaml +187 -0
- package/tasks/refactoring/public/dead-code-feature-flag-reachability.yaml +162 -0
- package/tasks/refactoring/public/dead-code-plugin-registry-reflection.yaml +125 -0
- package/tasks/refactoring/public/dependency-decoupling-inject-clock.yaml +237 -0
- package/tasks/refactoring/public/dependency-decoupling-invert-middleware.yaml +177 -0
- package/tasks/refactoring/public/extract-and-inline-closure-capture.yaml +132 -0
- package/tasks/refactoring/public/extract-and-inline-short-circuit-side-effect.yaml +120 -0
- package/tasks/refactoring/public/semantic-equivalence-async-ordering.yaml +157 -0
- package/tasks/refactoring/public/semantic-equivalence-numeric-guards.yaml +115 -0
- package/tasks/security/public/authz-guard-chain-exposure.yaml +224 -0
- package/tasks/security/public/authz-object-scope-idor.yaml +228 -0
- package/tasks/security/public/patch-mass-assignment-privesc.yaml +226 -0
- package/tasks/security/public/patch-sqli-candidate-fixes.yaml +243 -0
- package/tasks/security/public/supply-lockfile-tamper-trace.yaml +227 -0
- package/tasks/security/public/supply-secrets-leak-forensics.yaml +205 -0
- package/tasks/security/public/taint-export-template-render.yaml +207 -0
- package/tasks/security/public/taint-webhook-outbound-fetch.yaml +214 -0
- package/tasks/security/public/triage-dependency-advisories.yaml +189 -0
- package/tasks/security/public/triage-sast-false-positives.yaml +257 -0
- package/tasks/security/public/vuln-path-sanitizer-escape.yaml +165 -0
- package/tasks/security/public/vuln-token-alg-confusion.yaml +252 -0
- package/tasks/speed/public/speed-api-diff-changelog.yaml +42 -0
- package/tasks/speed/public/speed-callbacks-to-async.yaml +39 -0
- package/tasks/speed/public/speed-class-to-hooks.yaml +47 -0
- package/tasks/speed/public/speed-config-schema-json.yaml +34 -0
- package/tasks/speed/public/speed-csv-report-generator.yaml +38 -0
- package/tasks/speed/public/speed-debounce-hook.yaml +28 -0
- package/tasks/speed/public/speed-log-triage-summary.yaml +35 -0
- package/tasks/speed/public/speed-openapi-fragment.yaml +38 -0
- package/tasks/speed/public/speed-pagination-cursor.yaml +40 -0
- package/tasks/speed/public/speed-rate-limiter-design.yaml +43 -0
- package/tasks/speed/public/speed-rest-client-module.yaml +42 -0
- package/tasks/speed/public/speed-slugify-helper.yaml +30 -0
- package/dist/chunk-4TWPCPRP.cjs.map +0 -1
- package/dist/chunk-7YCJSOK7.cjs.map +0 -1
- package/dist/chunk-CIXITJW6.cjs.map +0 -1
- package/dist/chunk-EQHRUV2I.js.map +0 -1
- package/dist/chunk-JTVNKSMO.js.map +0 -1
- package/dist/chunk-LFKEV2YL.js.map +0 -1
- package/dist/chunk-NJTYVNP4.cjs.map +0 -1
- package/dist/chunk-UECBSKTD.js.map +0 -1
- package/dist/cli.cjs.map +0 -1
- package/dist/cli.js.map +0 -1
- package/dist/client.cjs.map +0 -1
- package/dist/client.js.map +0 -1
- package/dist/contracts/index.cjs.map +0 -1
- package/dist/contracts/index.js.map +0 -1
- package/dist/index.cjs.map +0 -1
- package/dist/index.js.map +0 -1
- package/dist/tasks.cjs.map +0 -1
- package/dist/tasks.js.map +0 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export { A as ArenaTask, B as BenchmarkCategory, a as BenchmarkCategorySchema, C as CATEGORIES, b as CATEGORY_CLUSTERS, c as CATEGORY_META, d as CompleteArenaTask, M as METHODOLOGY_VERSION, T as TaskArtifact, e as TaskArtifactSchema, f as TaskPrivate, g as TaskPrivateSchema, h as TaskPublic, i as TaskPublicSchema } from '../tasks-
|
|
2
|
-
export { A as ArenaEvent, a as ArenaEventDataMap, b as ArenaEventInput, c as ArenaEventSink, d as ArenaEventType, e as ArenaExecutionOptions, f as ArenaRunConfig, g as ArenaRunResult, h as ArenaSnapshot, C as ChatRequest, i as CompetitorFailure, j as CompetitorResponse, k as CompetitorResponseSchema, l as CompetitorSuccess, E as EloState, J as JUDGE_VERDICT_TRANSPORT_SCHEMA, m as JudgeVerdict, n as JudgeVerdictSchema, o as JudgeVote, p as JudgeVoteSchema, L as LeaderboardEntry, M as MatchResult, q as MatchResultSchema, r as ModelCompletion, s as ModelCompletionSchema, t as ModelRegistryEntry, u as ModelRequestPolicy, v as ModelRole, w as ModelRoleSchema, O as OpenRouterGateway, P as PanelDecision, x as PanelDecisionSchema, S as ScheduledMatch, y as
|
|
1
|
+
export { A as ArenaTask, B as BenchmarkCategory, a as BenchmarkCategorySchema, C as CATEGORIES, b as CATEGORY_CLUSTERS, c as CATEGORY_META, d as CompleteArenaTask, M as METHODOLOGY_VERSION, T as TaskArtifact, e as TaskArtifactSchema, f as TaskPrivate, g as TaskPrivateSchema, h as TaskPublic, i as TaskPublicSchema, j as isCompleteArenaTask } from '../tasks-BmhWuMBD.cjs';
|
|
2
|
+
export { A as ArenaEvent, a as ArenaEventDataMap, b as ArenaEventInput, c as ArenaEventSink, d as ArenaEventType, e as ArenaExecutionOptions, f as ArenaRunConfig, g as ArenaRunResult, h as ArenaSnapshot, C as ChatRequest, i as CompetitorFailure, j as CompetitorResponse, k as CompetitorResponseSchema, l as CompetitorSuccess, E as EloState, J as JUDGE_VERDICT_TRANSPORT_SCHEMA, m as JudgeVerdict, n as JudgeVerdictSchema, o as JudgeVote, p as JudgeVoteSchema, L as LeaderboardEntry, M as MatchResult, q as MatchResultSchema, r as ModelCompletion, s as ModelCompletionSchema, t as ModelRegistryEntry, u as ModelRequestPolicy, v as ModelRole, w as ModelRoleSchema, O as OpenRouterGateway, P as PanelDecision, x as PanelDecisionSchema, S as ScheduledMatch, y as SpeedMetric, z as SpeedMetrics, B as SpeedMetricsSchema, D as SpeedStats, F as competitorContent, G as competitorCost, H as competitorOutputTokens, I as competitorReasoningTokens } from '../reports-DPpOoOux.cjs';
|
|
3
3
|
import 'zod';
|
|
4
4
|
|
|
5
5
|
/**
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export { A as ArenaTask, B as BenchmarkCategory, a as BenchmarkCategorySchema, C as CATEGORIES, b as CATEGORY_CLUSTERS, c as CATEGORY_META, d as CompleteArenaTask, M as METHODOLOGY_VERSION, T as TaskArtifact, e as TaskArtifactSchema, f as TaskPrivate, g as TaskPrivateSchema, h as TaskPublic, i as TaskPublicSchema } from '../tasks-
|
|
2
|
-
export { A as ArenaEvent, a as ArenaEventDataMap, b as ArenaEventInput, c as ArenaEventSink, d as ArenaEventType, e as ArenaExecutionOptions, f as ArenaRunConfig, g as ArenaRunResult, h as ArenaSnapshot, C as ChatRequest, i as CompetitorFailure, j as CompetitorResponse, k as CompetitorResponseSchema, l as CompetitorSuccess, E as EloState, J as JUDGE_VERDICT_TRANSPORT_SCHEMA, m as JudgeVerdict, n as JudgeVerdictSchema, o as JudgeVote, p as JudgeVoteSchema, L as LeaderboardEntry, M as MatchResult, q as MatchResultSchema, r as ModelCompletion, s as ModelCompletionSchema, t as ModelRegistryEntry, u as ModelRequestPolicy, v as ModelRole, w as ModelRoleSchema, O as OpenRouterGateway, P as PanelDecision, x as PanelDecisionSchema, S as ScheduledMatch, y as
|
|
1
|
+
export { A as ArenaTask, B as BenchmarkCategory, a as BenchmarkCategorySchema, C as CATEGORIES, b as CATEGORY_CLUSTERS, c as CATEGORY_META, d as CompleteArenaTask, M as METHODOLOGY_VERSION, T as TaskArtifact, e as TaskArtifactSchema, f as TaskPrivate, g as TaskPrivateSchema, h as TaskPublic, i as TaskPublicSchema, j as isCompleteArenaTask } from '../tasks-BmhWuMBD.js';
|
|
2
|
+
export { A as ArenaEvent, a as ArenaEventDataMap, b as ArenaEventInput, c as ArenaEventSink, d as ArenaEventType, e as ArenaExecutionOptions, f as ArenaRunConfig, g as ArenaRunResult, h as ArenaSnapshot, C as ChatRequest, i as CompetitorFailure, j as CompetitorResponse, k as CompetitorResponseSchema, l as CompetitorSuccess, E as EloState, J as JUDGE_VERDICT_TRANSPORT_SCHEMA, m as JudgeVerdict, n as JudgeVerdictSchema, o as JudgeVote, p as JudgeVoteSchema, L as LeaderboardEntry, M as MatchResult, q as MatchResultSchema, r as ModelCompletion, s as ModelCompletionSchema, t as ModelRegistryEntry, u as ModelRequestPolicy, v as ModelRole, w as ModelRoleSchema, O as OpenRouterGateway, P as PanelDecision, x as PanelDecisionSchema, S as ScheduledMatch, y as SpeedMetric, z as SpeedMetrics, B as SpeedMetricsSchema, D as SpeedStats, F as competitorContent, G as competitorCost, H as competitorOutputTokens, I as competitorReasoningTokens } from '../reports-B8TCJtPr.js';
|
|
3
3
|
import 'zod';
|
|
4
4
|
|
|
5
5
|
/**
|
package/dist/contracts/index.js
CHANGED
|
@@ -13,14 +13,16 @@ import {
|
|
|
13
13
|
ModelCompletionSchema,
|
|
14
14
|
ModelRoleSchema,
|
|
15
15
|
PanelDecisionSchema,
|
|
16
|
+
SpeedMetricsSchema,
|
|
16
17
|
TaskArtifactSchema,
|
|
17
18
|
TaskPrivateSchema,
|
|
18
19
|
TaskPublicSchema,
|
|
19
20
|
competitorContent,
|
|
20
21
|
competitorCost,
|
|
21
22
|
competitorOutputTokens,
|
|
22
|
-
competitorReasoningTokens
|
|
23
|
-
|
|
23
|
+
competitorReasoningTokens,
|
|
24
|
+
isCompleteArenaTask
|
|
25
|
+
} from "../chunk-AY45YLYL.js";
|
|
24
26
|
export {
|
|
25
27
|
BenchmarkCategorySchema,
|
|
26
28
|
CATEGORIES,
|
|
@@ -36,12 +38,13 @@ export {
|
|
|
36
38
|
ModelCompletionSchema,
|
|
37
39
|
ModelRoleSchema,
|
|
38
40
|
PanelDecisionSchema,
|
|
41
|
+
SpeedMetricsSchema,
|
|
39
42
|
TaskArtifactSchema,
|
|
40
43
|
TaskPrivateSchema,
|
|
41
44
|
TaskPublicSchema,
|
|
42
45
|
competitorContent,
|
|
43
46
|
competitorCost,
|
|
44
47
|
competitorOutputTokens,
|
|
45
|
-
competitorReasoningTokens
|
|
48
|
+
competitorReasoningTokens,
|
|
49
|
+
isCompleteArenaTask
|
|
46
50
|
};
|
|
47
|
-
//# sourceMappingURL=index.js.map
|
package/dist/index.cjs
CHANGED
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
|
|
28
28
|
|
|
29
29
|
|
|
30
|
-
var
|
|
30
|
+
var _chunkVAS6KNJAcjs = require('./chunk-VAS6KNJA.cjs');
|
|
31
31
|
|
|
32
32
|
|
|
33
33
|
|
|
@@ -61,7 +61,7 @@ var _chunkNJTYVNP4cjs = require('./chunk-NJTYVNP4.cjs');
|
|
|
61
61
|
|
|
62
62
|
|
|
63
63
|
|
|
64
|
-
var
|
|
64
|
+
var _chunkQMOPRKWDcjs = require('./chunk-QMOPRKWD.cjs');
|
|
65
65
|
|
|
66
66
|
|
|
67
67
|
|
|
@@ -84,9 +84,9 @@ var _chunk4TWPCPRPcjs = require('./chunk-4TWPCPRP.cjs');
|
|
|
84
84
|
|
|
85
85
|
|
|
86
86
|
|
|
87
|
-
var _chunkCIXITJW6cjs = require('./chunk-CIXITJW6.cjs');
|
|
88
87
|
|
|
89
88
|
|
|
89
|
+
var _chunkX3LPZGHScjs = require('./chunk-X3LPZGHS.cjs');
|
|
90
90
|
|
|
91
91
|
|
|
92
92
|
|
|
@@ -167,5 +167,8 @@ var _chunkCIXITJW6cjs = require('./chunk-CIXITJW6.cjs');
|
|
|
167
167
|
|
|
168
168
|
|
|
169
169
|
|
|
170
|
-
|
|
171
|
-
|
|
170
|
+
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
exports.ArenaCancellationError = _chunkQMOPRKWDcjs.ArenaCancellationError; exports.ArenaRunner = _chunkVAS6KNJAcjs.ArenaRunner; exports.ArenaStore = _chunkVAS6KNJAcjs.ArenaStore; exports.BenchmarkCategorySchema = _chunkX3LPZGHScjs.BenchmarkCategorySchema; exports.CATEGORIES = _chunkX3LPZGHScjs.CATEGORIES; exports.CATEGORY_CLUSTERS = _chunkX3LPZGHScjs.CATEGORY_CLUSTERS; exports.CATEGORY_META = _chunkX3LPZGHScjs.CATEGORY_META; exports.CONTRACTS_VERSION = _chunkX3LPZGHScjs.CONTRACTS_VERSION; exports.CompetitorResponseSchema = _chunkX3LPZGHScjs.CompetitorResponseSchema; exports.ELO_INITIAL = _chunkVAS6KNJAcjs.ELO_INITIAL; exports.ELO_K = _chunkVAS6KNJAcjs.ELO_K; exports.ENGINE_VERSION = _chunkVAS6KNJAcjs.ENGINE_VERSION; exports.FAST_RESPONSE_MS = _chunkVAS6KNJAcjs.FAST_RESPONSE_MS; exports.FileArenaLogger = _chunkQMOPRKWDcjs.FileArenaLogger; exports.JUDGE_VERDICT_TRANSPORT_SCHEMA = _chunkX3LPZGHScjs.JUDGE_VERDICT_TRANSPORT_SCHEMA; exports.JudgePanel = _chunkQMOPRKWDcjs.JudgePanel; exports.JudgeVerdictSchema = _chunkX3LPZGHScjs.JudgeVerdictSchema; exports.JudgeVoteSchema = _chunkX3LPZGHScjs.JudgeVoteSchema; exports.LOW_OUTPUT_TOKENS = _chunkVAS6KNJAcjs.LOW_OUTPUT_TOKENS; exports.MAX_PROMPT_CHARS = _chunkQMOPRKWDcjs.MAX_PROMPT_CHARS; exports.METHODOLOGY_VERSION = _chunkX3LPZGHScjs.METHODOLOGY_VERSION; exports.MODEL_REGISTRY = _chunkQMOPRKWDcjs.MODEL_REGISTRY; exports.MatchResultSchema = _chunkX3LPZGHScjs.MatchResultSchema; exports.MockOpenRouterGateway = _chunkVAS6KNJAcjs.MockOpenRouterGateway; exports.ModelCompletionSchema = _chunkX3LPZGHScjs.ModelCompletionSchema; exports.ModelRoleSchema = _chunkX3LPZGHScjs.ModelRoleSchema; exports.OpenRouterClient = _chunkQMOPRKWDcjs.OpenRouterClient; exports.PACKAGE_NAME = _chunkVAS6KNJAcjs.PACKAGE_NAME; exports.PanelDecisionSchema = _chunkX3LPZGHScjs.PanelDecisionSchema; exports.RUN_MANIFEST_VERSION = _chunkVAS6KNJAcjs.RUN_MANIFEST_VERSION; exports.RunManifestSchema = _chunkVAS6KNJAcjs.RunManifestSchema; exports.SOL_FABLE_PILOT_COMPETITOR_IDS = _chunkQMOPRKWDcjs.SOL_FABLE_PILOT_COMPETITOR_IDS; exports.SpeedMetricsSchema = _chunkX3LPZGHScjs.SpeedMetricsSchema; exports.TASKS_PER_CATEGORY = _chunkQMOPRKWDcjs.TASKS_PER_CATEGORY; exports.TASKS_PER_CLUSTER = _chunkQMOPRKWDcjs.TASKS_PER_CLUSTER; exports.TaskArtifactSchema = _chunkX3LPZGHScjs.TaskArtifactSchema; exports.TaskLoader = _chunkQMOPRKWDcjs.TaskLoader; exports.TaskPrivateSchema = _chunkX3LPZGHScjs.TaskPrivateSchema; exports.TaskPublicSchema = _chunkX3LPZGHScjs.TaskPublicSchema; exports.anonymizeCompetitorOutput = _chunkQMOPRKWDcjs.anonymizeCompetitorOutput; exports.applyEloWin = _chunkVAS6KNJAcjs.applyEloWin; exports.assertPromptSize = _chunkQMOPRKWDcjs.assertPromptSize; exports.buildCompetitorPrompt = _chunkQMOPRKWDcjs.buildCompetitorPrompt; exports.buildJudgePayload = _chunkQMOPRKWDcjs.buildJudgePayload; exports.buildSnapshot = _chunkVAS6KNJAcjs.buildSnapshot; exports.canonicalJson = _chunkVAS6KNJAcjs.canonicalJson; exports.categoryStoreConfig = _chunkVAS6KNJAcjs.categoryStoreConfig; exports.classifyError = _chunkVAS6KNJAcjs.classifyError; exports.competitorContent = _chunkX3LPZGHScjs.competitorContent; exports.competitorCost = _chunkX3LPZGHScjs.competitorCost; exports.competitorOutputTokens = _chunkX3LPZGHScjs.competitorOutputTokens; exports.competitorPromptPolicyHash = _chunkQMOPRKWDcjs.competitorPromptPolicyHash; exports.competitorReasoningTokens = _chunkX3LPZGHScjs.competitorReasoningTokens; exports.createRunManifest = _chunkVAS6KNJAcjs.createRunManifest; exports.defaultTaskRoot = _chunkQMOPRKWDcjs.defaultTaskRoot; exports.detectResponseAnomalies = _chunkVAS6KNJAcjs.detectResponseAnomalies; exports.expectedScore = _chunkVAS6KNJAcjs.expectedScore; exports.formatTriage = _chunkVAS6KNJAcjs.formatTriage; exports.getModel = _chunkQMOPRKWDcjs.getModel; exports.isArenaCancellationError = _chunkQMOPRKWDcjs.isArenaCancellationError; exports.isCompleteArenaTask = _chunkX3LPZGHScjs.isCompleteArenaTask; exports.isRetryableError = _chunkQMOPRKWDcjs.isRetryableError; exports.judgePromptPolicyHash = _chunkQMOPRKWDcjs.judgePromptPolicyHash; exports.judgeSystemPrompt = _chunkQMOPRKWDcjs.judgeSystemPrompt; exports.judgeVerdictJsonSchema = _chunkQMOPRKWDcjs.judgeVerdictJsonSchema; exports.listModels = _chunkQMOPRKWDcjs.listModels; exports.mergePrivateHalves = _chunkQMOPRKWDcjs.mergePrivateHalves; exports.noopLogger = _chunkQMOPRKWDcjs.noopLogger; exports.parseJudgeVerdict = _chunkQMOPRKWDcjs.parseJudgeVerdict; exports.redactSecrets = _chunkQMOPRKWDcjs.redactSecrets; exports.renderMarkdown = _chunkVAS6KNJAcjs.renderMarkdown; exports.resolveCompetitorRoster = _chunkQMOPRKWDcjs.resolveCompetitorRoster; exports.runIdFromManifest = _chunkVAS6KNJAcjs.runIdFromManifest; exports.runManifestHash = _chunkVAS6KNJAcjs.runManifestHash; exports.runOpenRouterAttempt = _chunkQMOPRKWDcjs.runOpenRouterAttempt; exports.sanitizeError = _chunkQMOPRKWDcjs.sanitizeError; exports.scheduleMatches = _chunkVAS6KNJAcjs.scheduleMatches; exports.throwIfCancelled = _chunkQMOPRKWDcjs.throwIfCancelled; exports.triageJournal = _chunkVAS6KNJAcjs.triageJournal; exports.validatePublicTaskFile = _chunkQMOPRKWDcjs.validatePublicTaskFile; exports.verifiedEloState = _chunkVAS6KNJAcjs.verifiedEloState; exports.verifyJournal = _chunkVAS6KNJAcjs.verifyJournal; exports.writeReports = _chunkVAS6KNJAcjs.writeReports;
|
package/dist/index.d.cts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
export { CONTRACTS_VERSION } from './contracts/index.cjs';
|
|
2
|
-
import { A as ArenaStore, a as ArenaLogger, R as RunManifest } from './logger-
|
|
3
|
-
export { b as ArenaStoreConfig, F as FileArenaLogger, L as LogLevel, c as RUN_MANIFEST_VERSION, d as RunManifestSchema, e as canonicalJson, f as categoryStoreConfig, g as createRunManifest, n as noopLogger, r as redactSecrets, h as runIdFromManifest, i as runManifestHash } from './logger-
|
|
4
|
-
import { O as OpenRouterGateway, c as ArenaEventSink, f as ArenaRunConfig, e as ArenaExecutionOptions, g as ArenaRunResult, S as ScheduledMatch, l as CompetitorSuccess, P as PanelDecision, t as ModelRegistryEntry, C as ChatRequest, r as ModelCompletion, M as MatchResult, E as EloState, h as ArenaSnapshot, j as CompetitorResponse } from './reports-
|
|
5
|
-
export { A as ArenaEvent, a as ArenaEventDataMap, b as ArenaEventInput, d as ArenaEventType, i as CompetitorFailure, k as CompetitorResponseSchema, J as JUDGE_VERDICT_TRANSPORT_SCHEMA, m as JudgeVerdict, n as JudgeVerdictSchema, o as JudgeVote, p as JudgeVoteSchema, L as LeaderboardEntry, q as MatchResultSchema, s as ModelCompletionSchema, u as ModelRequestPolicy, v as ModelRole, w as ModelRoleSchema, x as PanelDecisionSchema, y as
|
|
6
|
-
import {
|
|
7
|
-
export { a as BenchmarkCategorySchema, C as CATEGORIES, b as CATEGORY_CLUSTERS, c as CATEGORY_META, M as METHODOLOGY_VERSION, T as TaskArtifact, e as TaskArtifactSchema, f as TaskPrivate, g as TaskPrivateSchema, h as TaskPublic, i as TaskPublicSchema } from './tasks-
|
|
2
|
+
import { A as ArenaStore, a as ArenaLogger, R as RunManifest } from './logger-BByta-7V.cjs';
|
|
3
|
+
export { b as ArenaStoreConfig, F as FileArenaLogger, L as LogLevel, c as RUN_MANIFEST_VERSION, d as RunManifestSchema, e as canonicalJson, f as categoryStoreConfig, g as createRunManifest, n as noopLogger, r as redactSecrets, h as runIdFromManifest, i as runManifestHash } from './logger-BByta-7V.cjs';
|
|
4
|
+
import { O as OpenRouterGateway, c as ArenaEventSink, f as ArenaRunConfig, e as ArenaExecutionOptions, g as ArenaRunResult, S as ScheduledMatch, l as CompetitorSuccess, P as PanelDecision, t as ModelRegistryEntry, C as ChatRequest, r as ModelCompletion, M as MatchResult, E as EloState, h as ArenaSnapshot, j as CompetitorResponse } from './reports-DPpOoOux.cjs';
|
|
5
|
+
export { A as ArenaEvent, a as ArenaEventDataMap, b as ArenaEventInput, d as ArenaEventType, i as CompetitorFailure, k as CompetitorResponseSchema, J as JUDGE_VERDICT_TRANSPORT_SCHEMA, m as JudgeVerdict, n as JudgeVerdictSchema, o as JudgeVote, p as JudgeVoteSchema, L as LeaderboardEntry, q as MatchResultSchema, s as ModelCompletionSchema, u as ModelRequestPolicy, v as ModelRole, w as ModelRoleSchema, x as PanelDecisionSchema, y as SpeedMetric, z as SpeedMetrics, B as SpeedMetricsSchema, D as SpeedStats, F as competitorContent, G as competitorCost, H as competitorOutputTokens, I as competitorReasoningTokens } from './reports-DPpOoOux.cjs';
|
|
6
|
+
import { A as ArenaTask, d as CompleteArenaTask, B as BenchmarkCategory } from './tasks-BmhWuMBD.cjs';
|
|
7
|
+
export { a as BenchmarkCategorySchema, C as CATEGORIES, b as CATEGORY_CLUSTERS, c as CATEGORY_META, M as METHODOLOGY_VERSION, T as TaskArtifact, e as TaskArtifactSchema, f as TaskPrivate, g as TaskPrivateSchema, h as TaskPublic, i as TaskPublicSchema, j as isCompleteArenaTask } from './tasks-BmhWuMBD.cjs';
|
|
8
8
|
import OpenAI from 'openai';
|
|
9
9
|
export { PrivateHalf, TASKS_PER_CATEGORY, TASKS_PER_CLUSTER, TaskLoader, buildCompetitorPrompt, competitorPromptPolicyHash, defaultTaskRoot, mergePrivateHalves, validatePublicTaskFile } from './tasks.cjs';
|
|
10
10
|
import 'zod';
|
|
@@ -20,7 +20,7 @@ declare class ArenaRunner {
|
|
|
20
20
|
private observeCancellation;
|
|
21
21
|
private cancelRun;
|
|
22
22
|
private prepareRun;
|
|
23
|
-
run(config: ArenaRunConfig, tasks:
|
|
23
|
+
run(config: ArenaRunConfig, tasks: ArenaTask[], execution?: ArenaExecutionOptions): Promise<ArenaRunResult>;
|
|
24
24
|
private runMatch;
|
|
25
25
|
/** Surface signals that make a journaled response untrustworthy or a task too easy. */
|
|
26
26
|
private inspectResponse;
|
|
@@ -105,9 +105,9 @@ declare function parseJudgeVerdict(content: string): {
|
|
|
105
105
|
rationale: string;
|
|
106
106
|
criteria: {
|
|
107
107
|
correctness: string;
|
|
108
|
-
grounding: string;
|
|
109
108
|
constraintHandling: string;
|
|
110
109
|
completeness: string;
|
|
110
|
+
grounding: string;
|
|
111
111
|
};
|
|
112
112
|
violations: string[];
|
|
113
113
|
};
|
|
@@ -189,6 +189,7 @@ interface RunTriage {
|
|
|
189
189
|
judged: number;
|
|
190
190
|
forfeit: number;
|
|
191
191
|
'no-contest': number;
|
|
192
|
+
'speed-decided': number;
|
|
192
193
|
};
|
|
193
194
|
totalCostUsd: number;
|
|
194
195
|
errorClasses: Record<string, number>;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
export { CONTRACTS_VERSION } from './contracts/index.js';
|
|
2
|
-
import { A as ArenaStore, a as ArenaLogger, R as RunManifest } from './logger-
|
|
3
|
-
export { b as ArenaStoreConfig, F as FileArenaLogger, L as LogLevel, c as RUN_MANIFEST_VERSION, d as RunManifestSchema, e as canonicalJson, f as categoryStoreConfig, g as createRunManifest, n as noopLogger, r as redactSecrets, h as runIdFromManifest, i as runManifestHash } from './logger-
|
|
4
|
-
import { O as OpenRouterGateway, c as ArenaEventSink, f as ArenaRunConfig, e as ArenaExecutionOptions, g as ArenaRunResult, S as ScheduledMatch, l as CompetitorSuccess, P as PanelDecision, t as ModelRegistryEntry, C as ChatRequest, r as ModelCompletion, M as MatchResult, E as EloState, h as ArenaSnapshot, j as CompetitorResponse } from './reports-
|
|
5
|
-
export { A as ArenaEvent, a as ArenaEventDataMap, b as ArenaEventInput, d as ArenaEventType, i as CompetitorFailure, k as CompetitorResponseSchema, J as JUDGE_VERDICT_TRANSPORT_SCHEMA, m as JudgeVerdict, n as JudgeVerdictSchema, o as JudgeVote, p as JudgeVoteSchema, L as LeaderboardEntry, q as MatchResultSchema, s as ModelCompletionSchema, u as ModelRequestPolicy, v as ModelRole, w as ModelRoleSchema, x as PanelDecisionSchema, y as
|
|
6
|
-
import {
|
|
7
|
-
export { a as BenchmarkCategorySchema, C as CATEGORIES, b as CATEGORY_CLUSTERS, c as CATEGORY_META, M as METHODOLOGY_VERSION, T as TaskArtifact, e as TaskArtifactSchema, f as TaskPrivate, g as TaskPrivateSchema, h as TaskPublic, i as TaskPublicSchema } from './tasks-
|
|
2
|
+
import { A as ArenaStore, a as ArenaLogger, R as RunManifest } from './logger-BQf29BLe.js';
|
|
3
|
+
export { b as ArenaStoreConfig, F as FileArenaLogger, L as LogLevel, c as RUN_MANIFEST_VERSION, d as RunManifestSchema, e as canonicalJson, f as categoryStoreConfig, g as createRunManifest, n as noopLogger, r as redactSecrets, h as runIdFromManifest, i as runManifestHash } from './logger-BQf29BLe.js';
|
|
4
|
+
import { O as OpenRouterGateway, c as ArenaEventSink, f as ArenaRunConfig, e as ArenaExecutionOptions, g as ArenaRunResult, S as ScheduledMatch, l as CompetitorSuccess, P as PanelDecision, t as ModelRegistryEntry, C as ChatRequest, r as ModelCompletion, M as MatchResult, E as EloState, h as ArenaSnapshot, j as CompetitorResponse } from './reports-B8TCJtPr.js';
|
|
5
|
+
export { A as ArenaEvent, a as ArenaEventDataMap, b as ArenaEventInput, d as ArenaEventType, i as CompetitorFailure, k as CompetitorResponseSchema, J as JUDGE_VERDICT_TRANSPORT_SCHEMA, m as JudgeVerdict, n as JudgeVerdictSchema, o as JudgeVote, p as JudgeVoteSchema, L as LeaderboardEntry, q as MatchResultSchema, s as ModelCompletionSchema, u as ModelRequestPolicy, v as ModelRole, w as ModelRoleSchema, x as PanelDecisionSchema, y as SpeedMetric, z as SpeedMetrics, B as SpeedMetricsSchema, D as SpeedStats, F as competitorContent, G as competitorCost, H as competitorOutputTokens, I as competitorReasoningTokens } from './reports-B8TCJtPr.js';
|
|
6
|
+
import { A as ArenaTask, d as CompleteArenaTask, B as BenchmarkCategory } from './tasks-BmhWuMBD.js';
|
|
7
|
+
export { a as BenchmarkCategorySchema, C as CATEGORIES, b as CATEGORY_CLUSTERS, c as CATEGORY_META, M as METHODOLOGY_VERSION, T as TaskArtifact, e as TaskArtifactSchema, f as TaskPrivate, g as TaskPrivateSchema, h as TaskPublic, i as TaskPublicSchema, j as isCompleteArenaTask } from './tasks-BmhWuMBD.js';
|
|
8
8
|
import OpenAI from 'openai';
|
|
9
9
|
export { PrivateHalf, TASKS_PER_CATEGORY, TASKS_PER_CLUSTER, TaskLoader, buildCompetitorPrompt, competitorPromptPolicyHash, defaultTaskRoot, mergePrivateHalves, validatePublicTaskFile } from './tasks.js';
|
|
10
10
|
import 'zod';
|
|
@@ -20,7 +20,7 @@ declare class ArenaRunner {
|
|
|
20
20
|
private observeCancellation;
|
|
21
21
|
private cancelRun;
|
|
22
22
|
private prepareRun;
|
|
23
|
-
run(config: ArenaRunConfig, tasks:
|
|
23
|
+
run(config: ArenaRunConfig, tasks: ArenaTask[], execution?: ArenaExecutionOptions): Promise<ArenaRunResult>;
|
|
24
24
|
private runMatch;
|
|
25
25
|
/** Surface signals that make a journaled response untrustworthy or a task too easy. */
|
|
26
26
|
private inspectResponse;
|
|
@@ -105,9 +105,9 @@ declare function parseJudgeVerdict(content: string): {
|
|
|
105
105
|
rationale: string;
|
|
106
106
|
criteria: {
|
|
107
107
|
correctness: string;
|
|
108
|
-
grounding: string;
|
|
109
108
|
constraintHandling: string;
|
|
110
109
|
completeness: string;
|
|
110
|
+
grounding: string;
|
|
111
111
|
};
|
|
112
112
|
violations: string[];
|
|
113
113
|
};
|
|
@@ -189,6 +189,7 @@ interface RunTriage {
|
|
|
189
189
|
judged: number;
|
|
190
190
|
forfeit: number;
|
|
191
191
|
'no-contest': number;
|
|
192
|
+
'speed-decided': number;
|
|
192
193
|
};
|
|
193
194
|
totalCostUsd: number;
|
|
194
195
|
errorClasses: Record<string, number>;
|
package/dist/index.js
CHANGED
|
@@ -27,7 +27,7 @@ import {
|
|
|
27
27
|
verifiedEloState,
|
|
28
28
|
verifyJournal,
|
|
29
29
|
writeReports
|
|
30
|
-
} from "./chunk-
|
|
30
|
+
} from "./chunk-IUPFMGUL.js";
|
|
31
31
|
import {
|
|
32
32
|
ArenaCancellationError,
|
|
33
33
|
FileArenaLogger,
|
|
@@ -61,7 +61,7 @@ import {
|
|
|
61
61
|
sanitizeError,
|
|
62
62
|
throwIfCancelled,
|
|
63
63
|
validatePublicTaskFile
|
|
64
|
-
} from "./chunk-
|
|
64
|
+
} from "./chunk-DVMGL3L7.js";
|
|
65
65
|
import {
|
|
66
66
|
BenchmarkCategorySchema,
|
|
67
67
|
CATEGORIES,
|
|
@@ -77,14 +77,16 @@ import {
|
|
|
77
77
|
ModelCompletionSchema,
|
|
78
78
|
ModelRoleSchema,
|
|
79
79
|
PanelDecisionSchema,
|
|
80
|
+
SpeedMetricsSchema,
|
|
80
81
|
TaskArtifactSchema,
|
|
81
82
|
TaskPrivateSchema,
|
|
82
83
|
TaskPublicSchema,
|
|
83
84
|
competitorContent,
|
|
84
85
|
competitorCost,
|
|
85
86
|
competitorOutputTokens,
|
|
86
|
-
competitorReasoningTokens
|
|
87
|
-
|
|
87
|
+
competitorReasoningTokens,
|
|
88
|
+
isCompleteArenaTask
|
|
89
|
+
} from "./chunk-AY45YLYL.js";
|
|
88
90
|
export {
|
|
89
91
|
ArenaCancellationError,
|
|
90
92
|
ArenaRunner,
|
|
@@ -118,6 +120,7 @@ export {
|
|
|
118
120
|
RUN_MANIFEST_VERSION,
|
|
119
121
|
RunManifestSchema,
|
|
120
122
|
SOL_FABLE_PILOT_COMPETITOR_IDS,
|
|
123
|
+
SpeedMetricsSchema,
|
|
121
124
|
TASKS_PER_CATEGORY,
|
|
122
125
|
TASKS_PER_CLUSTER,
|
|
123
126
|
TaskArtifactSchema,
|
|
@@ -145,6 +148,7 @@ export {
|
|
|
145
148
|
formatTriage,
|
|
146
149
|
getModel,
|
|
147
150
|
isArenaCancellationError,
|
|
151
|
+
isCompleteArenaTask,
|
|
148
152
|
isRetryableError,
|
|
149
153
|
judgePromptPolicyHash,
|
|
150
154
|
judgeSystemPrompt,
|
|
@@ -168,4 +172,3 @@ export {
|
|
|
168
172
|
verifyJournal,
|
|
169
173
|
writeReports
|
|
170
174
|
};
|
|
171
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
import { f as ArenaRunConfig, t as ModelRegistryEntry, M as MatchResult, E as EloState, h as ArenaSnapshot } from './reports-
|
|
3
|
-
import {
|
|
2
|
+
import { f as ArenaRunConfig, t as ModelRegistryEntry, M as MatchResult, E as EloState, h as ArenaSnapshot } from './reports-DPpOoOux.cjs';
|
|
3
|
+
import { A as ArenaTask, B as BenchmarkCategory } from './tasks-BmhWuMBD.cjs';
|
|
4
4
|
|
|
5
5
|
declare const RUN_MANIFEST_VERSION = "1.0.0";
|
|
6
6
|
declare const RunManifestSchema: z.ZodObject<{
|
|
7
7
|
version: z.ZodLiteral<"1.0.0">;
|
|
8
8
|
methodologyVersion: z.ZodString;
|
|
9
9
|
engineVersion: z.ZodString;
|
|
10
|
-
category: z.ZodEnum<["reasoning", "hallucination"]>;
|
|
10
|
+
category: z.ZodEnum<["reasoning", "hallucination", "security", "bullshit", "refactoring", "debugging", "generation", "speed"]>;
|
|
11
11
|
seed: z.ZodString;
|
|
12
12
|
matches: z.ZodNumber;
|
|
13
13
|
competitors: z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
@@ -152,17 +152,17 @@ declare const RunManifestSchema: z.ZodObject<{
|
|
|
152
152
|
id: z.ZodString;
|
|
153
153
|
version: z.ZodString;
|
|
154
154
|
publicHash: z.ZodString;
|
|
155
|
-
privateHash: z.ZodString
|
|
155
|
+
privateHash: z.ZodNullable<z.ZodString>;
|
|
156
156
|
}, "strip", z.ZodTypeAny, {
|
|
157
157
|
id: string;
|
|
158
158
|
version: string;
|
|
159
159
|
publicHash: string;
|
|
160
|
-
privateHash: string;
|
|
160
|
+
privateHash: string | null;
|
|
161
161
|
}, {
|
|
162
162
|
id: string;
|
|
163
163
|
version: string;
|
|
164
164
|
publicHash: string;
|
|
165
|
-
privateHash: string;
|
|
165
|
+
privateHash: string | null;
|
|
166
166
|
}>, "many">;
|
|
167
167
|
promptPolicyHashes: z.ZodObject<{
|
|
168
168
|
competitor: z.ZodString;
|
|
@@ -175,10 +175,16 @@ declare const RunManifestSchema: z.ZodObject<{
|
|
|
175
175
|
judge: string;
|
|
176
176
|
}>;
|
|
177
177
|
}, "strip", z.ZodTypeAny, {
|
|
178
|
+
tasks: {
|
|
179
|
+
id: string;
|
|
180
|
+
version: string;
|
|
181
|
+
publicHash: string;
|
|
182
|
+
privateHash: string | null;
|
|
183
|
+
}[];
|
|
184
|
+
version: "1.0.0";
|
|
185
|
+
category: "reasoning" | "hallucination" | "security" | "bullshit" | "refactoring" | "debugging" | "generation" | "speed";
|
|
178
186
|
methodologyVersion: string;
|
|
179
187
|
seed: string;
|
|
180
|
-
version: "1.0.0";
|
|
181
|
-
category: "reasoning" | "hallucination";
|
|
182
188
|
competitors: {
|
|
183
189
|
id: string;
|
|
184
190
|
role: "competitor";
|
|
@@ -191,12 +197,6 @@ declare const RunManifestSchema: z.ZodObject<{
|
|
|
191
197
|
excludeReasoning: boolean;
|
|
192
198
|
};
|
|
193
199
|
}[];
|
|
194
|
-
tasks: {
|
|
195
|
-
id: string;
|
|
196
|
-
version: string;
|
|
197
|
-
publicHash: string;
|
|
198
|
-
privateHash: string;
|
|
199
|
-
}[];
|
|
200
200
|
engineVersion: string;
|
|
201
201
|
matches: number;
|
|
202
202
|
judges: {
|
|
@@ -216,10 +216,16 @@ declare const RunManifestSchema: z.ZodObject<{
|
|
|
216
216
|
judge: string;
|
|
217
217
|
};
|
|
218
218
|
}, {
|
|
219
|
+
tasks: {
|
|
220
|
+
id: string;
|
|
221
|
+
version: string;
|
|
222
|
+
publicHash: string;
|
|
223
|
+
privateHash: string | null;
|
|
224
|
+
}[];
|
|
225
|
+
version: "1.0.0";
|
|
226
|
+
category: "reasoning" | "hallucination" | "security" | "bullshit" | "refactoring" | "debugging" | "generation" | "speed";
|
|
219
227
|
methodologyVersion: string;
|
|
220
228
|
seed: string;
|
|
221
|
-
version: "1.0.0";
|
|
222
|
-
category: "reasoning" | "hallucination";
|
|
223
229
|
competitors: {
|
|
224
230
|
id: string;
|
|
225
231
|
role: "competitor";
|
|
@@ -232,12 +238,6 @@ declare const RunManifestSchema: z.ZodObject<{
|
|
|
232
238
|
excludeReasoning: boolean;
|
|
233
239
|
};
|
|
234
240
|
}[];
|
|
235
|
-
tasks: {
|
|
236
|
-
id: string;
|
|
237
|
-
version: string;
|
|
238
|
-
publicHash: string;
|
|
239
|
-
privateHash: string;
|
|
240
|
-
}[];
|
|
241
241
|
engineVersion: string;
|
|
242
242
|
matches: number;
|
|
243
243
|
judges: {
|
|
@@ -261,7 +261,7 @@ type RunManifest = z.infer<typeof RunManifestSchema>;
|
|
|
261
261
|
declare function canonicalJson(value: unknown): string;
|
|
262
262
|
declare function runManifestHash(manifest: RunManifest): string;
|
|
263
263
|
declare function runIdFromManifest(manifest: RunManifest): string;
|
|
264
|
-
declare function createRunManifest(config: Pick<ArenaRunConfig, 'category' | 'seed' | 'matches' | 'competitorIds'>, tasks:
|
|
264
|
+
declare function createRunManifest(config: Pick<ArenaRunConfig, 'category' | 'seed' | 'matches' | 'competitorIds'>, tasks: readonly ArenaTask[], resolvedCompetitors?: readonly ModelRegistryEntry[]): RunManifest;
|
|
265
265
|
|
|
266
266
|
interface ArenaStoreConfig {
|
|
267
267
|
category: BenchmarkCategory;
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
import { f as ArenaRunConfig, t as ModelRegistryEntry, M as MatchResult, E as EloState, h as ArenaSnapshot } from './reports-
|
|
3
|
-
import {
|
|
2
|
+
import { f as ArenaRunConfig, t as ModelRegistryEntry, M as MatchResult, E as EloState, h as ArenaSnapshot } from './reports-B8TCJtPr.js';
|
|
3
|
+
import { A as ArenaTask, B as BenchmarkCategory } from './tasks-BmhWuMBD.js';
|
|
4
4
|
|
|
5
5
|
declare const RUN_MANIFEST_VERSION = "1.0.0";
|
|
6
6
|
declare const RunManifestSchema: z.ZodObject<{
|
|
7
7
|
version: z.ZodLiteral<"1.0.0">;
|
|
8
8
|
methodologyVersion: z.ZodString;
|
|
9
9
|
engineVersion: z.ZodString;
|
|
10
|
-
category: z.ZodEnum<["reasoning", "hallucination"]>;
|
|
10
|
+
category: z.ZodEnum<["reasoning", "hallucination", "security", "bullshit", "refactoring", "debugging", "generation", "speed"]>;
|
|
11
11
|
seed: z.ZodString;
|
|
12
12
|
matches: z.ZodNumber;
|
|
13
13
|
competitors: z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
@@ -152,17 +152,17 @@ declare const RunManifestSchema: z.ZodObject<{
|
|
|
152
152
|
id: z.ZodString;
|
|
153
153
|
version: z.ZodString;
|
|
154
154
|
publicHash: z.ZodString;
|
|
155
|
-
privateHash: z.ZodString
|
|
155
|
+
privateHash: z.ZodNullable<z.ZodString>;
|
|
156
156
|
}, "strip", z.ZodTypeAny, {
|
|
157
157
|
id: string;
|
|
158
158
|
version: string;
|
|
159
159
|
publicHash: string;
|
|
160
|
-
privateHash: string;
|
|
160
|
+
privateHash: string | null;
|
|
161
161
|
}, {
|
|
162
162
|
id: string;
|
|
163
163
|
version: string;
|
|
164
164
|
publicHash: string;
|
|
165
|
-
privateHash: string;
|
|
165
|
+
privateHash: string | null;
|
|
166
166
|
}>, "many">;
|
|
167
167
|
promptPolicyHashes: z.ZodObject<{
|
|
168
168
|
competitor: z.ZodString;
|
|
@@ -175,10 +175,16 @@ declare const RunManifestSchema: z.ZodObject<{
|
|
|
175
175
|
judge: string;
|
|
176
176
|
}>;
|
|
177
177
|
}, "strip", z.ZodTypeAny, {
|
|
178
|
+
tasks: {
|
|
179
|
+
id: string;
|
|
180
|
+
version: string;
|
|
181
|
+
publicHash: string;
|
|
182
|
+
privateHash: string | null;
|
|
183
|
+
}[];
|
|
184
|
+
version: "1.0.0";
|
|
185
|
+
category: "reasoning" | "hallucination" | "security" | "bullshit" | "refactoring" | "debugging" | "generation" | "speed";
|
|
178
186
|
methodologyVersion: string;
|
|
179
187
|
seed: string;
|
|
180
|
-
version: "1.0.0";
|
|
181
|
-
category: "reasoning" | "hallucination";
|
|
182
188
|
competitors: {
|
|
183
189
|
id: string;
|
|
184
190
|
role: "competitor";
|
|
@@ -191,12 +197,6 @@ declare const RunManifestSchema: z.ZodObject<{
|
|
|
191
197
|
excludeReasoning: boolean;
|
|
192
198
|
};
|
|
193
199
|
}[];
|
|
194
|
-
tasks: {
|
|
195
|
-
id: string;
|
|
196
|
-
version: string;
|
|
197
|
-
publicHash: string;
|
|
198
|
-
privateHash: string;
|
|
199
|
-
}[];
|
|
200
200
|
engineVersion: string;
|
|
201
201
|
matches: number;
|
|
202
202
|
judges: {
|
|
@@ -216,10 +216,16 @@ declare const RunManifestSchema: z.ZodObject<{
|
|
|
216
216
|
judge: string;
|
|
217
217
|
};
|
|
218
218
|
}, {
|
|
219
|
+
tasks: {
|
|
220
|
+
id: string;
|
|
221
|
+
version: string;
|
|
222
|
+
publicHash: string;
|
|
223
|
+
privateHash: string | null;
|
|
224
|
+
}[];
|
|
225
|
+
version: "1.0.0";
|
|
226
|
+
category: "reasoning" | "hallucination" | "security" | "bullshit" | "refactoring" | "debugging" | "generation" | "speed";
|
|
219
227
|
methodologyVersion: string;
|
|
220
228
|
seed: string;
|
|
221
|
-
version: "1.0.0";
|
|
222
|
-
category: "reasoning" | "hallucination";
|
|
223
229
|
competitors: {
|
|
224
230
|
id: string;
|
|
225
231
|
role: "competitor";
|
|
@@ -232,12 +238,6 @@ declare const RunManifestSchema: z.ZodObject<{
|
|
|
232
238
|
excludeReasoning: boolean;
|
|
233
239
|
};
|
|
234
240
|
}[];
|
|
235
|
-
tasks: {
|
|
236
|
-
id: string;
|
|
237
|
-
version: string;
|
|
238
|
-
publicHash: string;
|
|
239
|
-
privateHash: string;
|
|
240
|
-
}[];
|
|
241
241
|
engineVersion: string;
|
|
242
242
|
matches: number;
|
|
243
243
|
judges: {
|
|
@@ -261,7 +261,7 @@ type RunManifest = z.infer<typeof RunManifestSchema>;
|
|
|
261
261
|
declare function canonicalJson(value: unknown): string;
|
|
262
262
|
declare function runManifestHash(manifest: RunManifest): string;
|
|
263
263
|
declare function runIdFromManifest(manifest: RunManifest): string;
|
|
264
|
-
declare function createRunManifest(config: Pick<ArenaRunConfig, 'category' | 'seed' | 'matches' | 'competitorIds'>, tasks:
|
|
264
|
+
declare function createRunManifest(config: Pick<ArenaRunConfig, 'category' | 'seed' | 'matches' | 'competitorIds'>, tasks: readonly ArenaTask[], resolvedCompetitors?: readonly ModelRegistryEntry[]): RunManifest;
|
|
265
265
|
|
|
266
266
|
interface ArenaStoreConfig {
|
|
267
267
|
category: BenchmarkCategory;
|