//! LLM metadata enrichment for synthetic data generation.
//!
//! This module uses the `LlmProvider` trait from `datasynth-core` to generate
//! realistic vendor names, transaction descriptions, memo fields, and anomaly
//! explanations. Each enricher falls back to deterministic templates when the
//! LLM provider returns an error.
pub use AnomalyLlmExplainer;
pub use TransactionLlmEnricher;
pub use VendorLlmEnricher;