@openpond/evals 0.5.0 → 0.7.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 +13 -1
- package/LEARNING.md +106 -0
- package/README.md +28 -2
- package/conformance/telemetry/v1/invalid-batch.json +17 -0
- package/conformance/telemetry/v1/valid-batch.json +58 -0
- package/dist/graders.js +26 -5
- package/dist/index.js +8 -0
- package/dist/javascript-verifier-contract.js +7 -0
- package/dist/javascript-verifier-node.js +56 -0
- package/dist/javascript-verifier-worker-source.js +1 -0
- package/dist/javascript-verifier-worker.js +6 -0
- package/dist/javascript-verifier.js +64 -0
- package/dist/learned-preference.js +334 -0
- package/dist/learning/admission.js +209 -0
- package/dist/learning/assets.js +37 -0
- package/dist/learning/contracts.js +267 -0
- package/dist/learning/errors.js +12 -0
- package/dist/learning/grade-worker.js +99 -0
- package/dist/learning/index.js +9 -0
- package/dist/learning/operations.js +33 -0
- package/dist/learning/repository.js +48 -0
- package/dist/learning/service.js +367 -0
- package/dist/learning/transport.js +25 -0
- package/dist/preferences.js +77 -11
- package/dist/rewards.js +230 -0
- package/dist/task-schema.js +142 -0
- package/dist/tasksets.js +3 -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/builtin-benchmarks/harness-refiner.d.ts +7 -0
- package/dist/types/builtin-benchmarks/harness-refiner.d.ts.map +1 -1
- package/dist/types/conformance.d.ts +14 -0
- package/dist/types/conformance.d.ts.map +1 -1
- package/dist/types/execution-contracts.d.ts +14 -0
- package/dist/types/execution-contracts.d.ts.map +1 -1
- package/dist/types/graders.d.ts.map +1 -1
- package/dist/types/index.d.ts +8 -0
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/javascript-verifier-contract.d.ts +9 -0
- package/dist/types/javascript-verifier-contract.d.ts.map +1 -0
- package/dist/types/javascript-verifier-node.d.ts +5 -0
- package/dist/types/javascript-verifier-node.d.ts.map +1 -0
- package/dist/types/javascript-verifier-worker-source.d.ts +2 -0
- package/dist/types/javascript-verifier-worker.d.ts +2 -0
- package/dist/types/javascript-verifier-worker.d.ts.map +1 -0
- package/dist/types/javascript-verifier.d.ts +15 -0
- package/dist/types/javascript-verifier.d.ts.map +1 -0
- package/dist/types/learned-preference.d.ts +282 -0
- package/dist/types/learned-preference.d.ts.map +1 -0
- package/dist/types/learning/admission.d.ts +335 -0
- package/dist/types/learning/admission.d.ts.map +1 -0
- package/dist/types/learning/assets.d.ts +49 -0
- package/dist/types/learning/assets.d.ts.map +1 -0
- package/dist/types/learning/contracts.d.ts +2149 -0
- package/dist/types/learning/contracts.d.ts.map +1 -0
- package/dist/types/learning/errors.d.ts +8 -0
- package/dist/types/learning/errors.d.ts.map +1 -0
- package/dist/types/learning/grade-worker.d.ts +31 -0
- package/dist/types/learning/grade-worker.d.ts.map +1 -0
- package/dist/types/learning/index.d.ts +10 -0
- package/dist/types/learning/index.d.ts.map +1 -0
- package/dist/types/learning/operations.d.ts +2061 -0
- package/dist/types/learning/operations.d.ts.map +1 -0
- package/dist/types/learning/repository.d.ts +1143 -0
- package/dist/types/learning/repository.d.ts.map +1 -0
- package/dist/types/learning/service.d.ts +22 -0
- package/dist/types/learning/service.d.ts.map +1 -0
- package/dist/types/learning/transport.d.ts +2139 -0
- package/dist/types/learning/transport.d.ts.map +1 -0
- package/dist/types/preferences.d.ts +55 -7
- package/dist/types/preferences.d.ts.map +1 -1
- package/dist/types/review-conformance.d.ts +5 -5
- package/dist/types/rewards.d.ts +611 -0
- package/dist/types/rewards.d.ts.map +1 -0
- package/dist/types/task-schema.d.ts +18 -0
- package/dist/types/task-schema.d.ts.map +1 -0
- package/dist/types/tasksets.d.ts +28 -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 +40 -3
- package/schemas/learning/v1/asset.schema.json +89 -0
- package/schemas/learning/v1/batch.schema.json +132 -0
- package/schemas/learning/v1/binding.schema.json +207 -0
- package/schemas/learning/v1/command-request.schema.json +2414 -0
- package/schemas/learning/v1/decision.schema.json +440 -0
- package/schemas/learning/v1/definition.schema.json +397 -0
- package/schemas/learning/v1/evidence.schema.json +317 -0
- package/schemas/learning/v1/example-submission.schema.json +253 -0
- package/schemas/learning/v1/feedback-submission.schema.json +114 -0
- package/schemas/learning/v1/feedback.schema.json +233 -0
- package/schemas/learning/v1/grade.schema.json +412 -0
- package/schemas/learning/v1/iteration.schema.json +236 -0
- package/schemas/learning/v1/package.schema.json +776 -0
- package/schemas/learning/v1/policy.schema.json +373 -0
- package/schemas/learning/v1/read-request.schema.json +101 -0
- package/schemas/learning/v1/reward.schema.json +302 -0
- package/schemas/learning/v1/source.schema.json +198 -0
- 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,50 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
import { MetricDefinitionSchema } from "./telemetry.js";
|
|
3
|
+
const definition = (input) => MetricDefinitionSchema.parse({ schemaVersion: "openpond.metricDefinition.v1", ...input });
|
|
4
|
+
export const CORE_METRIC_CATALOG = [
|
|
5
|
+
definition({ id: "reward.mean", displayName: "Mean reward", description: "Mean composed reward for the cohort.", valueType: "gauge", unit: "scalar", direction: "higher", aggregation: "mean", visibility: "team_visible", boundedDimensions: ["split", "grader"] }),
|
|
6
|
+
definition({ id: "reward.variance", displayName: "Reward variance", description: "Population variance of composed reward within a rollout group.", valueType: "gauge", unit: "scalar", direction: "neutral", aggregation: "mean", visibility: "team_visible", boundedDimensions: ["split"] }),
|
|
7
|
+
definition({ id: "reward.constant_group_rate", displayName: "Constant group rate", description: "Fraction of rollout groups with no reward variation.", valueType: "gauge", unit: "ratio", direction: "lower", aggregation: "mean", visibility: "team_visible", boundedDimensions: ["split"] }),
|
|
8
|
+
definition({ id: "attempt.valid_rate", displayName: "Valid attempt rate", description: "Fraction of attempts passing deterministic validity checks.", valueType: "gauge", unit: "ratio", direction: "higher", aggregation: "mean", visibility: "team_visible", boundedDimensions: ["split", "failureOwner"] }),
|
|
9
|
+
definition({ id: "attempt.failure_count", displayName: "Attempt failures", description: "Count of failed Attempts.", valueType: "counter", unit: "count", direction: "lower", aggregation: "sum", visibility: "team_visible", boundedDimensions: ["split", "failureOwner", "failureClass"] }),
|
|
10
|
+
definition({ id: "optimizer.loss", displayName: "Optimizer loss", description: "Policy optimizer loss after the step.", valueType: "gauge", unit: "scalar", direction: "neutral", aggregation: "mean", visibility: "team_visible", boundedDimensions: ["split"] }),
|
|
11
|
+
definition({ id: "optimizer.learning_rate", displayName: "Learning rate", description: "Optimizer learning rate after the step.", valueType: "gauge", unit: "scalar", direction: "neutral", aggregation: "last", visibility: "team_visible", boundedDimensions: ["split"] }),
|
|
12
|
+
definition({ id: "optimizer.kl", displayName: "Policy update KL", description: "Sampled approximate KL between the frozen pre-update policy and the policy after the optimizer step.", valueType: "gauge", unit: "scalar", direction: "lower", aggregation: "mean", visibility: "team_visible", boundedDimensions: ["split"] }),
|
|
13
|
+
definition({ id: "optimizer.entropy", displayName: "Policy entropy", description: "Observed policy entropy for trainable tokens.", valueType: "gauge", unit: "scalar", direction: "neutral", aggregation: "mean", visibility: "team_visible", boundedDimensions: ["split"] }),
|
|
14
|
+
definition({ id: "optimizer.gradient_norm", displayName: "Gradient norm", description: "Gradient norm reported by the optimizer.", valueType: "gauge", unit: "scalar", direction: "neutral", aggregation: "max", visibility: "team_visible", boundedDimensions: ["split"] }),
|
|
15
|
+
definition({ id: "optimizer.clip_fraction", displayName: "Clip fraction", description: "Fraction of policy updates affected by clipping.", valueType: "gauge", unit: "ratio", direction: "neutral", aggregation: "mean", visibility: "team_visible", boundedDimensions: ["split"] }),
|
|
16
|
+
definition({ id: "output.duplicate_rate", displayName: "Duplicate output rate", description: "Fraction of outputs duplicated within the measured cohort.", valueType: "gauge", unit: "ratio", direction: "lower", aggregation: "mean", visibility: "team_visible", boundedDimensions: ["split"] }),
|
|
17
|
+
definition({ id: "output.unique_count", displayName: "Unique outputs", description: "Distinct output count in the measured cohort.", valueType: "gauge", unit: "count", direction: "higher", aggregation: "last", visibility: "team_visible", boundedDimensions: ["split"] }),
|
|
18
|
+
definition({ id: "tokens.input", displayName: "Input tokens", description: "Input tokens processed.", valueType: "counter", unit: "tokens", direction: "neutral", aggregation: "sum", visibility: "team_visible", boundedDimensions: ["split", "source"] }),
|
|
19
|
+
definition({ id: "tokens.output", displayName: "Output tokens", description: "Output tokens generated.", valueType: "counter", unit: "tokens", direction: "neutral", aggregation: "sum", visibility: "team_visible", boundedDimensions: ["split", "source"] }),
|
|
20
|
+
definition({ id: "runtime.latency_ms", displayName: "Runtime latency", description: "Wall-clock latency of the measured operation.", valueType: "distribution", unit: "milliseconds", direction: "lower", aggregation: "p95", visibility: "team_visible", boundedDimensions: ["operation", "provider"] }),
|
|
21
|
+
definition({ id: "runtime.throughput", displayName: "Token throughput", description: "Tokens processed per second.", valueType: "gauge", unit: "scalar", direction: "higher", aggregation: "mean", visibility: "team_visible", boundedDimensions: ["operation", "provider"] }),
|
|
22
|
+
definition({ id: "gpu.memory_bytes", displayName: "GPU memory", description: "Peak allocated GPU memory.", valueType: "gauge", unit: "bytes", direction: "neutral", aggregation: "max", visibility: "host_private", boundedDimensions: ["provider", "gpuType"] }),
|
|
23
|
+
definition({ id: "gpu.utilization", displayName: "GPU utilization", description: "Observed GPU utilization ratio.", valueType: "gauge", unit: "ratio", direction: "neutral", aggregation: "mean", visibility: "host_private", boundedDimensions: ["provider", "gpuType"] }),
|
|
24
|
+
definition({ id: "cost.usd", displayName: "Run cost", description: "Accrued hosted execution cost.", valueType: "counter", unit: "usd", direction: "lower", aggregation: "sum", visibility: "team_visible", boundedDimensions: ["provider", "resource"] }),
|
|
25
|
+
];
|
|
26
|
+
const catalog = new Map(CORE_METRIC_CATALOG.map((item) => [item.id, item]));
|
|
27
|
+
export function getCoreMetricDefinition(metricId) {
|
|
28
|
+
return catalog.get(metricId);
|
|
29
|
+
}
|
|
30
|
+
export function validateCoreMetricObservation(input) {
|
|
31
|
+
return validateMetricObservation(input, CORE_METRIC_CATALOG);
|
|
32
|
+
}
|
|
33
|
+
export function validateMetricObservation(input, definitions) {
|
|
34
|
+
MetricCatalogSchema.parse(definitions);
|
|
35
|
+
const metric = definitions.find((item) => item.id === input.metricId);
|
|
36
|
+
if (!metric)
|
|
37
|
+
throw new Error(`Unknown metric: ${input.metricId}`);
|
|
38
|
+
const unexpected = Object.keys(input.dimensions).filter((dimension) => !metric.boundedDimensions.includes(dimension));
|
|
39
|
+
if (unexpected.length)
|
|
40
|
+
throw new Error(`Metric ${input.metricId} has unsupported dimensions: ${unexpected.join(", ")}`);
|
|
41
|
+
if (metric.unit === "ratio" && (input.value < 0 || input.value > 1)) {
|
|
42
|
+
throw new Error(`Ratio metric ${input.metricId} must be between zero and one.`);
|
|
43
|
+
}
|
|
44
|
+
return input;
|
|
45
|
+
}
|
|
46
|
+
export const MetricCatalogSchema = z.array(MetricDefinitionSchema).min(1).superRefine((items, context) => {
|
|
47
|
+
if (new Set(items.map((item) => item.id)).size !== items.length) {
|
|
48
|
+
context.addIssue({ code: "custom", message: "Metric catalog contains duplicate ids." });
|
|
49
|
+
}
|
|
50
|
+
});
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
import { MetadataSchema, ReleaseHashSchema, ReleaseIdSchema, ReleaseTimestampSchema, } from "@openpond/harness";
|
|
3
|
+
export const RUN_TELEMETRY_SCHEMA_VERSION = "openpond.runTelemetryEvent.v1";
|
|
4
|
+
export const METRIC_DEFINITION_SCHEMA_VERSION = "openpond.metricDefinition.v1";
|
|
5
|
+
export const METRIC_OBSERVATION_SCHEMA_VERSION = "openpond.metricObservation.v1";
|
|
6
|
+
export const TelemetryVisibilitySchema = z.enum([
|
|
7
|
+
"policy_visible",
|
|
8
|
+
"team_visible",
|
|
9
|
+
"host_private",
|
|
10
|
+
]);
|
|
11
|
+
export const TelemetrySourceSchema = z.enum([
|
|
12
|
+
"runtime",
|
|
13
|
+
"environment",
|
|
14
|
+
"grader",
|
|
15
|
+
"optimizer",
|
|
16
|
+
"control_plane",
|
|
17
|
+
"evaluation",
|
|
18
|
+
]);
|
|
19
|
+
export const TelemetryEventTypeSchema = z.enum([
|
|
20
|
+
"run_started",
|
|
21
|
+
"run_state_changed",
|
|
22
|
+
"rollout_group_started",
|
|
23
|
+
"attempt_completed",
|
|
24
|
+
"grader_completed",
|
|
25
|
+
"reward_composed",
|
|
26
|
+
"optimizer_step_completed",
|
|
27
|
+
"checkpoint_committed",
|
|
28
|
+
"evaluation_completed",
|
|
29
|
+
"run_completed",
|
|
30
|
+
"run_failed",
|
|
31
|
+
"cleanup_completed",
|
|
32
|
+
]);
|
|
33
|
+
export const RunTelemetryLineageSchema = z.object({
|
|
34
|
+
modelProjectId: ReleaseIdSchema,
|
|
35
|
+
runId: ReleaseIdSchema,
|
|
36
|
+
modelVersionId: ReleaseIdSchema.nullable(),
|
|
37
|
+
harnessReleaseHash: ReleaseHashSchema,
|
|
38
|
+
tasksetReleaseHash: ReleaseHashSchema,
|
|
39
|
+
environmentReleaseHash: ReleaseHashSchema.nullable(),
|
|
40
|
+
checkpointId: ReleaseIdSchema.nullable(),
|
|
41
|
+
step: z.number().int().nonnegative().nullable(),
|
|
42
|
+
rolloutGroupId: ReleaseIdSchema.nullable(),
|
|
43
|
+
attemptId: ReleaseIdSchema.nullable(),
|
|
44
|
+
scenarioId: ReleaseIdSchema.nullable(),
|
|
45
|
+
}).strict();
|
|
46
|
+
export const RunTelemetryEventSchema = z.object({
|
|
47
|
+
schemaVersion: z.literal(RUN_TELEMETRY_SCHEMA_VERSION),
|
|
48
|
+
eventId: ReleaseIdSchema,
|
|
49
|
+
sequence: z.number().int().nonnegative(),
|
|
50
|
+
occurredAt: ReleaseTimestampSchema,
|
|
51
|
+
source: TelemetrySourceSchema,
|
|
52
|
+
type: TelemetryEventTypeSchema,
|
|
53
|
+
visibility: TelemetryVisibilitySchema,
|
|
54
|
+
lineage: RunTelemetryLineageSchema,
|
|
55
|
+
attributes: MetadataSchema,
|
|
56
|
+
}).strict();
|
|
57
|
+
export const MetricValueTypeSchema = z.enum(["gauge", "counter", "distribution"]);
|
|
58
|
+
export const MetricUnitSchema = z.enum([
|
|
59
|
+
"ratio",
|
|
60
|
+
"count",
|
|
61
|
+
"seconds",
|
|
62
|
+
"milliseconds",
|
|
63
|
+
"tokens",
|
|
64
|
+
"bytes",
|
|
65
|
+
"usd",
|
|
66
|
+
"scalar",
|
|
67
|
+
]);
|
|
68
|
+
export const MetricDirectionSchema = z.enum(["higher", "lower", "neutral"]);
|
|
69
|
+
export const MetricAggregationSchema = z.enum(["last", "sum", "mean", "min", "max", "p50", "p95"]);
|
|
70
|
+
export const MetricDefinitionSchema = z.object({
|
|
71
|
+
schemaVersion: z.literal(METRIC_DEFINITION_SCHEMA_VERSION),
|
|
72
|
+
id: ReleaseIdSchema,
|
|
73
|
+
displayName: z.string().trim().min(1).max(200),
|
|
74
|
+
description: z.string().trim().min(1).max(2_000),
|
|
75
|
+
valueType: MetricValueTypeSchema,
|
|
76
|
+
unit: MetricUnitSchema,
|
|
77
|
+
direction: MetricDirectionSchema,
|
|
78
|
+
aggregation: MetricAggregationSchema,
|
|
79
|
+
visibility: TelemetryVisibilitySchema,
|
|
80
|
+
boundedDimensions: z.array(z.string().trim().min(1).max(100)).max(32),
|
|
81
|
+
}).strict();
|
|
82
|
+
export const MetricObservationSchema = z.object({
|
|
83
|
+
schemaVersion: z.literal(METRIC_OBSERVATION_SCHEMA_VERSION),
|
|
84
|
+
observationId: ReleaseIdSchema,
|
|
85
|
+
metricId: ReleaseIdSchema,
|
|
86
|
+
eventId: ReleaseIdSchema,
|
|
87
|
+
sequence: z.number().int().nonnegative(),
|
|
88
|
+
observedAt: ReleaseTimestampSchema,
|
|
89
|
+
value: z.number().finite(),
|
|
90
|
+
lineage: RunTelemetryLineageSchema,
|
|
91
|
+
dimensions: z.record(z.string().trim().min(1).max(100), z.string().max(500)),
|
|
92
|
+
}).strict();
|
|
93
|
+
export const RunTelemetryBatchSchema = z.object({
|
|
94
|
+
schemaVersion: z.literal("openpond.runTelemetryBatch.v1"),
|
|
95
|
+
events: z.array(RunTelemetryEventSchema).max(1_000),
|
|
96
|
+
observations: z.array(MetricObservationSchema).max(10_000),
|
|
97
|
+
}).strict().superRefine((batch, context) => {
|
|
98
|
+
if (batch.events.length + batch.observations.length === 0) {
|
|
99
|
+
context.addIssue({ code: "custom", message: "Telemetry batch cannot be empty." });
|
|
100
|
+
}
|
|
101
|
+
const keys = new Set();
|
|
102
|
+
for (const item of [...batch.events, ...batch.observations]) {
|
|
103
|
+
const id = item.schemaVersion === METRIC_OBSERVATION_SCHEMA_VERSION
|
|
104
|
+
? item.observationId
|
|
105
|
+
: item.eventId;
|
|
106
|
+
const key = `${item.lineage.runId}:${item.sequence}:${id}`;
|
|
107
|
+
if (keys.has(key)) {
|
|
108
|
+
context.addIssue({ code: "custom", message: "Telemetry batch contains a duplicate idempotency key." });
|
|
109
|
+
}
|
|
110
|
+
keys.add(key);
|
|
111
|
+
}
|
|
112
|
+
});
|
|
@@ -90,6 +90,12 @@ export declare const harnessRefinerBenchmarkRelease: {
|
|
|
90
90
|
visibility: "policy" | "verifier" | "host_private";
|
|
91
91
|
};
|
|
92
92
|
calibrationStatus: "pending" | "passed" | "failed";
|
|
93
|
+
model?: {
|
|
94
|
+
providerId: string;
|
|
95
|
+
modelId: string;
|
|
96
|
+
revision: string | null;
|
|
97
|
+
} | undefined;
|
|
98
|
+
temperature?: number | undefined;
|
|
93
99
|
} | {
|
|
94
100
|
id: string;
|
|
95
101
|
version: string;
|
|
@@ -108,6 +114,7 @@ export declare const harnessRefinerBenchmarkRelease: {
|
|
|
108
114
|
};
|
|
109
115
|
timeoutMs: number;
|
|
110
116
|
networkPolicy: "none";
|
|
117
|
+
exportName?: string | undefined;
|
|
111
118
|
} | {
|
|
112
119
|
id: string;
|
|
113
120
|
version: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"harness-refiner.d.ts","sourceRoot":"","sources":["../../../../../src/builtin-benchmarks/harness-refiner.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,8BAA8B
|
|
1
|
+
{"version":3,"file":"harness-refiner.d.ts","sourceRoot":"","sources":["../../../../../src/builtin-benchmarks/harness-refiner.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAqqD1C,CAAC;AAEF,eAAO,MAAM,6BAA6B,EAAE,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CASzE,CAAC"}
|
|
@@ -200,6 +200,12 @@ export declare const genericToolConformance: {
|
|
|
200
200
|
visibility: "policy" | "verifier" | "host_private";
|
|
201
201
|
};
|
|
202
202
|
calibrationStatus: "pending" | "passed" | "failed";
|
|
203
|
+
model?: {
|
|
204
|
+
providerId: string;
|
|
205
|
+
modelId: string;
|
|
206
|
+
revision: string | null;
|
|
207
|
+
} | undefined;
|
|
208
|
+
temperature?: number | undefined;
|
|
203
209
|
} | {
|
|
204
210
|
id: string;
|
|
205
211
|
version: string;
|
|
@@ -218,6 +224,7 @@ export declare const genericToolConformance: {
|
|
|
218
224
|
};
|
|
219
225
|
timeoutMs: number;
|
|
220
226
|
networkPolicy: "none";
|
|
227
|
+
exportName?: string | undefined;
|
|
221
228
|
} | {
|
|
222
229
|
id: string;
|
|
223
230
|
version: string;
|
|
@@ -489,6 +496,12 @@ export declare const marketingPortfolioConformance: {
|
|
|
489
496
|
visibility: "policy" | "verifier" | "host_private";
|
|
490
497
|
};
|
|
491
498
|
calibrationStatus: "pending" | "passed" | "failed";
|
|
499
|
+
model?: {
|
|
500
|
+
providerId: string;
|
|
501
|
+
modelId: string;
|
|
502
|
+
revision: string | null;
|
|
503
|
+
} | undefined;
|
|
504
|
+
temperature?: number | undefined;
|
|
492
505
|
} | {
|
|
493
506
|
id: string;
|
|
494
507
|
version: string;
|
|
@@ -507,6 +520,7 @@ export declare const marketingPortfolioConformance: {
|
|
|
507
520
|
};
|
|
508
521
|
timeoutMs: number;
|
|
509
522
|
networkPolicy: "none";
|
|
523
|
+
exportName?: string | undefined;
|
|
510
524
|
} | {
|
|
511
525
|
id: string;
|
|
512
526
|
version: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"conformance.d.ts","sourceRoot":"","sources":["../../../../src/conformance.ts"],"names":[],"mappings":"AAaA,eAAO,MAAM,sBAAsB
|
|
1
|
+
{"version":3,"file":"conformance.d.ts","sourceRoot":"","sources":["../../../../src/conformance.ts"],"names":[],"mappings":"AAaA,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAEjC,CAAC;AAEH,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAGxC,CAAC"}
|
|
@@ -385,6 +385,12 @@ export declare const VerifierSetReleaseContentSchema: z.ZodObject<{
|
|
|
385
385
|
passed: "passed";
|
|
386
386
|
failed: "failed";
|
|
387
387
|
}>;
|
|
388
|
+
model: z.ZodOptional<z.ZodObject<{
|
|
389
|
+
providerId: z.ZodString;
|
|
390
|
+
modelId: z.ZodString;
|
|
391
|
+
revision: z.ZodNullable<z.ZodString>;
|
|
392
|
+
}, z.core.$strict>>;
|
|
393
|
+
temperature: z.ZodOptional<z.ZodNumber>;
|
|
388
394
|
}, z.core.$strict>, z.ZodObject<{
|
|
389
395
|
id: z.ZodString;
|
|
390
396
|
version: z.ZodString;
|
|
@@ -405,6 +411,7 @@ export declare const VerifierSetReleaseContentSchema: z.ZodObject<{
|
|
|
405
411
|
host_private: "host_private";
|
|
406
412
|
}>;
|
|
407
413
|
}, z.core.$strict>;
|
|
414
|
+
exportName: z.ZodOptional<z.ZodString>;
|
|
408
415
|
timeoutMs: z.ZodNumber;
|
|
409
416
|
networkPolicy: z.ZodLiteral<"none">;
|
|
410
417
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -488,6 +495,12 @@ export declare const VerifierSetReleaseSchema: z.ZodObject<{
|
|
|
488
495
|
passed: "passed";
|
|
489
496
|
failed: "failed";
|
|
490
497
|
}>;
|
|
498
|
+
model: z.ZodOptional<z.ZodObject<{
|
|
499
|
+
providerId: z.ZodString;
|
|
500
|
+
modelId: z.ZodString;
|
|
501
|
+
revision: z.ZodNullable<z.ZodString>;
|
|
502
|
+
}, z.core.$strict>>;
|
|
503
|
+
temperature: z.ZodOptional<z.ZodNumber>;
|
|
491
504
|
}, z.core.$strict>, z.ZodObject<{
|
|
492
505
|
id: z.ZodString;
|
|
493
506
|
version: z.ZodString;
|
|
@@ -508,6 +521,7 @@ export declare const VerifierSetReleaseSchema: z.ZodObject<{
|
|
|
508
521
|
host_private: "host_private";
|
|
509
522
|
}>;
|
|
510
523
|
}, z.core.$strict>;
|
|
524
|
+
exportName: z.ZodOptional<z.ZodString>;
|
|
511
525
|
timeoutMs: z.ZodNumber;
|
|
512
526
|
networkPolicy: z.ZodLiteral<"none">;
|
|
513
527
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"execution-contracts.d.ts","sourceRoot":"","sources":["../../../../src/execution-contracts.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAcxB,eAAO,MAAM,mBAAmB;;;EAAmC,CAAC;AACpE,eAAO,MAAM,kBAAkB;;;;;;;;;EAS7B,CAAC;AACH,eAAO,MAAM,yBAAyB;;;;;;;;;;;;EAYpC,CAAC;AAEH,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAcjC,CAAC;AACZ,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAE1B,CAAC;AAEZ,eAAO,MAAM,8BAA8B;;;;;EAKzC,CAAC;AACH,eAAO,MAAM,8BAA8B;;;;EAIzC,CAAC;AACH,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAa7B,CAAC;AACZ,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAO/B,CAAC;AACZ,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAExB,CAAC;AAEZ,eAAO,MAAM,+BAA+B
|
|
1
|
+
{"version":3,"file":"execution-contracts.d.ts","sourceRoot":"","sources":["../../../../src/execution-contracts.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAcxB,eAAO,MAAM,mBAAmB;;;EAAmC,CAAC;AACpE,eAAO,MAAM,kBAAkB;;;;;;;;;EAS7B,CAAC;AACH,eAAO,MAAM,yBAAyB;;;;;;;;;;;;EAYpC,CAAC;AAEH,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAcjC,CAAC;AACZ,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAE1B,CAAC;AAEZ,eAAO,MAAM,8BAA8B;;;;;EAKzC,CAAC;AACH,eAAO,MAAM,8BAA8B;;;;EAIzC,CAAC;AACH,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAa7B,CAAC;AACZ,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAO/B,CAAC;AACZ,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAExB,CAAC;AAEZ,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAYjC,CAAC;AACZ,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAE1B,CAAC;AAEZ,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAuBvC,CAAC;AAkCH,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAA6D,CAAC;AACrG,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAGK,CAAC;AAEtC,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAChE,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAC9D,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAC5E,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAC1E,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC;AAChF,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AACtE,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAC1E,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC;AAClF,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"graders.d.ts","sourceRoot":"","sources":["../../../../src/graders.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,OAAO,KAAK,EAA2B,UAAU,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"graders.d.ts","sourceRoot":"","sources":["../../../../src/graders.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,OAAO,KAAK,EAA2B,UAAU,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAGrF,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;kBAW7B,CAAC;AACZ,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;kBAAkF,CAAC;AAEpH,MAAM,MAAM,eAAe,GAAG;IAC5B,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IAChC,gBAAgB,EAAE,MAAM,EAAE,CAAC;IAC3B,YAAY,EAAE,MAAM,EAAE,CAAC;IACvB,mBAAmB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CACrC,CAAC;AACF,MAAM,MAAM,gBAAgB,GAAG,CAAC,KAAK,EAAE;IAAE,MAAM,EAAE,OAAO,CAAC,UAAU,EAAE;QAAE,IAAI,EAAE,aAAa,CAAA;KAAE,CAAC,CAAC;IAAC,IAAI,EAAE,UAAU,CAAC;IAAC,QAAQ,EAAE,eAAe,CAAA;CAAE,KAAK,OAAO,CAAC,IAAI,CAAC,cAAc,EAAE,eAAe,GAAG,UAAU,GAAG,eAAe,GAAG,aAAa,CAAC,CAAC,CAAC;AAC/O,MAAM,MAAM,oBAAoB,GAAG,CAAC,KAAK,EAAE;IAAE,MAAM,EAAE,OAAO,CAAC,UAAU,EAAE;QAAE,IAAI,EAAE,iBAAiB,CAAA;KAAE,CAAC,CAAC;IAAC,IAAI,EAAE,UAAU,CAAC;IAAC,QAAQ,EAAE,eAAe,CAAA;CAAE,KAAK,OAAO,CAAC,IAAI,CAAC,cAAc,EAAE,eAAe,GAAG,UAAU,GAAG,eAAe,GAAG,aAAa,CAAC,CAAC,CAAC;AAEvP,wBAAsB,aAAa,CAAC,KAAK,EAAE;IACzC,IAAI,EAAE,UAAU,CAAC;IACjB,QAAQ,EAAE,eAAe,CAAC;IAC1B,OAAO,EAAE,UAAU,EAAE,CAAC;IACtB,UAAU,CAAC,EAAE,gBAAgB,CAAC;IAC9B,cAAc,CAAC,EAAE,oBAAoB,CAAC;CACvC,GAAG,OAAO,CAAC,cAAc,EAAE,CAAC,CAwB5B;AA+DD,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC"}
|
package/dist/types/index.d.ts
CHANGED
|
@@ -6,10 +6,18 @@ export * from "./execution-contracts.js";
|
|
|
6
6
|
export * from "./execution-receipts.js";
|
|
7
7
|
export * from "./graders.js";
|
|
8
8
|
export * from "./harness.js";
|
|
9
|
+
export * from "./learned-preference.js";
|
|
9
10
|
export * from "./runs.js";
|
|
10
11
|
export * from "./model-improvement-qualification.js";
|
|
11
12
|
export * from "./preferences.js";
|
|
12
13
|
export * from "./review-conformance.js";
|
|
13
14
|
export * from "./rollouts.js";
|
|
15
|
+
export * from "./telemetry.js";
|
|
16
|
+
export * from "./telemetry-catalog.js";
|
|
17
|
+
export * from "./telemetry-analysis.js";
|
|
18
|
+
export * from "./telemetry-bundle.js";
|
|
14
19
|
export * from "./tasksets.js";
|
|
20
|
+
export * from "./task-schema.js";
|
|
21
|
+
export * from "./rewards.js";
|
|
22
|
+
export * from "./learning/index.js";
|
|
15
23
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,oBAAoB,CAAC;AACnC,cAAc,iBAAiB,CAAC;AAChC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,qBAAqB,CAAC;AACpC,cAAc,0BAA0B,CAAC;AACzC,cAAc,yBAAyB,CAAC;AACxC,cAAc,cAAc,CAAC;AAC7B,cAAc,cAAc,CAAC;AAC7B,cAAc,WAAW,CAAC;AAC1B,cAAc,sCAAsC,CAAC;AACrD,cAAc,kBAAkB,CAAC;AACjC,cAAc,yBAAyB,CAAC;AACxC,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,oBAAoB,CAAC;AACnC,cAAc,iBAAiB,CAAC;AAChC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,qBAAqB,CAAC;AACpC,cAAc,0BAA0B,CAAC;AACzC,cAAc,yBAAyB,CAAC;AACxC,cAAc,cAAc,CAAC;AAC7B,cAAc,cAAc,CAAC;AAC7B,cAAc,yBAAyB,CAAC;AACxC,cAAc,WAAW,CAAC;AAC1B,cAAc,sCAAsC,CAAC;AACrD,cAAc,kBAAkB,CAAC;AACjC,cAAc,yBAAyB,CAAC;AACxC,cAAc,eAAe,CAAC;AAC9B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,wBAAwB,CAAC;AACvC,cAAc,yBAAyB,CAAC;AACxC,cAAc,uBAAuB,CAAC;AACtC,cAAc,eAAe,CAAC;AAC9B,cAAc,kBAAkB,CAAC;AACjC,cAAc,cAAc,CAAC;AAC7B,cAAc,qBAAqB,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
export declare const JavaScriptVerifierResultSchema: z.ZodObject<{
|
|
3
|
+
score: z.ZodNumber;
|
|
4
|
+
passed: z.ZodBoolean;
|
|
5
|
+
feedback: z.ZodString;
|
|
6
|
+
evidenceRefs: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
7
|
+
}, z.core.$strict>;
|
|
8
|
+
export type JavaScriptVerifierResult = z.infer<typeof JavaScriptVerifierResultSchema>;
|
|
9
|
+
//# sourceMappingURL=javascript-verifier-contract.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"javascript-verifier-contract.d.ts","sourceRoot":"","sources":["../../../../src/javascript-verifier-contract.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,8BAA8B;;;;;kBAKhC,CAAC;AACZ,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,8BAA8B,CAAC,CAAC"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import type { executeJavaScriptVerifier } from "./javascript-verifier.js";
|
|
2
|
+
import { type JavaScriptVerifierResult } from "./javascript-verifier-contract.js";
|
|
3
|
+
/** Resolves/rejects only after the execution owner has stopped the worker. */
|
|
4
|
+
export declare function executeJavaScriptVerifierInWorker(input: Parameters<typeof executeJavaScriptVerifier>[0]): Promise<JavaScriptVerifierResult>;
|
|
5
|
+
//# sourceMappingURL=javascript-verifier-node.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"javascript-verifier-node.d.ts","sourceRoot":"","sources":["../../../../src/javascript-verifier-node.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,0BAA0B,CAAC;AAC1E,OAAO,EAAkC,KAAK,wBAAwB,EAAE,MAAM,mCAAmC,CAAC;AAIlH,8EAA8E;AAC9E,wBAAsB,iCAAiC,CAAC,KAAK,EAAE,UAAU,CAAC,OAAO,yBAAyB,CAAC,CAAC,CAAC,CAAC,GAAG,OAAO,CAAC,wBAAwB,CAAC,CAqCjJ"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"javascript-verifier-worker.d.ts","sourceRoot":"","sources":["../../../../src/javascript-verifier-worker.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { type JavaScriptVerifierResult } from "./javascript-verifier-contract.js";
|
|
2
|
+
export { JavaScriptVerifierResultSchema, type JavaScriptVerifierResult } from "./javascript-verifier-contract.js";
|
|
3
|
+
/**
|
|
4
|
+
* A fresh WebAssembly interpreter with no host functions, filesystem, network,
|
|
5
|
+
* timers, or module loader. Hosts should run this on a worker to remain responsive
|
|
6
|
+
* and terminate that worker when cancellation is requested.
|
|
7
|
+
*/
|
|
8
|
+
export declare function executeJavaScriptVerifier(input: {
|
|
9
|
+
source: string;
|
|
10
|
+
exportName?: string;
|
|
11
|
+
value: unknown;
|
|
12
|
+
timeoutMs: number;
|
|
13
|
+
signal?: AbortSignal;
|
|
14
|
+
}): Promise<JavaScriptVerifierResult>;
|
|
15
|
+
//# sourceMappingURL=javascript-verifier.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"javascript-verifier.d.ts","sourceRoot":"","sources":["../../../../src/javascript-verifier.ts"],"names":[],"mappings":"AAGA,OAAO,EAAkC,KAAK,wBAAwB,EAAE,MAAM,mCAAmC,CAAC;AAClH,OAAO,EAAE,8BAA8B,EAAE,KAAK,wBAAwB,EAAE,MAAM,mCAAmC,CAAC;AAElH;;;;GAIG;AACH,wBAAsB,yBAAyB,CAAC,KAAK,EAAE;IACrD,MAAM,EAAE,MAAM,CAAC;IACf,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,KAAK,EAAE,OAAO,CAAC;IACf,SAAS,EAAE,MAAM,CAAC;IAClB,MAAM,CAAC,EAAE,WAAW,CAAC;CACtB,GAAG,OAAO,CAAC,wBAAwB,CAAC,CAgCpC"}
|