//! GigaAM ASR model.
//!
//! One [`GigaAm`] struct wraps a shared Conformer encoder and a [`Head`] enum
//! that carries either a CTC projection (`Head::Ctc`) or an RN-T predictor +
//! joint pair (`Head::Rnnt`). The head variant is auto-detected from
//! `config.transducer.is_some()` at load time, so users construct the model
//! once and the head flows through the type system.
//!
//! Submodules:
//! - [`model`] — unified `GigaAm` + `Head` enum + `RnntRuntime` + all loaders.
//! - [`jit`] — shared `GigaAmEncoderJit` (encoder-only, fp32 output).
//! - [`ctc`] — `CTCHead` + `CtcHeadJit` (head-only; chains after the encoder JIT).
//! - [`rnnt`] — `RnntHead`, predictor / joint step JITs, `RnntStepBackend`.
//!
//! Shared infrastructure:
//! - [`config`] — `GigaAmConfig` JSON parsing.
//! - [`encoder`] — `Encoder` + Conformer building blocks (also owns the RoPE cache).
//! - [`remap`] — PyTorch state-dict key remapping.
//! - [`error`] — `Error` / `Result`.
pub
pub
pub use ;
pub use ;
pub use GigaAmEncoderJit;
pub use ;
pub use ;