model parameter you already know from the OpenAI API. You pass a model name in your request, and Inferoute resolves it to the appropriate provider and model version. You can be as specific as you want — pinning a request to a particular provider and model — or as general as you want, delegating the selection to Inferoute entirely.
Model naming formats
Inferoute supports three model naming formats.Provider-prefixed names
Fully qualified names that pin a request to a specific provider. Use this format when you need to guarantee which provider handles the request.Short aliases
Shorthand names that map to a canonical model across providers. Inferoute resolves the alias to the best available endpoint for that model.Auto selection
Settingmodel to "auto" tells Inferoute to pick the most suitable model for your request based on its content, your active routing strategy, and current provider availability.
Code examples
The following examples show how to use each naming format in a standard chat completion call.Model capabilities
Different models support different features. The table below summarizes key capabilities for the models available on Inferoute.
To list all currently available models and their capabilities programmatically, use the
GET /v1/models endpoint.