Skip to content
Prompty

ReplayMismatch

A single mismatch produced by replay verification.

---
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
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

The following types are composed within ReplayMismatch: