Skip to main content

Module replay_verifier

Module replay_verifier 

Source
Expand description

Replay verification API: cryptographically verify run integrity.

This module provides ReplayVerifier to validate the integrity of a run:

  • State hash equality: verifies event stream hash matches expected.
  • Tool checksum: hashes all tool calls in the run.
  • Interrupt consistency: every Interrupt must have a matching Resumed.

Structs§

ReplayVerifier
Replay verifier: validates run integrity.
VerifyConfig
Verification config: what to verify.

Enums§

VerificationFailure
Verification failure reasons.

Type Aliases§

VerificationResult
Verification result: Ok(()) if all checks pass, or Err with the failure reason.