vtcode_config/models/mod.rs
1//! Model configuration and identification module
2//!
3//! This module provides a centralized enum for model identifiers and their configurations,
4//! replacing hardcoded model strings throughout the codebase for better maintainability.
5//! Read the model list in `docs/models.json`.
6
7mod errors;
8mod model_id;
9mod openrouter;
10mod provider;
11
12pub use errors::ModelParseError;
13pub use model_id::ModelId;
14pub use openrouter::OpenRouterMetadata;
15pub use openrouter::openrouter_generated;
16pub use provider::Provider;
17
18#[cfg(test)]
19mod tests;