Skip to main content

shadow_core/replay/
mod.rs

1//! Replay engine and the `LlmBackend` trait.
2//!
3//! See SPEC.md §10 for the lifecycle and SPEC §10 for the algorithm.
4
5pub mod backend;
6pub mod engine;
7pub mod mock;
8
9pub use backend::{LlmBackend, LlmError};
10pub use engine::{run_replay, Clock, FixedClock, ReplayError};
11pub use mock::MockLlm;