ReplayMismatch
A single mismatch produced by replay verification.
Class Diagram
Section titled “Class Diagram”---
title: ReplayMismatch
config:
look: handDrawn
theme: colorful
class:
hideEmptyMembersBox: true
---
classDiagram
class ReplayMismatch {
+int32 index
+ReplayJournalRecord expected
+ReplayJournalRecord actual
+string message
}
class ReplayJournalRecord {
+string kind
+string type
+string sessionId
+string turnId
+int32 iteration
+string status
+string requestId
+string toolName
+boolean success
+string errorKind
+int32 turns
+int32 checkpoints
}
ReplayMismatch *-- ReplayJournalRecord
Properties
Section titled “Properties”| Name | Type | Description |
|---|---|---|
| index | int32 | Zero-based record index where the mismatch was found |
| expected | ReplayJournalRecord | Expected record at this index, when present |
| actual | ReplayJournalRecord | Actual record at this index, when present |
| message | string | Human-readable mismatch explanation |
Composed Types
Section titled “Composed Types”The following types are composed within ReplayMismatch: