> ## Documentation Index
> Fetch the complete documentation index at: https://docs.orq.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Bring Your Own Model

> Connect fine-tuned, self-hosted, and privately deployed models from Azure AI Foundry, Google Vertex AI, or LiteLLM to the AI Gateway.

Use private models alongside public models through the same AI Gateway endpoint. Private models are useful when you have fine-tuned models, dedicated deployments, or self-hosted inference that should remain under your infrastructure and provider contracts.

## Supported private model sources

<CardGroup cols={3}>
  <Card title="Azure AI Foundry" icon="microsoft" href="/docs/ai-studio/integrations/providers/azure">
    Import OpenAI-compatible and publisher model deployments from an Azure AI Foundry project.
  </Card>

  <Card title="Google Vertex AI" icon="google" href="/docs/ai-studio/integrations/providers/vertex-ai">
    Connect models deployed in your Google Cloud project using a Vertex AI service account.
  </Card>

  <Card title="LiteLLM" icon="server" href="/docs/ai-studio/integrations/providers/litellm">
    Import self-hosted or custom models exposed through your LiteLLM instance.
  </Card>
</CardGroup>

## Add a private model

<Steps>
  <Step title="Open Models">
    In the AI Gateway sidebar, open **Models** and select <Icon icon="circle-plus" /> **Model**.
  </Step>

  <Step title="Connect the private provider">
    Select Azure AI Foundry, Vertex AI, or LiteLLM and enter the requested endpoint and credentials.
  </Step>

  <Step title="Import and enable models">
    Import the available deployments, then enable each model that should be available through the AI Gateway.
  </Step>

  <Step title="Route requests">
    Reference an imported model as `<workspace>@<provider>/<model>`.

    ```text theme={"theme":{"light":"github-light","dark":"github-dark"}}
    corp@azure/gpt-5.6-sol
    ```
  </Step>
</Steps>

Enabled private models are available for requests through [routing rules](/docs/ai-gateway/configuration/routing-rules).

<Card title="Manage all models" icon="sliders" href="/docs/ai-gateway/using-the-router">
  Enable models, filter by capability and region, and control model access by project.
</Card>
