//! Complete LLM model implementations.
//!
//! | Module | Model family |
//! |--------|--------------|
//! | [`gpt`] | GPT-2 (token+positional embedding, LayerNorm, MLP FFN, weight-tied LM head) |
//! | [`llama`] | LLaMA-2/3, Mistral (RMSNorm, GQA, RoPE, SwiGLU, independent LM head) |
//! | [`weights`] | Weight loading utilities for both families |
pub use Gpt2Model;
pub use LlamaModel;
pub use ;