To see available Models and enable them for use, navigate to the Models page in AI Gateway.
The Models page showing available models with pricing, features, and metadata columns.
Each model displays its full name alongside a set of sortable columns:
Name: full model name and provider
Input / Output pricing: per-token cost for input and output
Features: capability badges indicating support for ZDR, BYOK, and other model-specific features
Released: the model’s release date
Max Output Tokens: maximum tokens the model can generate per response
Context Length: total token window (input + output)
Location: the region where the model is served
Use Sort: Newest to reorder by Newest, Pricing (low to high or high to low), Context (low to high or high to low), or Max Output Tokens. Use Columns to show or hide individual columns.
Use the Status Toggle to Enable a model for use with the AI Gateway.
Use the modality tabs at the top of the list to scope models by type: All Text Image Audio Speech Embedding Moderation RerankThe sidebar provides additional filters:
Filter
Description
Location
Filter by region: Europe, United States, Global, APAC, Australia, Singapore
Access
Toggle Zero data retention for ZDR-compliant providers, or BYOK for providers where an API key has been added
Providers
Filter by LLM provider. See Providers to configure API keys
Status
Show Enabled or Disabled models
Features
Filter by capability: Base64, Code Execution, Image Edit, JSON Mode, PDF, Reasoning, Streaming, Tool Calling, URL, Vision, Web Search
Context length
Drag the range slider to filter by context window size (512 to 2M tokens)
Owner
Filter between Public (Orq.ai-provided) and Private (onboarded) models
To enable a model, toggle it on. It will immediately be available to call with the AI Gateway.
Models can also be enabled and disabled programmatically using the Models API. This is useful for CI/CD pipelines, automation scripts, or infrastructure-as-code workflows.These endpoints sit on the management plane and authenticate with a Management Key that has workspace-model write access. A standard API Key cannot be granted the workspace-model domain and is rejected with 403.Enable a model:
import { Orq } from "@orq-ai/node";const orq = new Orq({ apiKey: process.env.ORQ_MANAGEMENT_KEY });await orq.models.disable({ modelId: "openai/gpt-5.6-sol" });
from orq_ai_sdk import Orqimport osorq = Orq(api_key=os.environ["ORQ_MANAGEMENT_KEY"])orq.models.disable(model_id="openai/gpt-5.6-sol")
Both endpoints return 204 on success. Re-enabling an already-enabled model or disabling an already-disabled model is idempotent and also returns 204.When Enforce enabled models is turned on in General Settings, only models enabled through the dashboard or this API are available for routing. Requests that reference a non-enabled model are rejected.For full request and response schemas, see Enable model for workspace and Disable model for workspace.
Once a model is enabled, workspace admins can see an Access control icon next to it. Select it to choose which projects can use the model, in one of two modes:
All projects (default): every project in the workspace can use the model.
Custom: each project gets its own on/off toggle, letting admins grant or revoke access per project.
Changes save immediately; there is no separate save action.
Access control is admin-only. Members with other roles see only the models an admin has approved within their chosen projects.
Onboard private models by choosing Model at the top-right of the screen. This is useful when hosting a fine-tuned model or any model deployed on a private provider such as an OpenAI-compatible endpoint, Azure AI Foundry, or AWS Bedrock.
In the AI Gateway sidebar, go to Models, then click Model at the top-right and select Azure.
2
Enter credentials
Enter the Base URL and API Key.
3
Fetch deployments
Click Fetch deployments to automatically import all available deployments. The imported models appear in the Models list. Toggle each model Enabled before use. Enabled models are available for routing requests through Routing Rules.
To add Bedrock models, first create an Integration for the AWS account.
1
Open Add Model
In the AI Gateway sidebar, go to Models, click Model at the top-right and select AWS Bedrock.
2
Choose the model
Select the AWS Integration, enter the Inference Profile ARN, and confirm the Region parsed from the ARN.
3
Validate the connection
Click Validate Connection, then enter a display name and the model details.
Show LiteLLM
To import LiteLLM models, first create an Integration for the LiteLLM instance. After creation, return to the AI Gateway and import models from the connected instance.
When referencing private models through the SDKs, API, or Supported Libraries, the model is referenced by the following string: <workspacename>@<provider>/<modelname>.