praisonai models browses every model your install knows about β provider, capabilities, context window, and cost β so you pick the right one before you run.
Quick Start
1
List all models
2
Filter by provider or name
3
Inspect a specific model
4
Validate a model ID before using it
Agent-centric example
Subcommands
Flags
praisonai models list
praisonai models describe <model>
praisonai models validate <model>
Fallback behaviour
Iflitellm is not installed, the CLI falls back to a curated static list covering OpenAI, Anthropic, Google, Groq, and Ollama models. All three subcommands work against the static list. Install litellm for the full live catalogue:
Windows & non-UTF-8 terminals
The Capabilities column andβ
/β markers auto-switch to plain-text labels (tools, vision, reasoning, yes, no) when stdout canβt encode emoji β Windows PowerShell on the default cp1252 code page, redirected pipes, and some SSH sessions. Behaviour on macOS/Linux UTF-8 terminals is unchanged. Use --json for a byte-stable format in scripts and CI.
Best Practices
Validate model IDs before running agents
Validate model IDs before running agents
Catch typos in
llm= before the agent fails on the first API call β praisonai models validate <id> exits 1 and suggests similar IDs on a miss.Use --json for scripting
Use --json for scripting
Pipe
praisonai models list --json into jq to filter by capability or cost in CI pipelines.Install litellm for the full catalogue
Install litellm for the full catalogue
The static fallback covers only a handful of common models. Install
praisonai[litellm] to unlock 100+ models with live pricing data.On Windows PowerShell the table shows `tools` instead of `π§ tools` β that's expected
On Windows PowerShell the table shows `tools` instead of `π§ tools` β that's expected
The CLI probes
sys.stdout.encoding and downgrades emoji capabilities to ASCII labels when the console canβt render them. To force emoji, switch your session to UTF-8 (chcp 65001) or run inside Windows Terminal / VS Code. To bypass rendering entirely, use praisonai models list --json.Related
Model Catalogue
Long-form feature article with output samples and caching details
Models Overview
Picking the right model for your workload
Auth
Store provider API keys before running agents
Run
Run agents with the model you picked

