@fusionkit/ensemble 0.1.8 → 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/synthesis.js CHANGED
@@ -71,12 +71,12 @@ function recordFor(input, output, status, decision, metrics) {
71
71
  const record = {
72
72
  ...metadata(new Date().toISOString()),
73
73
  synthesis_id: `synthesis_${input.descriptor.id}`,
74
- input_candidate_ids: input.candidates.map((candidate) => candidate.candidate_id),
74
+ input_trajectory_ids: input.candidates.map((candidate) => candidate.candidate_id),
75
75
  status,
76
76
  decision,
77
77
  ...(output.judgeModelCallId ? { judge_model_call_id: output.judgeModelCallId } : {}),
78
78
  ...(output.selectedCandidateId
79
- ? { selected_candidate_id: output.selectedCandidateId }
79
+ ? { selected_trajectory_id: output.selectedCandidateId }
80
80
  : {}),
81
81
  ...(output.rationale ? { rationale: output.rationale } : {}),
82
82
  final_output: output.finalOutput,
@@ -545,7 +545,7 @@ test("failed repair returns failure summary without deterministic fallback winne
545
545
  assert.equal(result.judgeSynthesisRecord?.decision, "repair_required");
546
546
  assert.equal(result.failureSummary?.reason, "repair_failed");
547
547
  assert.equal("chosen" in result, false);
548
- assert.equal(result.judgeSynthesisRecord.selected_candidate_id, undefined);
548
+ assert.equal(result.judgeSynthesisRecord.selected_trajectory_id, undefined);
549
549
  }
550
550
  finally {
551
551
  repo.cleanup();
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@fusionkit/ensemble",
3
3
  "private": false,
4
- "version": "0.1.8",
4
+ "version": "0.3.0",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git+https://github.com/velum-labs/handoffkit.git",
@@ -26,11 +26,11 @@
26
26
  },
27
27
  "dependencies": {
28
28
  "@velum-labs/cursorkit": "0.1.2",
29
- "@fusionkit/protocol": "0.1.8",
30
- "@fusionkit/adapter-ai-sdk": "0.1.8",
31
- "@fusionkit/model-gateway": "0.1.8",
32
- "@fusionkit/workspace": "0.1.8",
33
- "@fusionkit/session-harness": "0.1.8",
34
- "@fusionkit/runner": "0.1.8"
29
+ "@fusionkit/adapter-ai-sdk": "0.3.0",
30
+ "@fusionkit/protocol": "0.3.0",
31
+ "@fusionkit/model-gateway": "0.3.0",
32
+ "@fusionkit/runner": "0.3.0",
33
+ "@fusionkit/session-harness": "0.3.0",
34
+ "@fusionkit/workspace": "0.3.0"
35
35
  }
36
36
  }