stasis-rs 0.1.0

Durable AI orchestration framework with runtime jobs, lineage, and memory integration
Documentation
1
2
3
4
5
6
7
8
9
use crate::domain::runtime::job_attempt::JobAttempt;
use crate::domain::runtime::outbox::OutboxEvent;

#[derive(Clone, Debug)]
pub struct ReplayReport {
    pub job_id: String,
    pub attempts: Vec<JobAttempt>,
    pub lineage_events: Vec<OutboxEvent>,
}