mockforge-core 0.3.114

Shared logic for MockForge - routing, validation, latency, proxy
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Failure analysis and root-cause narrative generation
//!
//! This module provides AI-powered analysis of request failures, generating
//! human-readable narratives that explain why failures occurred and what
//! rules, personas, or contracts caused them.

pub mod context_collector;
pub mod narrative_generator;
pub mod types;

pub use context_collector::FailureContextCollector;
pub use narrative_generator::FailureNarrativeGenerator;
pub use types::*;