Skip to main content

mockforge_core/
ai_response.rs

1//! AI-assisted response generation for dynamic mock endpoints.
2//!
3//! The data types and prompt expansion helper previously lived here; they
4//! have been promoted to [`mockforge_foundation::ai_response`] so that
5//! `mockforge-openapi` (and any other leaf crate) can depend on them without
6//! pulling in the full `mockforge-core` graph. This module re-exports them
7//! for backwards compatibility.
8
9pub use mockforge_foundation::ai_response::*;