1 2 3 4 5 6 7 8 9
use anyhow::Result; pub fn providers(json: bool) -> Result<()> { super::models::providers(json) } pub fn models(provider: Option<String>, json: bool) -> Result<()> { super::models::list(provider.as_deref(), json) }