FusionCallAnalysisCompletedEvent - TypeScript SDK
FusionCallAnalysisCompletedEvent - TypeScript SDK
FusionCallAnalysisCompletedEvent type definition
The TypeScript SDK and docs are currently in beta. Report issues on GitHub.
Emitted when the fusion judge completes with the structured analysis.
Example Usage
1 import { FusionCallAnalysisCompletedEvent } from "@openrouter/sdk/models"; 2 3 let value: FusionCallAnalysisCompletedEvent = { 4 analysis: { 5 blindSpots: [ 6 "No model considered the impact on existing API consumers.", 7 ], 8 consensus: [ 9 "All panel models agree the request is asking for a concise summary.", 10 ], 11 contradictions: [ 12 { 13 stances: [ 14 { 15 model: "openai/gpt-5", 16 stance: "Favors an incremental rollout.", 17 }, 18 { 19 model: "anthropic/claude-sonnet-4.5", 20 stance: "Favors a single coordinated migration.", 21 }, 22 ], 23 topic: "Recommended approach", 24 }, 25 ], 26 partialCoverage: [ 27 { 28 models: [ 29 "openai/gpt-5", 30 ], 31 point: "Only one model addressed the rollback strategy.", 32 }, 33 ], 34 uniqueInsights: [ 35 { 36 insight: 37 "Highlighted a backwards-compatibility risk the other models missed.", 38 model: "anthropic/claude-sonnet-4.5", 39 }, 40 ], 41 }, 42 itemId: "<id>", 43 outputIndex: 871883, 44 sequenceNumber: 0, 45 type: "response.fusion_call.analysis.completed", 46 };
Fields
| Field | Type | Required | Description | Example |
|---|---|---|---|---|
analysis | models.FusionAnalysisResult | ✔️ | Structured analysis produced by the fusion judge model. | {"blind_spots": ["No model considered the impact on existing API consumers."],"consensus": ["All panel models agree the request is asking for a concise summary."],"contradictions": [{"stances": [{"model": "openai/gpt-5","stance": "Favors an incremental rollout."},{"model": "anthropic/claude-sonnet-4.5","stance": "Favors a single coordinated migration."}], “topic”: “Recommended approach” } ], “partial_coverage”: [ {"models": ["openai/gpt-5"],"point": "Only one model addressed the rollback strategy."}], “unique_insights”: [ {"insight": "Highlighted a backwards-compatibility risk the other models missed.","model": "anthropic/claude-sonnet-4.5"}] } |
itemId | string | ✔️ | N/A | |
outputIndex | number | ✔️ | N/A | |
sequenceNumber | number | ✔️ | N/A | |
type | ”response.fusion_call.analysis.completed” | ✔️ | N/A |