// crates/lc/src/core/mod.rs
//! Core — re-export from lc-core crate, plus wrapper that depends on the unified Error type
pub use *;
// Wrapper stays in the facade crate because it depends on crate::error::Error
// (the unified error type that aggregates all sub-module errors).
// Re-export wrapper types for backward compatibility
pub use ;
// Re-export into language_models namespace so existing code
// using `crate::core::language_models::wrap_chat_model` still works