Skip to content
Prompty

ReplayVerificationRequest

Request accepted by a replay verifier implementation.

---
title: ReplayVerificationRequest
config:
  look: handDrawn
  theme: colorful
  class:
    hideEmptyMembersBox: true
---
classDiagram
    class ReplayVerificationRequest {
        +ReplayJournalRecord[] expected
        +ReplayJournalRecord[] actual
    }
    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
    }
    ReplayVerificationRequest *-- ReplayJournalRecord
    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
    }
    ReplayVerificationRequest *-- ReplayJournalRecord
Name Type Description
expected ReplayJournalRecord[] Expected normalized replay records
actual ReplayJournalRecord[] Actual normalized replay records

The following types are composed within ReplayVerificationRequest: