Skip to main content

mockforge_http/
rag_ai_generator.rs

1//! RAG-based AI generator — re-export shim.
2//!
3//! Issue #555 phase 10 moved this module to
4//! [`mockforge_intelligence::rag_ai_generator`]. Both foreign deps were
5//! originally `mockforge-core` re-exports (`AiResponseConfig`,
6//! `AiGenerator` trait), but they have since been promoted to
7//! `mockforge-foundation::ai_response` and `mockforge-openapi::response`
8//! — so the move stays cycle-safe with the Issue #562 cycle-break.
9//!
10//! This shim keeps existing
11//! `mockforge_http::rag_ai_generator::RagAiGenerator` callers resolving
12//! unchanged. Future phases of #555 may drop this shim; until then,
13//! prefer importing from `mockforge_intelligence::rag_ai_generator`
14//! directly in new code.
15
16pub use mockforge_intelligence::rag_ai_generator::*;