@fusionkit/protocol 0.2.0 → 0.3.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/dist/model-fusion.d.ts +1 -1
- package/dist/model-fusion.js +1 -1
- package/package.json +1 -1
package/dist/model-fusion.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { JsonValue } from "./jcs.js";
|
|
2
2
|
export declare const MODEL_FUSION_SCHEMA_NAMES: readonly ["model-call-record.v1", "harness-run-request.v1", "harness-run-result.v1", "harness-candidate-record.v1", "judge-synthesis-record.v1", "benchmark-task-record.v1", "artifact-ref.v1", "tool-call-plan.v1", "tool-execution-record.v1", "ensemble-receipt.v1"];
|
|
3
|
-
export declare const MODEL_FUSION_SCHEMA_BUNDLE_HASH = "sha256:
|
|
3
|
+
export declare const MODEL_FUSION_SCHEMA_BUNDLE_HASH = "sha256:3e8388595aefc8e82962d76e822c514db6552f6ee65e62d487534ef825ad87b8";
|
|
4
4
|
export type ModelFusionSchemaName = (typeof MODEL_FUSION_SCHEMA_NAMES)[number];
|
|
5
5
|
export type ModelFusionStatus = "pending" | "running" | "succeeded" | "failed" | "canceled" | "requires_action" | "skipped" | "unsupported";
|
|
6
6
|
export type ModelFusionSideEffects = "none" | "read_only" | "writes_workspace" | "network" | "tool_execution" | "unknown";
|
package/dist/model-fusion.js
CHANGED
|
@@ -10,7 +10,7 @@ export const MODEL_FUSION_SCHEMA_NAMES = [
|
|
|
10
10
|
"tool-execution-record.v1",
|
|
11
11
|
"ensemble-receipt.v1"
|
|
12
12
|
];
|
|
13
|
-
export const MODEL_FUSION_SCHEMA_BUNDLE_HASH = "sha256:
|
|
13
|
+
export const MODEL_FUSION_SCHEMA_BUNDLE_HASH = "sha256:3e8388595aefc8e82962d76e822c514db6552f6ee65e62d487534ef825ad87b8";
|
|
14
14
|
const HASH_PATTERN = /^sha256:[a-f0-9]{64}$/;
|
|
15
15
|
const GIT_SHA_PATTERN = /^[a-f0-9]{40}$/;
|
|
16
16
|
const STATUSES = [
|