modelsdev 0.11.4

A fast TUI and CLI for browsing AI models, benchmarks, and coding agents
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)
}