inf models lets you browse every model available to your active team — both platform-provided models and any BYOK (bring-your-own-key) routes your team has configured.
Alias: inf model
inf eval run takes model route IDs via --models and --judge-model. inf models list is where you discover those route IDs.
Route IDs
Route IDs look like <provider>:<model-alias> — for example openai:gpt-5.2, anthropic:claude-sonnet-4-6, cerebras:llama-3.3-70b. They are the canonical identifier the CLI and API use to address a specific model route, and they’re what inf eval run expects for --models and --judge-model. Use inf models list --json to dump every route ID available to your team.
inf models list
Display every callable model visible to the active team, with provider, scope, capability flags, context window, and per-million-token pricing.
Alias: inf models ls
Options
Output
In table mode (default), each row shows:
Examples
JSON mode
inf models list --json emits the full enriched record per model, including the routeId string that inf eval run --models and --judge-model expect:
inf models list --json | jq '.[] | select(.scope == "platform")' is a quick way to prune your eval model set to just platform routes.