vtcode-core 0.128.4

Core library for VT Code - a Rust-based terminal coding agent
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Model configuration and identification module
//!
//! This module provides a centralized enum for model identifiers and their configurations,
//! replacing hardcoded model strings throughout the codebase for better maintainability.
//! Read the model list in `docs/models.json`.

#[cfg(test)]
mod tests;

pub use vtcode_config::models::{
    MiMoAuthMethod, ModelCatalogEntry, ModelId, ModelParseError, ModelPricing, OpenRouterMetadata,
    Provider, catalog_provider_keys, detect_mimo_auth_method, model_catalog_entry,
    supported_models_for_provider,
};