@openpond/evals 0.4.2 → 0.6.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.
- package/CONTRACT.md +27 -1
- package/README.md +31 -2
- package/conformance/telemetry/v1/invalid-batch.json +17 -0
- package/conformance/telemetry/v1/valid-batch.json +58 -0
- package/dist/artifact-verification.js +172 -0
- package/dist/builtin-benchmarks/harness-refiner.js +469 -24
- package/dist/execution-contracts.js +153 -0
- package/dist/execution-receipts.js +185 -0
- package/dist/graders.js +8 -2
- package/dist/index.js +10 -0
- package/dist/learned-preference.js +334 -0
- package/dist/preferences.js +803 -0
- package/dist/rollouts.js +241 -0
- package/dist/tasksets.js +24 -0
- package/dist/telemetry/index.js +4 -0
- package/dist/telemetry-analysis.js +183 -0
- package/dist/telemetry-bundle.js +60 -0
- package/dist/telemetry-catalog.js +50 -0
- package/dist/telemetry.js +112 -0
- package/dist/types/artifact-verification.d.ts +31 -0
- package/dist/types/artifact-verification.d.ts.map +1 -0
- package/dist/types/builtin-benchmarks/harness-refiner.d.ts +22 -0
- package/dist/types/builtin-benchmarks/harness-refiner.d.ts.map +1 -1
- package/dist/types/conformance.d.ts +44 -0
- package/dist/types/conformance.d.ts.map +1 -1
- package/dist/types/evidence/conformance.d.ts +24 -24
- package/dist/types/evidence/contracts.d.ts +42 -42
- package/dist/types/execution-contracts.d.ts +806 -0
- package/dist/types/execution-contracts.d.ts.map +1 -0
- package/dist/types/execution-receipts.d.ts +55 -0
- package/dist/types/execution-receipts.d.ts.map +1 -0
- package/dist/types/graders.d.ts.map +1 -1
- package/dist/types/index.d.ts +10 -0
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/learned-preference.d.ts +282 -0
- package/dist/types/learned-preference.d.ts.map +1 -0
- package/dist/types/preferences.d.ts +583 -0
- package/dist/types/preferences.d.ts.map +1 -0
- package/dist/types/review-conformance.d.ts +20 -15
- package/dist/types/review-conformance.d.ts.map +1 -1
- package/dist/types/rollouts.d.ts +221 -0
- package/dist/types/rollouts.d.ts.map +1 -0
- package/dist/types/tasksets.d.ts +89 -0
- package/dist/types/tasksets.d.ts.map +1 -1
- package/dist/types/telemetry/index.d.ts +5 -0
- package/dist/types/telemetry/index.d.ts.map +1 -0
- package/dist/types/telemetry-analysis.d.ts +116 -0
- package/dist/types/telemetry-analysis.d.ts.map +1 -0
- package/dist/types/telemetry-bundle.d.ts +309 -0
- package/dist/types/telemetry-bundle.d.ts.map +1 -0
- package/dist/types/telemetry-catalog.d.ts +269 -0
- package/dist/types/telemetry-catalog.d.ts.map +1 -0
- package/dist/types/telemetry.d.ts +266 -0
- package/dist/types/telemetry.d.ts.map +1 -0
- package/package.json +20 -2
- package/schemas/telemetry/v1/evidence-completeness.schema.json +82 -0
- package/schemas/telemetry/v1/evidence-reference.schema.json +41 -0
- package/schemas/telemetry/v1/metric-definition.schema.json +96 -0
- package/schemas/telemetry/v1/metric-observation.schema.json +182 -0
- package/schemas/telemetry/v1/run-metric-summary.schema.json +98 -0
- package/schemas/telemetry/v1/run-telemetry-batch.schema.json +405 -0
- package/schemas/telemetry/v1/run-telemetry-event.schema.json +201 -0
- package/schemas/telemetry/v1/telemetry-cohort.schema.json +100 -0
- package/schemas/telemetry/v1/telemetry-export-bundle.schema.json +655 -0
|
@@ -0,0 +1,583 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
import { ImmutableArtifactRefSchema } from "@openpond/harness";
|
|
3
|
+
import { type ArtifactManifest, type FailureOwner, type RewardComponentReceipt } from "./execution-contracts.js";
|
|
4
|
+
import { type AttemptReceipt, type HarnessCompatibilityReceipt, type RunManifest } from "./runs.js";
|
|
5
|
+
import { type TasksetRelease } from "./tasksets.js";
|
|
6
|
+
export declare const PreferenceComparisonPurposeSchema: z.ZodEnum<{
|
|
7
|
+
validation: "validation";
|
|
8
|
+
frozen_eval: "frozen_eval";
|
|
9
|
+
calibration: "calibration";
|
|
10
|
+
training_reward: "training_reward";
|
|
11
|
+
}>;
|
|
12
|
+
export declare const PreferenceReviewerKindSchema: z.ZodEnum<{
|
|
13
|
+
human: "human";
|
|
14
|
+
model: "model";
|
|
15
|
+
fixture: "fixture";
|
|
16
|
+
deterministic: "deterministic";
|
|
17
|
+
}>;
|
|
18
|
+
export declare const PreferenceRewardScopeSchema: z.ZodEnum<{
|
|
19
|
+
production: "production";
|
|
20
|
+
synthetic_smoke: "synthetic_smoke";
|
|
21
|
+
}>;
|
|
22
|
+
export declare const PreferenceRendererSchema: z.ZodEnum<{
|
|
23
|
+
text: "text";
|
|
24
|
+
code: "code";
|
|
25
|
+
markdown: "markdown";
|
|
26
|
+
json: "json";
|
|
27
|
+
image: "image";
|
|
28
|
+
}>;
|
|
29
|
+
export declare const PreferenceComparisonReleaseContentSchema: z.ZodObject<{
|
|
30
|
+
schemaVersion: z.ZodLiteral<"openpond.preferenceComparisonRelease.v1">;
|
|
31
|
+
id: z.ZodString;
|
|
32
|
+
revision: z.ZodNumber;
|
|
33
|
+
tasksetRelease: z.ZodObject<{
|
|
34
|
+
id: z.ZodString;
|
|
35
|
+
contentHash: z.ZodString;
|
|
36
|
+
}, z.core.$strict>;
|
|
37
|
+
candidateCount: z.ZodNumber;
|
|
38
|
+
resultMode: z.ZodLiteral<"ordered_tie_groups">;
|
|
39
|
+
allowTies: z.ZodBoolean;
|
|
40
|
+
allowRejectAll: z.ZodBoolean;
|
|
41
|
+
presentation: z.ZodObject<{
|
|
42
|
+
showTaskPrompt: z.ZodBoolean;
|
|
43
|
+
randomizeCandidateOrder: z.ZodBoolean;
|
|
44
|
+
hideModelIdentity: z.ZodBoolean;
|
|
45
|
+
parts: z.ZodArray<z.ZodObject<{
|
|
46
|
+
source: z.ZodEnum<{
|
|
47
|
+
artifact: "artifact";
|
|
48
|
+
attempt_output: "attempt_output";
|
|
49
|
+
}>;
|
|
50
|
+
path: z.ZodString;
|
|
51
|
+
renderer: z.ZodEnum<{
|
|
52
|
+
text: "text";
|
|
53
|
+
code: "code";
|
|
54
|
+
markdown: "markdown";
|
|
55
|
+
json: "json";
|
|
56
|
+
image: "image";
|
|
57
|
+
}>;
|
|
58
|
+
}, z.core.$strict>>;
|
|
59
|
+
}, z.core.$strict>;
|
|
60
|
+
rubricRef: z.ZodObject<{
|
|
61
|
+
id: z.ZodString;
|
|
62
|
+
contentHash: z.ZodString;
|
|
63
|
+
mediaType: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
64
|
+
sizeBytes: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
65
|
+
}, z.core.$strict>;
|
|
66
|
+
criteria: z.ZodArray<z.ZodObject<{
|
|
67
|
+
id: z.ZodString;
|
|
68
|
+
label: z.ZodString;
|
|
69
|
+
instruction: z.ZodString;
|
|
70
|
+
weight: z.ZodNumber;
|
|
71
|
+
}, z.core.$strict>>;
|
|
72
|
+
assignment: z.ZodObject<{
|
|
73
|
+
strategy: z.ZodLiteral<"randomized_blinded_v1">;
|
|
74
|
+
maxAssignmentsPerCandidate: z.ZodNumber;
|
|
75
|
+
}, z.core.$strict>;
|
|
76
|
+
aggregation: z.ZodObject<{
|
|
77
|
+
algorithm: z.ZodLiteral<"mean_pairwise_win_fraction_v1">;
|
|
78
|
+
quorum: z.ZodNumber;
|
|
79
|
+
rejectAllThreshold: z.ZodNumber;
|
|
80
|
+
}, z.core.$strict>;
|
|
81
|
+
rewardProjection: z.ZodObject<{
|
|
82
|
+
algorithm: z.ZodLiteral<"pairwise_win_fraction_v1">;
|
|
83
|
+
verifierId: z.ZodString;
|
|
84
|
+
verifierVersion: z.ZodString;
|
|
85
|
+
weight: z.ZodNumber;
|
|
86
|
+
}, z.core.$strict>;
|
|
87
|
+
calibration: z.ZodObject<{
|
|
88
|
+
minimumSamples: z.ZodNumber;
|
|
89
|
+
minimumOrderAgreement: z.ZodNumber;
|
|
90
|
+
minimumTieAgreement: z.ZodNumber;
|
|
91
|
+
minimumOrderSwapAgreement: z.ZodNumber;
|
|
92
|
+
}, z.core.$strict>;
|
|
93
|
+
metadata: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
94
|
+
}, z.core.$strict>;
|
|
95
|
+
export declare const PreferenceComparisonReleaseSchema: z.ZodObject<{
|
|
96
|
+
schemaVersion: z.ZodLiteral<"openpond.preferenceComparisonRelease.v1">;
|
|
97
|
+
id: z.ZodString;
|
|
98
|
+
revision: z.ZodNumber;
|
|
99
|
+
tasksetRelease: z.ZodObject<{
|
|
100
|
+
id: z.ZodString;
|
|
101
|
+
contentHash: z.ZodString;
|
|
102
|
+
}, z.core.$strict>;
|
|
103
|
+
candidateCount: z.ZodNumber;
|
|
104
|
+
resultMode: z.ZodLiteral<"ordered_tie_groups">;
|
|
105
|
+
allowTies: z.ZodBoolean;
|
|
106
|
+
allowRejectAll: z.ZodBoolean;
|
|
107
|
+
presentation: z.ZodObject<{
|
|
108
|
+
showTaskPrompt: z.ZodBoolean;
|
|
109
|
+
randomizeCandidateOrder: z.ZodBoolean;
|
|
110
|
+
hideModelIdentity: z.ZodBoolean;
|
|
111
|
+
parts: z.ZodArray<z.ZodObject<{
|
|
112
|
+
source: z.ZodEnum<{
|
|
113
|
+
artifact: "artifact";
|
|
114
|
+
attempt_output: "attempt_output";
|
|
115
|
+
}>;
|
|
116
|
+
path: z.ZodString;
|
|
117
|
+
renderer: z.ZodEnum<{
|
|
118
|
+
text: "text";
|
|
119
|
+
code: "code";
|
|
120
|
+
markdown: "markdown";
|
|
121
|
+
json: "json";
|
|
122
|
+
image: "image";
|
|
123
|
+
}>;
|
|
124
|
+
}, z.core.$strict>>;
|
|
125
|
+
}, z.core.$strict>;
|
|
126
|
+
rubricRef: z.ZodObject<{
|
|
127
|
+
id: z.ZodString;
|
|
128
|
+
contentHash: z.ZodString;
|
|
129
|
+
mediaType: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
130
|
+
sizeBytes: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
131
|
+
}, z.core.$strict>;
|
|
132
|
+
criteria: z.ZodArray<z.ZodObject<{
|
|
133
|
+
id: z.ZodString;
|
|
134
|
+
label: z.ZodString;
|
|
135
|
+
instruction: z.ZodString;
|
|
136
|
+
weight: z.ZodNumber;
|
|
137
|
+
}, z.core.$strict>>;
|
|
138
|
+
assignment: z.ZodObject<{
|
|
139
|
+
strategy: z.ZodLiteral<"randomized_blinded_v1">;
|
|
140
|
+
maxAssignmentsPerCandidate: z.ZodNumber;
|
|
141
|
+
}, z.core.$strict>;
|
|
142
|
+
aggregation: z.ZodObject<{
|
|
143
|
+
algorithm: z.ZodLiteral<"mean_pairwise_win_fraction_v1">;
|
|
144
|
+
quorum: z.ZodNumber;
|
|
145
|
+
rejectAllThreshold: z.ZodNumber;
|
|
146
|
+
}, z.core.$strict>;
|
|
147
|
+
rewardProjection: z.ZodObject<{
|
|
148
|
+
algorithm: z.ZodLiteral<"pairwise_win_fraction_v1">;
|
|
149
|
+
verifierId: z.ZodString;
|
|
150
|
+
verifierVersion: z.ZodString;
|
|
151
|
+
weight: z.ZodNumber;
|
|
152
|
+
}, z.core.$strict>;
|
|
153
|
+
calibration: z.ZodObject<{
|
|
154
|
+
minimumSamples: z.ZodNumber;
|
|
155
|
+
minimumOrderAgreement: z.ZodNumber;
|
|
156
|
+
minimumTieAgreement: z.ZodNumber;
|
|
157
|
+
minimumOrderSwapAgreement: z.ZodNumber;
|
|
158
|
+
}, z.core.$strict>;
|
|
159
|
+
metadata: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
160
|
+
contentHash: z.ZodString;
|
|
161
|
+
}, z.core.$strict>;
|
|
162
|
+
export declare const ComparisonAssignmentContentSchema: z.ZodObject<{
|
|
163
|
+
schemaVersion: z.ZodLiteral<"openpond.comparisonAssignment.v1">;
|
|
164
|
+
id: z.ZodString;
|
|
165
|
+
comparisonRelease: z.ZodObject<{
|
|
166
|
+
id: z.ZodString;
|
|
167
|
+
contentHash: z.ZodString;
|
|
168
|
+
}, z.core.$strict>;
|
|
169
|
+
taskRef: z.ZodObject<{
|
|
170
|
+
id: z.ZodString;
|
|
171
|
+
contentHash: z.ZodString;
|
|
172
|
+
}, z.core.$strict>;
|
|
173
|
+
lineage: z.ZodObject<{
|
|
174
|
+
tasksetRelease: z.ZodObject<{
|
|
175
|
+
id: z.ZodString;
|
|
176
|
+
contentHash: z.ZodString;
|
|
177
|
+
}, z.core.$strict>;
|
|
178
|
+
harnessReleases: z.ZodArray<z.ZodObject<{
|
|
179
|
+
id: z.ZodString;
|
|
180
|
+
contentHash: z.ZodString;
|
|
181
|
+
}, z.core.$strict>>;
|
|
182
|
+
runManifestRefs: z.ZodArray<z.ZodObject<{
|
|
183
|
+
id: z.ZodString;
|
|
184
|
+
contentHash: z.ZodString;
|
|
185
|
+
}, z.core.$strict>>;
|
|
186
|
+
harnessCompatibilityReceiptRefs: z.ZodArray<z.ZodObject<{
|
|
187
|
+
id: z.ZodString;
|
|
188
|
+
contentHash: z.ZodString;
|
|
189
|
+
}, z.core.$strict>>;
|
|
190
|
+
environmentRelease: z.ZodObject<{
|
|
191
|
+
id: z.ZodString;
|
|
192
|
+
contentHash: z.ZodString;
|
|
193
|
+
}, z.core.$strict>;
|
|
194
|
+
verifierSetRelease: z.ZodObject<{
|
|
195
|
+
id: z.ZodString;
|
|
196
|
+
contentHash: z.ZodString;
|
|
197
|
+
}, z.core.$strict>;
|
|
198
|
+
toolContractHash: z.ZodString;
|
|
199
|
+
policyHash: z.ZodString;
|
|
200
|
+
}, z.core.$strict>;
|
|
201
|
+
candidates: z.ZodArray<z.ZodObject<{
|
|
202
|
+
attemptRef: z.ZodObject<{
|
|
203
|
+
id: z.ZodString;
|
|
204
|
+
contentHash: z.ZodString;
|
|
205
|
+
}, z.core.$strict>;
|
|
206
|
+
runManifestRef: z.ZodObject<{
|
|
207
|
+
id: z.ZodString;
|
|
208
|
+
contentHash: z.ZodString;
|
|
209
|
+
}, z.core.$strict>;
|
|
210
|
+
artifactManifestRef: z.ZodObject<{
|
|
211
|
+
id: z.ZodString;
|
|
212
|
+
contentHash: z.ZodString;
|
|
213
|
+
}, z.core.$strict>;
|
|
214
|
+
visibleArtifactIds: z.ZodArray<z.ZodString>;
|
|
215
|
+
}, z.core.$strict>>;
|
|
216
|
+
presentedCandidateOrder: z.ZodArray<z.ZodString>;
|
|
217
|
+
purpose: z.ZodEnum<{
|
|
218
|
+
validation: "validation";
|
|
219
|
+
frozen_eval: "frozen_eval";
|
|
220
|
+
calibration: "calibration";
|
|
221
|
+
training_reward: "training_reward";
|
|
222
|
+
}>;
|
|
223
|
+
createdAt: z.ZodString;
|
|
224
|
+
metadata: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
225
|
+
}, z.core.$strict>;
|
|
226
|
+
export declare const ComparisonAssignmentSchema: z.ZodObject<{
|
|
227
|
+
schemaVersion: z.ZodLiteral<"openpond.comparisonAssignment.v1">;
|
|
228
|
+
id: z.ZodString;
|
|
229
|
+
comparisonRelease: z.ZodObject<{
|
|
230
|
+
id: z.ZodString;
|
|
231
|
+
contentHash: z.ZodString;
|
|
232
|
+
}, z.core.$strict>;
|
|
233
|
+
taskRef: z.ZodObject<{
|
|
234
|
+
id: z.ZodString;
|
|
235
|
+
contentHash: z.ZodString;
|
|
236
|
+
}, z.core.$strict>;
|
|
237
|
+
lineage: z.ZodObject<{
|
|
238
|
+
tasksetRelease: z.ZodObject<{
|
|
239
|
+
id: z.ZodString;
|
|
240
|
+
contentHash: z.ZodString;
|
|
241
|
+
}, z.core.$strict>;
|
|
242
|
+
harnessReleases: z.ZodArray<z.ZodObject<{
|
|
243
|
+
id: z.ZodString;
|
|
244
|
+
contentHash: z.ZodString;
|
|
245
|
+
}, z.core.$strict>>;
|
|
246
|
+
runManifestRefs: z.ZodArray<z.ZodObject<{
|
|
247
|
+
id: z.ZodString;
|
|
248
|
+
contentHash: z.ZodString;
|
|
249
|
+
}, z.core.$strict>>;
|
|
250
|
+
harnessCompatibilityReceiptRefs: z.ZodArray<z.ZodObject<{
|
|
251
|
+
id: z.ZodString;
|
|
252
|
+
contentHash: z.ZodString;
|
|
253
|
+
}, z.core.$strict>>;
|
|
254
|
+
environmentRelease: z.ZodObject<{
|
|
255
|
+
id: z.ZodString;
|
|
256
|
+
contentHash: z.ZodString;
|
|
257
|
+
}, z.core.$strict>;
|
|
258
|
+
verifierSetRelease: z.ZodObject<{
|
|
259
|
+
id: z.ZodString;
|
|
260
|
+
contentHash: z.ZodString;
|
|
261
|
+
}, z.core.$strict>;
|
|
262
|
+
toolContractHash: z.ZodString;
|
|
263
|
+
policyHash: z.ZodString;
|
|
264
|
+
}, z.core.$strict>;
|
|
265
|
+
candidates: z.ZodArray<z.ZodObject<{
|
|
266
|
+
attemptRef: z.ZodObject<{
|
|
267
|
+
id: z.ZodString;
|
|
268
|
+
contentHash: z.ZodString;
|
|
269
|
+
}, z.core.$strict>;
|
|
270
|
+
runManifestRef: z.ZodObject<{
|
|
271
|
+
id: z.ZodString;
|
|
272
|
+
contentHash: z.ZodString;
|
|
273
|
+
}, z.core.$strict>;
|
|
274
|
+
artifactManifestRef: z.ZodObject<{
|
|
275
|
+
id: z.ZodString;
|
|
276
|
+
contentHash: z.ZodString;
|
|
277
|
+
}, z.core.$strict>;
|
|
278
|
+
visibleArtifactIds: z.ZodArray<z.ZodString>;
|
|
279
|
+
}, z.core.$strict>>;
|
|
280
|
+
presentedCandidateOrder: z.ZodArray<z.ZodString>;
|
|
281
|
+
purpose: z.ZodEnum<{
|
|
282
|
+
validation: "validation";
|
|
283
|
+
frozen_eval: "frozen_eval";
|
|
284
|
+
calibration: "calibration";
|
|
285
|
+
training_reward: "training_reward";
|
|
286
|
+
}>;
|
|
287
|
+
createdAt: z.ZodString;
|
|
288
|
+
metadata: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
289
|
+
contentHash: z.ZodString;
|
|
290
|
+
}, z.core.$strict>;
|
|
291
|
+
export declare const PreferenceReceiptContentSchema: z.ZodObject<{
|
|
292
|
+
schemaVersion: z.ZodLiteral<"openpond.preferenceReceipt.v1">;
|
|
293
|
+
id: z.ZodString;
|
|
294
|
+
assignmentRef: z.ZodObject<{
|
|
295
|
+
id: z.ZodString;
|
|
296
|
+
contentHash: z.ZodString;
|
|
297
|
+
}, z.core.$strict>;
|
|
298
|
+
reviewer: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
299
|
+
kind: z.ZodEnum<{
|
|
300
|
+
human: "human";
|
|
301
|
+
model: "model";
|
|
302
|
+
deterministic: "deterministic";
|
|
303
|
+
}>;
|
|
304
|
+
releaseRef: z.ZodObject<{
|
|
305
|
+
id: z.ZodString;
|
|
306
|
+
contentHash: z.ZodString;
|
|
307
|
+
}, z.core.$strict>;
|
|
308
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
309
|
+
kind: z.ZodLiteral<"fixture">;
|
|
310
|
+
releaseRef: z.ZodObject<{
|
|
311
|
+
id: z.ZodString;
|
|
312
|
+
contentHash: z.ZodString;
|
|
313
|
+
}, z.core.$strict>;
|
|
314
|
+
fixtureRelease: z.ZodObject<{
|
|
315
|
+
id: z.ZodString;
|
|
316
|
+
contentHash: z.ZodString;
|
|
317
|
+
}, z.core.$strict>;
|
|
318
|
+
labelSource: z.ZodLiteral<"synthetic">;
|
|
319
|
+
qualificationEligibility: z.ZodLiteral<"smoke_only">;
|
|
320
|
+
}, z.core.$strict>], "kind">;
|
|
321
|
+
order: z.ZodArray<z.ZodArray<z.ZodString>>;
|
|
322
|
+
rejectAll: z.ZodBoolean;
|
|
323
|
+
criterionScores: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
324
|
+
feedbackArtifactRef: z.ZodNullable<z.ZodObject<{
|
|
325
|
+
id: z.ZodString;
|
|
326
|
+
contentHash: z.ZodString;
|
|
327
|
+
mediaType: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
328
|
+
sizeBytes: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
329
|
+
}, z.core.$strict>>;
|
|
330
|
+
startedAt: z.ZodString;
|
|
331
|
+
completedAt: z.ZodString;
|
|
332
|
+
metadata: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
333
|
+
}, z.core.$strict>;
|
|
334
|
+
export declare const PreferenceReceiptSchema: z.ZodObject<{
|
|
335
|
+
schemaVersion: z.ZodLiteral<"openpond.preferenceReceipt.v1">;
|
|
336
|
+
id: z.ZodString;
|
|
337
|
+
assignmentRef: z.ZodObject<{
|
|
338
|
+
id: z.ZodString;
|
|
339
|
+
contentHash: z.ZodString;
|
|
340
|
+
}, z.core.$strict>;
|
|
341
|
+
reviewer: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
342
|
+
kind: z.ZodEnum<{
|
|
343
|
+
human: "human";
|
|
344
|
+
model: "model";
|
|
345
|
+
deterministic: "deterministic";
|
|
346
|
+
}>;
|
|
347
|
+
releaseRef: z.ZodObject<{
|
|
348
|
+
id: z.ZodString;
|
|
349
|
+
contentHash: z.ZodString;
|
|
350
|
+
}, z.core.$strict>;
|
|
351
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
352
|
+
kind: z.ZodLiteral<"fixture">;
|
|
353
|
+
releaseRef: z.ZodObject<{
|
|
354
|
+
id: z.ZodString;
|
|
355
|
+
contentHash: z.ZodString;
|
|
356
|
+
}, z.core.$strict>;
|
|
357
|
+
fixtureRelease: z.ZodObject<{
|
|
358
|
+
id: z.ZodString;
|
|
359
|
+
contentHash: z.ZodString;
|
|
360
|
+
}, z.core.$strict>;
|
|
361
|
+
labelSource: z.ZodLiteral<"synthetic">;
|
|
362
|
+
qualificationEligibility: z.ZodLiteral<"smoke_only">;
|
|
363
|
+
}, z.core.$strict>], "kind">;
|
|
364
|
+
order: z.ZodArray<z.ZodArray<z.ZodString>>;
|
|
365
|
+
rejectAll: z.ZodBoolean;
|
|
366
|
+
criterionScores: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
367
|
+
feedbackArtifactRef: z.ZodNullable<z.ZodObject<{
|
|
368
|
+
id: z.ZodString;
|
|
369
|
+
contentHash: z.ZodString;
|
|
370
|
+
mediaType: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
371
|
+
sizeBytes: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
372
|
+
}, z.core.$strict>>;
|
|
373
|
+
startedAt: z.ZodString;
|
|
374
|
+
completedAt: z.ZodString;
|
|
375
|
+
metadata: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
376
|
+
contentHash: z.ZodString;
|
|
377
|
+
}, z.core.$strict>;
|
|
378
|
+
export declare const PreferenceAggregationReceiptContentSchema: z.ZodObject<{
|
|
379
|
+
schemaVersion: z.ZodLiteral<"openpond.preferenceAggregationReceipt.v1">;
|
|
380
|
+
id: z.ZodString;
|
|
381
|
+
assignmentRef: z.ZodObject<{
|
|
382
|
+
id: z.ZodString;
|
|
383
|
+
contentHash: z.ZodString;
|
|
384
|
+
}, z.core.$strict>;
|
|
385
|
+
comparisonRelease: z.ZodObject<{
|
|
386
|
+
id: z.ZodString;
|
|
387
|
+
contentHash: z.ZodString;
|
|
388
|
+
}, z.core.$strict>;
|
|
389
|
+
receiptRefs: z.ZodArray<z.ZodObject<{
|
|
390
|
+
id: z.ZodString;
|
|
391
|
+
contentHash: z.ZodString;
|
|
392
|
+
}, z.core.$strict>>;
|
|
393
|
+
order: z.ZodArray<z.ZodArray<z.ZodString>>;
|
|
394
|
+
rejectAll: z.ZodBoolean;
|
|
395
|
+
pairwiseWinFractions: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
396
|
+
quorum: z.ZodNumber;
|
|
397
|
+
createdAt: z.ZodString;
|
|
398
|
+
metadata: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
399
|
+
}, z.core.$strict>;
|
|
400
|
+
export declare const PreferenceAggregationReceiptSchema: z.ZodObject<{
|
|
401
|
+
schemaVersion: z.ZodLiteral<"openpond.preferenceAggregationReceipt.v1">;
|
|
402
|
+
id: z.ZodString;
|
|
403
|
+
assignmentRef: z.ZodObject<{
|
|
404
|
+
id: z.ZodString;
|
|
405
|
+
contentHash: z.ZodString;
|
|
406
|
+
}, z.core.$strict>;
|
|
407
|
+
comparisonRelease: z.ZodObject<{
|
|
408
|
+
id: z.ZodString;
|
|
409
|
+
contentHash: z.ZodString;
|
|
410
|
+
}, z.core.$strict>;
|
|
411
|
+
receiptRefs: z.ZodArray<z.ZodObject<{
|
|
412
|
+
id: z.ZodString;
|
|
413
|
+
contentHash: z.ZodString;
|
|
414
|
+
}, z.core.$strict>>;
|
|
415
|
+
order: z.ZodArray<z.ZodArray<z.ZodString>>;
|
|
416
|
+
rejectAll: z.ZodBoolean;
|
|
417
|
+
pairwiseWinFractions: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
418
|
+
quorum: z.ZodNumber;
|
|
419
|
+
createdAt: z.ZodString;
|
|
420
|
+
metadata: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
421
|
+
contentHash: z.ZodString;
|
|
422
|
+
}, z.core.$strict>;
|
|
423
|
+
export declare const PreferenceCalibrationReportContentSchema: z.ZodObject<{
|
|
424
|
+
schemaVersion: z.ZodLiteral<"openpond.preferenceCalibrationReport.v1">;
|
|
425
|
+
id: z.ZodString;
|
|
426
|
+
comparisonRelease: z.ZodObject<{
|
|
427
|
+
id: z.ZodString;
|
|
428
|
+
contentHash: z.ZodString;
|
|
429
|
+
}, z.core.$strict>;
|
|
430
|
+
automatedReviewer: z.ZodObject<{
|
|
431
|
+
id: z.ZodString;
|
|
432
|
+
contentHash: z.ZodString;
|
|
433
|
+
}, z.core.$strict>;
|
|
434
|
+
humanReceiptRefs: z.ZodArray<z.ZodObject<{
|
|
435
|
+
id: z.ZodString;
|
|
436
|
+
contentHash: z.ZodString;
|
|
437
|
+
}, z.core.$strict>>;
|
|
438
|
+
modelReceiptRefs: z.ZodArray<z.ZodObject<{
|
|
439
|
+
id: z.ZodString;
|
|
440
|
+
contentHash: z.ZodString;
|
|
441
|
+
}, z.core.$strict>>;
|
|
442
|
+
sampleCount: z.ZodNumber;
|
|
443
|
+
orderAgreement: z.ZodNumber;
|
|
444
|
+
tieAgreement: z.ZodNumber;
|
|
445
|
+
orderSwapAgreement: z.ZodNumber;
|
|
446
|
+
passed: z.ZodBoolean;
|
|
447
|
+
createdAt: z.ZodString;
|
|
448
|
+
metadata: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
449
|
+
}, z.core.$strict>;
|
|
450
|
+
export declare const PreferenceCalibrationReportSchema: z.ZodObject<{
|
|
451
|
+
schemaVersion: z.ZodLiteral<"openpond.preferenceCalibrationReport.v1">;
|
|
452
|
+
id: z.ZodString;
|
|
453
|
+
comparisonRelease: z.ZodObject<{
|
|
454
|
+
id: z.ZodString;
|
|
455
|
+
contentHash: z.ZodString;
|
|
456
|
+
}, z.core.$strict>;
|
|
457
|
+
automatedReviewer: z.ZodObject<{
|
|
458
|
+
id: z.ZodString;
|
|
459
|
+
contentHash: z.ZodString;
|
|
460
|
+
}, z.core.$strict>;
|
|
461
|
+
humanReceiptRefs: z.ZodArray<z.ZodObject<{
|
|
462
|
+
id: z.ZodString;
|
|
463
|
+
contentHash: z.ZodString;
|
|
464
|
+
}, z.core.$strict>>;
|
|
465
|
+
modelReceiptRefs: z.ZodArray<z.ZodObject<{
|
|
466
|
+
id: z.ZodString;
|
|
467
|
+
contentHash: z.ZodString;
|
|
468
|
+
}, z.core.$strict>>;
|
|
469
|
+
sampleCount: z.ZodNumber;
|
|
470
|
+
orderAgreement: z.ZodNumber;
|
|
471
|
+
tieAgreement: z.ZodNumber;
|
|
472
|
+
orderSwapAgreement: z.ZodNumber;
|
|
473
|
+
passed: z.ZodBoolean;
|
|
474
|
+
createdAt: z.ZodString;
|
|
475
|
+
metadata: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
476
|
+
contentHash: z.ZodString;
|
|
477
|
+
}, z.core.$strict>;
|
|
478
|
+
export declare function createPreferenceComparisonRelease(input: z.input<typeof PreferenceComparisonReleaseContentSchema>): PreferenceComparisonRelease;
|
|
479
|
+
export declare function verifyPreferenceComparisonRelease(value: unknown): value is PreferenceComparisonRelease;
|
|
480
|
+
export declare function createComparisonAssignment(input: {
|
|
481
|
+
id: string;
|
|
482
|
+
comparisonRelease: PreferenceComparisonRelease;
|
|
483
|
+
taskset: TasksetRelease;
|
|
484
|
+
candidates: readonly ComparisonAssignmentCandidateInput[];
|
|
485
|
+
harnessCompatibilityReceipts?: readonly HarnessCompatibilityReceipt[];
|
|
486
|
+
purpose: PreferenceComparisonPurpose;
|
|
487
|
+
presentedCandidateOrder?: readonly string[];
|
|
488
|
+
createdAt: string;
|
|
489
|
+
metadata?: Record<string, unknown>;
|
|
490
|
+
}): ComparisonAssignment;
|
|
491
|
+
export declare function verifyComparisonAssignment(value: unknown): value is ComparisonAssignment;
|
|
492
|
+
export declare function validateComparisonAssignment(assignment: ComparisonAssignment, release: PreferenceComparisonRelease): void;
|
|
493
|
+
export declare function createPreferenceReceipt(input: {
|
|
494
|
+
id: string;
|
|
495
|
+
assignment: ComparisonAssignment;
|
|
496
|
+
comparisonRelease: PreferenceComparisonRelease;
|
|
497
|
+
reviewer: PreferenceReviewer;
|
|
498
|
+
order: readonly (readonly string[])[];
|
|
499
|
+
rejectAll: boolean;
|
|
500
|
+
criterionScores?: Record<string, Record<string, number>>;
|
|
501
|
+
feedbackArtifactRef?: z.input<typeof ImmutableArtifactRefSchema> | null;
|
|
502
|
+
startedAt: string;
|
|
503
|
+
completedAt: string;
|
|
504
|
+
metadata?: Record<string, unknown>;
|
|
505
|
+
}): PreferenceReceipt;
|
|
506
|
+
export declare function createSyntheticFixturePreferenceReceipt(input: {
|
|
507
|
+
id: string;
|
|
508
|
+
assignment: ComparisonAssignment;
|
|
509
|
+
comparisonRelease: PreferenceComparisonRelease;
|
|
510
|
+
labelerRelease: {
|
|
511
|
+
id: string;
|
|
512
|
+
contentHash: string;
|
|
513
|
+
};
|
|
514
|
+
fixtureRelease: {
|
|
515
|
+
id: string;
|
|
516
|
+
contentHash: string;
|
|
517
|
+
};
|
|
518
|
+
ratings: Record<string, "love" | "like" | "reject">;
|
|
519
|
+
startedAt: string;
|
|
520
|
+
completedAt: string;
|
|
521
|
+
metadata?: Record<string, unknown>;
|
|
522
|
+
}): PreferenceReceipt;
|
|
523
|
+
export declare function verifyPreferenceReceipt(value: unknown): value is PreferenceReceipt;
|
|
524
|
+
export declare function aggregatePreferenceReceipts(input: {
|
|
525
|
+
id: string;
|
|
526
|
+
assignment: ComparisonAssignment;
|
|
527
|
+
comparisonRelease: PreferenceComparisonRelease;
|
|
528
|
+
receipts: readonly PreferenceReceipt[];
|
|
529
|
+
createdAt: string;
|
|
530
|
+
metadata?: Record<string, unknown>;
|
|
531
|
+
}): PreferenceAggregationReceipt;
|
|
532
|
+
export declare function verifyPreferenceAggregationReceipt(value: unknown): value is PreferenceAggregationReceipt;
|
|
533
|
+
export declare function createPreferenceCalibrationReport(input: {
|
|
534
|
+
id: string;
|
|
535
|
+
comparisonRelease: PreferenceComparisonRelease;
|
|
536
|
+
pairs: readonly PreferenceCalibrationPair[];
|
|
537
|
+
createdAt: string;
|
|
538
|
+
metadata?: Record<string, unknown>;
|
|
539
|
+
}): PreferenceCalibrationReport;
|
|
540
|
+
export declare function verifyPreferenceCalibrationReport(value: unknown): value is PreferenceCalibrationReport;
|
|
541
|
+
export declare function projectPairwiseWinFraction(input: {
|
|
542
|
+
assignment: ComparisonAssignment;
|
|
543
|
+
comparisonRelease: PreferenceComparisonRelease;
|
|
544
|
+
result: PreferenceReceipt | PreferenceAggregationReceipt;
|
|
545
|
+
}): Record<string, number>;
|
|
546
|
+
export declare function createPreferenceRewardComponents(input: {
|
|
547
|
+
assignment: ComparisonAssignment;
|
|
548
|
+
comparisonRelease: PreferenceComparisonRelease;
|
|
549
|
+
result: PreferenceReceipt | PreferenceAggregationReceipt;
|
|
550
|
+
calibrationReport?: PreferenceCalibrationReport | null;
|
|
551
|
+
candidates?: readonly PreferenceCandidateEligibility[];
|
|
552
|
+
rewardScope?: z.input<typeof PreferenceRewardScopeSchema>;
|
|
553
|
+
}): Record<string, RewardComponentReceipt>;
|
|
554
|
+
export type PreferenceComparisonPurpose = z.infer<typeof PreferenceComparisonPurposeSchema>;
|
|
555
|
+
export type PreferenceReviewerKind = z.infer<typeof PreferenceReviewerKindSchema>;
|
|
556
|
+
export type PreferenceRewardScope = z.infer<typeof PreferenceRewardScopeSchema>;
|
|
557
|
+
export type PreferenceComparisonRelease = z.infer<typeof PreferenceComparisonReleaseSchema>;
|
|
558
|
+
export type ComparisonAssignment = z.infer<typeof ComparisonAssignmentSchema>;
|
|
559
|
+
export type PreferenceReceipt = z.infer<typeof PreferenceReceiptSchema>;
|
|
560
|
+
export type PreferenceAggregationReceipt = z.infer<typeof PreferenceAggregationReceiptSchema>;
|
|
561
|
+
export type PreferenceCalibrationReport = z.infer<typeof PreferenceCalibrationReportSchema>;
|
|
562
|
+
export type PreferenceReviewer = z.infer<typeof PreferenceReceiptSchema>["reviewer"];
|
|
563
|
+
export type ComparisonAssignmentCandidateInput = {
|
|
564
|
+
attempt: AttemptReceipt;
|
|
565
|
+
artifactManifest: ArtifactManifest;
|
|
566
|
+
runManifest: RunManifest;
|
|
567
|
+
visibleArtifactIds: readonly string[];
|
|
568
|
+
};
|
|
569
|
+
export type PreferenceCandidateEligibility = {
|
|
570
|
+
attemptRef: {
|
|
571
|
+
id: string;
|
|
572
|
+
contentHash: string;
|
|
573
|
+
};
|
|
574
|
+
eligible: boolean;
|
|
575
|
+
failureOwner?: FailureOwner;
|
|
576
|
+
};
|
|
577
|
+
export type PreferenceCalibrationPair = {
|
|
578
|
+
assignment: ComparisonAssignment;
|
|
579
|
+
human: PreferenceReceipt;
|
|
580
|
+
model: PreferenceReceipt;
|
|
581
|
+
swappedModel?: PreferenceReceipt;
|
|
582
|
+
};
|
|
583
|
+
//# sourceMappingURL=preferences.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"preferences.d.ts","sourceRoot":"","sources":["../../../../src/preferences.ts"],"names":[],"mappings":"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"}
|