Skip to main content
The AI Gateway’s Model Catalog is designed to be a central hub for all the models you use, providing a unified interface for both supported and private models. By adding your custom or fine-tuned models to the catalog, you can seamlessly integrate them into your applications, leverage the AI Gateway’s unified API signature, and benefit from centralized logging, monitoring, and management. This is especially useful for:
  • Fine-tuned Models: Integrating your fine-tuned versions of popular models (e.g., ft:gpt-4.1-nano).
  • Internal/Proprietary Models: Using your own in-house models through the AI Gateway.
  • Models Not Natively Supported: Adding models from providers that AI Gateway doesn’t yet have a direct integration with, while mapping them to a compatible API signature.

Adding a New Custom Model

You can add a custom model directly from Strata Cloud Manager.
  1. Navigate to the relevant Integration in your Strata Cloud Manager account, select the Integration for which you want to add a custom model.
  2. Select the Model Provisioning step from steps.
  3. Click the Add Model button on the top-right corner of the page.
This will open the Add Custom Model form.

Configuration Fields

Here’s a breakdown of each field in the form:

Model Slug

A unique, lowercase identifier for your model (e.g., my-custom-model-v1). This slug is what you will use in your API requests to reference this model.

Short Description

An optional, brief description to help you and your team understand the model’s purpose or version.

Model Type

Specify the nature of your model:
  • Fine-tuned model: Select this if you are adding a fine-tuned version of a base model (like ft:gpt-3.5-turbo).
  • Custom model: Select this for any other model, such as proprietary in-house models.

Base Model

Select an existing model that your custom model is based on in terms of API compatibility. For example, if your custom model accepts the same request payload and returns the same response structure as gpt-4, you would select gpt-4 here. This ensures the AI Gateway can correctly format requests and parse responses.

Add custom pricing for this model?

Enable this toggle if you want to associate specific input and output costs with your model. This is useful for accurate cost tracking and budget management within the AI Gateway’s dashboard.

Per-model custom host and headers

Each integration model can carry its own routing config — useful when several custom models share one integration but hit different upstreams or need different headers. Precedence
  • Model-level custom_headers override integration-level custom_headers for that model.
  • A request-time / header-level custom_host still takes priority over the model-level value.
Configure via the Update Model Access API (models[].configurations), or set the fields when editing the model in Model Provisioning.
custom_headers must be a flat string-to-string object. See Custom hosts for URL validation rules on custom_host.

Using Your Custom Model

Once you’ve added your custom model, you can use it just like any other model in the catalog. Simply reference its Model Slug in your API calls. For example, to use a custom model with the slug my-custom-model-v1 in a chat completion request, you would set it as the model in your provider configuration or pass it directly in the request header:
The AI Gateway will route the request to the provider associated with the base model you selected, using your custom model’s slug.
Last modified on September 15, 2026