mockforge_http/ai_handler.rs
1//! AI response handler — re-export shim.
2//!
3//! Issue #656 (post-#555 follow-up) moved this module to
4//! [`mockforge_intelligence::ai_handler`]. The original
5//! `mockforge_core::{Result, Error}` imports were already re-exports of
6//! `mockforge_foundation` equivalents, and `mockforge-data` was already
7//! a direct dep of `mockforge-intelligence` — so the move stayed
8//! cycle-safe with the Issue #562 core↔intelligence cycle-break.
9//!
10//! This shim keeps existing
11//! `mockforge_http::ai_handler::{AiResponseHandler, AiResponseConfig,
12//! process_response_with_ai, create_ai_handler}` callers (notably the
13//! top-level `mockforge_http::{AiResponseConfig, AiResponseHandler,
14//! process_response_with_ai}` re-exports in `lib.rs`) resolving
15//! unchanged. Future drains may drop this shim; until then, prefer
16//! importing from `mockforge_intelligence::ai_handler` directly in new
17//! code.
18
19pub use mockforge_intelligence::ai_handler::*;