> ## Documentation Index
> Fetch the complete documentation index at: https://hobbyist-e43fa225.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Region availability for Foundry Models sold by Azure

> Find region availability, capabilities, and deployments types available for Microsoft Foundry Models sold by Azure, to inform their use in AI applications.

export const ZonePivot = ({group, options = [], defaultValue, label = "Choose an experience"}) => {
  const values = options.map(option => option.id);
  const optionKey = options.map(option => `${option.id}:${option.title}`).join("|");
  const [activePivot, setActivePivot] = useState(defaultValue || values[0]);
  const slugify = value => value.toLowerCase().replace(/[^a-z0-9]+/g, "-").replace(/^-|-$/g, "");
  const resolvePivot = () => {
    if (typeof window === "undefined") return defaultValue || values[0];
    const params = new URLSearchParams(window.location.search);
    const requested = params.get("pivots");
    if (requested) {
      const requestedIds = requested.split(",").map(value => value.trim()).filter(Boolean);
      const match = requestedIds.find(id => values.includes(id));
      if (match) return match;
    }
    const hash = window.location.hash.replace(/^#/, "");
    if (hash) {
      const match = options.find(option => option.id === hash || slugify(option.title) === hash);
      if (match) return match.id;
    }
    try {
      const stored = window.localStorage.getItem(`foundry-zone-pivot:${group}`);
      if (values.includes(stored)) return stored;
    } catch {
      return defaultValue || values[0];
    }
    return defaultValue || values[0];
  };
  const publishPivotChange = value => {
    if (typeof window === "undefined") return;
    window.dispatchEvent(new CustomEvent("foundry-zone-pivot-change", {
      detail: {
        group,
        value
      }
    }));
  };
  const syncTableOfContents = () => {
    if (typeof window === "undefined") return;
    window.requestAnimationFrame(() => {
      const toc = document.getElementById("table-of-contents-content");
      if (!toc) return;
      const links = Array.from(toc.querySelectorAll('a[href^="#"]'));
      for (const link of links) {
        const item = link.closest("li");
        const rawId = link.getAttribute("href")?.slice(1);
        if (!item || !rawId) continue;
        let id = rawId;
        try {
          id = decodeURIComponent(rawId);
        } catch {}
        item.style.display = document.getElementById(id) ? "" : "none";
      }
    });
  };
  useEffect(() => {
    const resolvedPivot = resolvePivot();
    setActivePivot(resolvedPivot);
    publishPivotChange(resolvedPivot);
    window.setTimeout(syncTableOfContents, 0);
  }, [group, defaultValue, values.join("|"), optionKey]);
  const selectPivot = value => {
    setActivePivot(value);
    if (typeof window !== "undefined") {
      try {
        window.localStorage.setItem(`foundry-zone-pivot:${group}`, value);
      } catch {}
      const url = new URL(window.location.href);
      const current = url.searchParams.get("pivots");
      const preserved = current ? current.split(",").map(id => id.trim()).filter(id => id && !values.includes(id)) : [];
      url.searchParams.set("pivots", [...preserved, value].join(","));
      window.history.replaceState(null, "", `${url.pathname}${url.search}${url.hash}`);
    }
    publishPivotChange(value);
    window.setTimeout(syncTableOfContents, 0);
  };
  if (options.length < 2) return null;
  return <div className="not-prose my-6 border-b border-slate-200 pb-3 dark:border-slate-800">
      <div className="mb-2 text-xs font-semibold uppercase tracking-wide text-slate-500 dark:text-slate-400">
        {label}
      </div>
      <div className="flex flex-wrap gap-2" role="tablist" aria-label={label}>
        {options.map(option => {
    const selected = option.id === activePivot;
    return <button key={option.id} type="button" role="tab" aria-selected={selected} onClick={() => selectPivot(option.id)} className={`rounded-md border px-3 py-1.5 text-sm font-medium transition ${selected ? "border-slate-900 bg-slate-900 text-white shadow-sm dark:border-slate-100 dark:bg-slate-100 dark:text-slate-950" : "border-slate-200 bg-white text-slate-700 hover:border-slate-400 hover:text-slate-950 dark:border-slate-700 dark:bg-slate-950 dark:text-slate-200 dark:hover:border-slate-500"}`}>
              {option.title}
            </button>;
  })}
      </div>
    </div>;
};

export const ZoneContent = ({group, value, options = [], values = [], defaultValue, children}) => {
  const optionKey = options.map(option => `${option.id}:${option.title}`).join("|");
  const [activePivot, setActivePivot] = useState(defaultValue || values[0]);
  const slugify = value => value.toLowerCase().replace(/[^a-z0-9]+/g, "-").replace(/^-|-$/g, "");
  const resolvePivot = () => {
    if (typeof window === "undefined") return defaultValue || values[0];
    const params = new URLSearchParams(window.location.search);
    const requested = params.get("pivots");
    if (requested) {
      const requestedIds = requested.split(",").map(value => value.trim()).filter(Boolean);
      const match = requestedIds.find(id => values.includes(id));
      if (match) return match;
    }
    const hash = window.location.hash.replace(/^#/, "");
    if (hash) {
      const match = options.find(option => option.id === hash || slugify(option.title) === hash);
      if (match) return match.id;
    }
    try {
      const stored = window.localStorage.getItem(`foundry-zone-pivot:${group}`);
      if (values.includes(stored)) return stored;
    } catch {
      return defaultValue || values[0];
    }
    return defaultValue || values[0];
  };
  useEffect(() => {
    setActivePivot(resolvePivot());
  }, [group, defaultValue, values.join("|"), optionKey]);
  useEffect(() => {
    const onPivotChange = event => {
      if (event.detail?.group === group && values.includes(event.detail.value)) {
        setActivePivot(event.detail.value);
      }
    };
    window.addEventListener("foundry-zone-pivot-change", onPivotChange);
    return () => window.removeEventListener("foundry-zone-pivot-change", onPivotChange);
  }, [group, values.join("|")]);
  if (activePivot !== value) return null;
  return <>{children}</>;
};

Microsoft Foundry provides customers with choices on the hosting structure that fits their business and usage patterns. In Foundry Models sold by Azure, model offerings include both Azure OpenAI models and models from other providers. This article introduces regional availability across both collections.

Serverless API deployment in Microsoft Foundry includes three deployment categories: *standard* (pay-per-token), *provisioned* (reserved capacity), and *batch* (for asynchronous requests). Within these categories, you can choose global, data zone, or regional deployment types based on your compliance requirements.
For all deployment types, data stored at rest remains in the designated Azure geography (Americas, Europe, Asia Pacific, and Middle East and Africa). However, inferencing data is processed as follows:

* **Global** types: Might be processed in any Azure region where the model is deployed
* **Data Zone** types: Processed anywhere within the Microsoft-specified data zone (US, EU, or Asia Pacific (APAC))
* **Standard/Regional** types: Processed in the region associated with your deployment (not available for batch deployments)

All deployments can perform the exact same inference operations, but the billing, scale, and performance are substantially different. To learn more about Microsoft Foundry deployment types, including *batch* deployment types, see [Deployment types for Microsoft Foundry Models](/models/deployment-types).

<Tip>
  Use the tabs at the top of this page to switch deployment categories: [Standard deployment options](/models/models-sold-directly-by-azure-region-availability), [Provisioned deployment options](/models/models-sold-directly-by-azure-region-availability), and [Batch deployment options](/models/models-sold-directly-by-azure-region-availability).
</Tip>

<ZonePivot group="batch__provisioned__standard" options={[{"id": "standard", "title": "Standard deployment options"}, {"id": "provisioned", "title": "Provisioned deployment options"}, {"id": "batch", "title": "Batch deployment options"}]} defaultValue="standard" />

<ZoneContent group="batch__provisioned__standard" value="standard" options={[{"id": "standard", "title": "Standard deployment options"}, {"id": "provisioned", "title": "Provisioned deployment options"}, {"id": "batch", "title": "Batch deployment options"}]} values={["standard", "provisioned", "batch"]} defaultValue="standard">
  ## Global Standard

  For **global deployments**, Azure OpenAI can process prompts and responses in any Azure region where you deploy the model.

  #### Availability for Azure OpenAI in Foundry Models

  <Tabs>
    <Tab title="Americas">
      | **Model**                 | **Version** | **brazilsouth** | **canadacentral** | **canadaeast** | **centralus** | **eastus** | **eastus2** | **northcentralus** | **southcentralus** | **westus** | **westus3** |
      | :------------------------ | :---------- | :-------------: | :---------------: | :------------: | :-----------: | :--------: | :---------: | :----------------: | :----------------: | :--------: | :---------: |
      | codex-mini                | 2025-05-16  |        -        |         -         |        -       |       ✅       |      -     |      ✅      |          -         |          -         |      -     |      -      |
      | computer-use-preview      | 2025-03-11  |        -        |         -         |        -       |       -       |      -     |      ✅      |          -         |          -         |      -     |      -      |
      | gpt-4.1                   | 2025-04-14  |        ✅        |         -         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-4.1-mini              | 2025-04-14  |        ✅        |         -         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-4.1-nano              | 2025-04-14  |        ✅        |         -         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-4o                    | 2024-05-13  |        ✅        |         -         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-4o                    | 2024-08-06  |        ✅        |         -         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-4o                    | 2024-11-20  |        ✅        |         -         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-4o-mini               | 2024-07-18  |        ✅        |         -         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-4o-mini-transcribe    | 2025-03-20  |        -        |         ✅         |        -       |       ✅       |      -     |      ✅      |          -         |          -         |      -     |      -      |
      | gpt-4o-mini-transcribe    | 2025-12-15  |        -        |         ✅         |        -       |       ✅       |      -     |      ✅      |          -         |          -         |      -     |      -      |
      | gpt-4o-mini-tts           | 2025-03-20  |        -        |         -         |        -       |       -       |      -     |      ✅      |          -         |          -         |      -     |      -      |
      | gpt-4o-mini-tts           | 2025-12-15  |        -        |         -         |        -       |       -       |      -     |      ✅      |          -         |          -         |      -     |      -      |
      | gpt-4o-transcribe         | 2025-03-20  |        -        |         ✅         |        -       |       ✅       |      -     |      ✅      |          -         |          -         |      -     |      -      |
      | gpt-4o-transcribe-diarize | 2025-10-15  |        -        |         ✅         |        -       |       ✅       |      -     |      ✅      |          -         |          -         |      -     |      -      |
      | gpt-5                     | 2025-08-07  |        ✅        |         -         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-5-codex               | 2025-09-15  |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-5-mini                | 2025-08-07  |        ✅        |         -         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-5-nano                | 2025-08-07  |        ✅        |         -         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-5-pro                 | 2025-10-06  |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-5.1                   | 2025-11-13  |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-5.1-codex             | 2025-11-13  |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-5.1-codex-max         | 2025-12-04  |        -        |         -         |        -       |       -       |      -     |      ✅      |          -         |          -         |      -     |      -      |
      | gpt-5.1-codex-mini        | 2025-11-13  |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-5.2                   | 2025-12-11  |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-5.2-codex             | 2026-01-14  |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-5.3-codex             | 2026-02-24  |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-5.4                   | 2026-03-05  |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-5.4-mini              | 2026-03-17  |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-5.4-nano              | 2026-03-17  |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-5.4-pro               | 2026-03-05  |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-5.5                   | 2026-04-24  |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-5.6-luna              | 2026-07-09  |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-5.6-sol               | 2026-07-09  |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-5.6-terra             | 2026-07-09  |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-audio                 | 2025-08-28  |        -        |         -         |        -       |       ✅       |      -     |      ✅      |          -         |          -         |      -     |      -      |
      | gpt-audio-1.5             | 2026-02-23  |        -        |         -         |        -       |       ✅       |      -     |      ✅      |          -         |          -         |      -     |      -      |
      | gpt-audio-mini            | 2025-10-06  |        -        |         -         |        -       |       ✅       |      -     |      ✅      |          -         |          -         |      -     |      -      |
      | gpt-audio-mini            | 2025-12-15  |        -        |         -         |        -       |       ✅       |      -     |      ✅      |          -         |          -         |      -     |      -      |
      | gpt-chat-latest           | 2026-05-05  |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-chat-latest           | 2026-05-28  |        -        |         -         |        -       |       -       |      -     |      ✅      |          -         |          ✅         |      -     |      ✅      |
      | gpt-chat-latest           | 2026-06-24  |        -        |         -         |        -       |       -       |      -     |      ✅      |          -         |          ✅         |      -     |      ✅      |
      | gpt-image-1               | 2025-04-15  |        -        |         -         |        -       |       -       |      -     |      ✅      |          -         |          -         |      -     |      ✅      |
      | gpt-image-1-mini          | 2025-10-06  |        -        |         -         |        -       |       -       |      -     |      ✅      |          -         |          -         |      -     |      ✅      |
      | gpt-image-1.5             | 2025-12-16  |        -        |         -         |        -       |       -       |      -     |      ✅      |          -         |          -         |      -     |      ✅      |
      | gpt-image-2               | 2026-04-21  |        -        |         -         |        -       |       -       |      -     |      ✅      |          -         |          -         |      -     |      ✅      |
      | gpt-realtime              | 2025-08-28  |        -        |         ✅         |        -       |       ✅       |      -     |      ✅      |          -         |          -         |      -     |      -      |
      | gpt-realtime-1.5          | 2026-02-23  |        -        |         ✅         |        -       |       ✅       |      -     |      ✅      |          -         |          -         |      -     |      -      |
      | gpt-realtime-2            | 2026-05-06  |        -        |         ✅         |        -       |       ✅       |      -     |      ✅      |          -         |          -         |      -     |      -      |
      | gpt-realtime-2.1          | 2026-07-07  |        -        |         ✅         |        -       |       ✅       |      -     |      ✅      |          -         |          -         |      -     |      -      |
      | gpt-realtime-2.1-mini     | 2026-07-07  |        -        |         ✅         |        -       |       ✅       |      -     |      ✅      |          -         |          -         |      -     |      -      |
      | gpt-realtime-mini         | 2025-10-06  |        -        |         ✅         |        -       |       ✅       |      -     |      ✅      |          -         |          -         |      -     |      -      |
      | gpt-realtime-mini         | 2025-12-15  |        -        |         ✅         |        -       |       ✅       |      -     |      ✅      |          -         |          -         |      -     |      -      |
      | gpt-realtime-translate    | 2026-05-06  |        -        |         ✅         |        -       |       ✅       |      -     |      ✅      |          -         |          -         |      -     |      -      |
      | gpt-realtime-whisper      | 2026-05-06  |        -        |         ✅         |        -       |       ✅       |      -     |      ✅      |          -         |          -         |      -     |      -      |
      | model-router              | 2025-05-19  |        -        |         -         |        -       |       -       |      -     |      ✅      |          -         |          -         |      -     |      ✅      |
      | model-router              | 2025-08-07  |        -        |         -         |        -       |       -       |      -     |      ✅      |          -         |          -         |      -     |      ✅      |
      | model-router              | 2025-11-18  |        -        |         -         |        -       |       -       |      -     |      ✅      |          -         |          -         |      -     |      ✅      |
      | o1                        | 2024-12-17  |        ✅        |         -         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | o3                        | 2025-04-16  |        ✅        |         -         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | o3-deep-research          | 2025-06-26  |        -        |         -         |        -       |       -       |      -     |      -      |          -         |          -         |      ✅     |      -      |
      | o3-mini                   | 2025-01-31  |        ✅        |         -         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | o3-pro                    | 2025-06-10  |        -        |         -         |        -       |       ✅       |      -     |      ✅      |          -         |          -         |      -     |      -      |
      | o4-mini                   | 2025-04-16  |        ✅        |         -         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | sora-2                    | 2025-10-06  |        -        |         -         |        -       |       -       |      -     |      ✅      |          -         |          -         |      -     |      -      |
      | sora-2                    | 2025-12-08  |        -        |         -         |        -       |       -       |      -     |      ✅      |          -         |          -         |      -     |      -      |
      | text-embedding-3-large    | 1           |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | text-embedding-3-small    | 1           |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | text-embedding-ada-002    | 2           |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
    </Tab>

    <Tab title="Europe">
      | **Model**                 | **Version** | **francecentral** | **germanywestcentral** | **italynorth** | **norwayeast** | **polandcentral** | **spaincentral** | **swedencentral** | **switzerlandnorth** | **switzerlandwest** | **uksouth** | **westeurope** |
      | :------------------------ | :---------- | :---------------: | :--------------------: | :------------: | :------------: | :---------------: | :--------------: | :---------------: | :------------------: | :-----------------: | :---------: | :------------: |
      | codex-mini                | 2025-05-16  |         -         |            -           |        -       |        -       |         -         |         -        |         ✅         |           -          |          -          |      -      |        -       |
      | computer-use-preview      | 2025-03-11  |         -         |            -           |        -       |        -       |         -         |         -        |         ✅         |           -          |          -          |      -      |        -       |
      | gpt-4.1                   | 2025-04-14  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          -          |      ✅      |        ✅       |
      | gpt-4.1-mini              | 2025-04-14  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          -          |      ✅      |        ✅       |
      | gpt-4.1-nano              | 2025-04-14  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          -          |      ✅      |        ✅       |
      | gpt-4o                    | 2024-05-13  |         ✅         |            ✅           |        -       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          -          |      ✅      |        ✅       |
      | gpt-4o                    | 2024-08-06  |         ✅         |            ✅           |        -       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          -          |      ✅      |        ✅       |
      | gpt-4o                    | 2024-11-20  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          -          |      ✅      |        ✅       |
      | gpt-4o-mini               | 2024-07-18  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          -          |      ✅      |        ✅       |
      | gpt-4o-mini-transcribe    | 2025-03-20  |         ✅         |            -           |        -       |        -       |         -         |         -        |         ✅         |           -          |          -          |      -      |        -       |
      | gpt-4o-mini-transcribe    | 2025-12-15  |         ✅         |            -           |        -       |        -       |         -         |         -        |         ✅         |           -          |          -          |      -      |        -       |
      | gpt-4o-transcribe         | 2025-03-20  |         ✅         |            -           |        -       |        -       |         -         |         -        |         ✅         |           -          |          -          |      -      |        -       |
      | gpt-4o-transcribe-diarize | 2025-10-15  |         ✅         |            -           |        -       |        -       |         -         |         -        |         ✅         |           -          |          -          |      -      |        -       |
      | gpt-5                     | 2025-08-07  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          -          |      ✅      |        ✅       |
      | gpt-5-codex               | 2025-09-15  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |        ✅       |
      | gpt-5-mini                | 2025-08-07  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          -          |      ✅      |        ✅       |
      | gpt-5-nano                | 2025-08-07  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          -          |      ✅      |        ✅       |
      | gpt-5-pro                 | 2025-10-06  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |        ✅       |
      | gpt-5.1                   | 2025-11-13  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |        ✅       |
      | gpt-5.1-codex             | 2025-11-13  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |        ✅       |
      | gpt-5.1-codex-max         | 2025-12-04  |         -         |            -           |        -       |        -       |         -         |         -        |         ✅         |           -          |          -          |      -      |        -       |
      | gpt-5.1-codex-mini        | 2025-11-13  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |        ✅       |
      | gpt-5.2                   | 2025-12-11  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |        ✅       |
      | gpt-5.2-codex             | 2026-01-14  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |        ✅       |
      | gpt-5.3-codex             | 2026-02-24  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |        ✅       |
      | gpt-5.4                   | 2026-03-05  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |        ✅       |
      | gpt-5.4-mini              | 2026-03-17  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |        ✅       |
      | gpt-5.4-nano              | 2026-03-17  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |        ✅       |
      | gpt-5.4-pro               | 2026-03-05  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |        ✅       |
      | gpt-5.5                   | 2026-04-24  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |        ✅       |
      | gpt-5.6-luna              | 2026-07-09  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |        ✅       |
      | gpt-5.6-sol               | 2026-07-09  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |        ✅       |
      | gpt-5.6-terra             | 2026-07-09  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |        ✅       |
      | gpt-audio                 | 2025-08-28  |         -         |            -           |        -       |        -       |         -         |         -        |         ✅         |           -          |          -          |      -      |        -       |
      | gpt-audio-1.5             | 2026-02-23  |         -         |            -           |        -       |        -       |         -         |         -        |         ✅         |           -          |          -          |      -      |        -       |
      | gpt-audio-mini            | 2025-10-06  |         -         |            -           |        -       |        -       |         -         |         -        |         ✅         |           -          |          -          |      -      |        -       |
      | gpt-audio-mini            | 2025-12-15  |         -         |            -           |        -       |        -       |         -         |         -        |         ✅         |           -          |          -          |      -      |        -       |
      | gpt-chat-latest           | 2026-05-05  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |        ✅       |
      | gpt-chat-latest           | 2026-05-28  |         -         |            -           |        -       |        -       |         ✅         |         -        |         ✅         |           -          |          -          |      -      |        -       |
      | gpt-chat-latest           | 2026-06-24  |         -         |            -           |        -       |        -       |         ✅         |         -        |         ✅         |           -          |          -          |      -      |        -       |
      | gpt-image-1               | 2025-04-15  |         -         |            -           |        -       |        -       |         ✅         |         -        |         ✅         |           -          |          -          |      -      |        -       |
      | gpt-image-1-mini          | 2025-10-06  |         -         |            -           |        -       |        -       |         ✅         |         -        |         ✅         |           -          |          -          |      -      |        -       |
      | gpt-image-1.5             | 2025-12-16  |         -         |            -           |        -       |        -       |         ✅         |         -        |         ✅         |           -          |          -          |      -      |        -       |
      | gpt-image-2               | 2026-04-21  |         -         |            -           |        -       |        -       |         ✅         |         -        |         ✅         |           -          |          -          |      -      |        -       |
      | gpt-realtime              | 2025-08-28  |         ✅         |            -           |        -       |        -       |         -         |         -        |         ✅         |           -          |          -          |      -      |        -       |
      | gpt-realtime-1.5          | 2026-02-23  |         ✅         |            -           |        -       |        -       |         -         |         -        |         ✅         |           -          |          -          |      -      |        -       |
      | gpt-realtime-2            | 2026-05-06  |         ✅         |            -           |        -       |        -       |         -         |         -        |         ✅         |           -          |          -          |      -      |        -       |
      | gpt-realtime-2.1          | 2026-07-07  |         ✅         |            -           |        -       |        -       |         -         |         -        |         ✅         |           -          |          -          |      -      |        -       |
      | gpt-realtime-2.1-mini     | 2026-07-07  |         ✅         |            -           |        -       |        -       |         -         |         -        |         ✅         |           -          |          -          |      -      |        -       |
      | gpt-realtime-mini         | 2025-10-06  |         ✅         |            -           |        -       |        -       |         -         |         -        |         ✅         |           -          |          -          |      -      |        -       |
      | gpt-realtime-mini         | 2025-12-15  |         ✅         |            -           |        -       |        -       |         -         |         -        |         ✅         |           -          |          -          |      -      |        -       |
      | gpt-realtime-translate    | 2026-05-06  |         ✅         |            -           |        -       |        -       |         -         |         -        |         ✅         |           -          |          -          |      -      |        -       |
      | gpt-realtime-whisper      | 2026-05-06  |         ✅         |            -           |        -       |        -       |         -         |         -        |         ✅         |           -          |          -          |      -      |        -       |
      | model-router              | 2025-05-19  |         -         |            -           |        -       |        -       |         -         |         -        |         ✅         |           -          |          -          |      -      |        -       |
      | model-router              | 2025-08-07  |         -         |            -           |        -       |        -       |         -         |         -        |         ✅         |           -          |          -          |      -      |        -       |
      | model-router              | 2025-11-18  |         -         |            -           |        -       |        -       |         -         |         -        |         ✅         |           -          |          -          |      -      |        -       |
      | o1                        | 2024-12-17  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          -          |      ✅      |        ✅       |
      | o3                        | 2025-04-16  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          -          |      ✅      |        ✅       |
      | o3-deep-research          | 2025-06-26  |         -         |            -           |        -       |        ✅       |         -         |         -        |         -         |           -          |          -          |      -      |        -       |
      | o3-mini                   | 2025-01-31  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          -          |      ✅      |        ✅       |
      | o3-pro                    | 2025-06-10  |         -         |            -           |        -       |        -       |         -         |         -        |         ✅         |           -          |          -          |      -      |        -       |
      | o4-mini                   | 2025-04-16  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          -          |      ✅      |        ✅       |
      | sora-2                    | 2025-10-06  |         -         |            -           |        -       |        -       |         -         |         -        |         ✅         |           -          |          -          |      -      |        -       |
      | sora-2                    | 2025-12-08  |         -         |            -           |        -       |        -       |         -         |         -        |         ✅         |           -          |          -          |      -      |        -       |
      | text-embedding-3-large    | 1           |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |        ✅       |
      | text-embedding-3-small    | 1           |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |        ✅       |
      | text-embedding-ada-002    | 2           |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |        ✅       |
    </Tab>

    <Tab title="Asia Pacific">
      | **Model**                 | **Version** | **australiaeast** | **japaneast** | **koreacentral** | **southeastasia** | **southindia** |
      | :------------------------ | :---------- | :---------------: | :-----------: | :--------------: | :---------------: | :------------: |
      | computer-use-preview      | 2025-02-11  |         -         |       -       |         -        |         -         |        ✅       |
      | computer-use-preview      | 2025-03-11  |         -         |       -       |         -        |         -         |        ✅       |
      | gpt-4.1                   | 2025-04-14  |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
      | gpt-4.1-mini              | 2025-04-14  |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
      | gpt-4.1-nano              | 2025-04-14  |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
      | gpt-4o                    | 2024-05-13  |         ✅         |       ✅       |         ✅        |         -         |        ✅       |
      | gpt-4o                    | 2024-08-06  |         ✅         |       ✅       |         ✅        |         -         |        ✅       |
      | gpt-4o                    | 2024-11-20  |         ✅         |       ✅       |         ✅        |         -         |        ✅       |
      | gpt-4o-mini               | 2024-07-18  |         ✅         |       ✅       |         ✅        |         -         |        ✅       |
      | gpt-4o-mini-transcribe    | 2025-03-20  |         -         |       -       |         -        |         -         |        ✅       |
      | gpt-4o-mini-transcribe    | 2025-12-15  |         -         |       -       |         -        |         -         |        ✅       |
      | gpt-4o-transcribe         | 2025-03-20  |         -         |       -       |         -        |         -         |        ✅       |
      | gpt-4o-transcribe-diarize | 2025-10-15  |         -         |       -       |         -        |         -         |        ✅       |
      | gpt-5                     | 2025-08-07  |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
      | gpt-5-codex               | 2025-09-15  |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
      | gpt-5-mini                | 2025-08-07  |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
      | gpt-5-nano                | 2025-08-07  |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
      | gpt-5-pro                 | 2025-10-06  |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
      | gpt-5.1                   | 2025-11-13  |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
      | gpt-5.1-codex             | 2025-11-13  |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
      | gpt-5.1-codex-mini        | 2025-11-13  |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
      | gpt-5.2                   | 2025-12-11  |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
      | gpt-5.2-codex             | 2026-01-14  |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
      | gpt-5.3-codex             | 2026-02-24  |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
      | gpt-5.4                   | 2026-03-05  |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
      | gpt-5.4-mini              | 2026-03-17  |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
      | gpt-5.4-nano              | 2026-03-17  |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
      | gpt-5.4-pro               | 2026-03-05  |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
      | gpt-5.5                   | 2026-04-24  |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
      | gpt-5.6-luna              | 2026-07-09  |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
      | gpt-5.6-sol               | 2026-07-09  |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
      | gpt-5.6-terra             | 2026-07-09  |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
      | gpt-chat-latest           | 2026-05-05  |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
      | gpt-realtime              | 2025-08-28  |         -         |       -       |         -        |         -         |        ✅       |
      | gpt-realtime-1.5          | 2026-02-23  |         -         |       -       |         -        |         -         |        ✅       |
      | gpt-realtime-2            | 2026-05-06  |         -         |       -       |         -        |         -         |        ✅       |
      | gpt-realtime-2.1          | 2026-07-07  |         -         |       -       |         -        |         -         |        ✅       |
      | gpt-realtime-2.1-mini     | 2026-07-07  |         -         |       -       |         -        |         -         |        ✅       |
      | gpt-realtime-mini         | 2025-10-06  |         -         |       -       |         -        |         -         |        ✅       |
      | gpt-realtime-mini         | 2025-12-15  |         -         |       -       |         -        |         -         |        ✅       |
      | gpt-realtime-translate    | 2026-05-06  |         -         |       -       |         -        |         -         |        ✅       |
      | gpt-realtime-whisper      | 2026-05-06  |         -         |       -       |         -        |         -         |        ✅       |
      | model-router              | 2025-05-19  |         ✅         |       -       |         -        |         -         |        ✅       |
      | model-router              | 2025-08-07  |         ✅         |       -       |         -        |         -         |        ✅       |
      | model-router              | 2025-11-18  |         ✅         |       -       |         -        |         -         |        ✅       |
      | o1                        | 2024-12-17  |         ✅         |       ✅       |         ✅        |         -         |        ✅       |
      | o3                        | 2025-04-16  |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
      | o3-mini                   | 2025-01-31  |         ✅         |       ✅       |         ✅        |         -         |        ✅       |
      | o4-mini                   | 2025-04-16  |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
      | text-embedding-3-large    | 1           |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
      | text-embedding-3-small    | 1           |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
      | text-embedding-ada-002    | 2           |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
    </Tab>

    <Tab title="Middle East & Africa">
      | **Model**              | **Version** | **southafricanorth** | **uaenorth** |
      | :--------------------- | :---------- | :------------------: | :----------: |
      | gpt-4.1                | 2025-04-14  |           ✅          |       ✅      |
      | gpt-4.1-mini           | 2025-04-14  |           ✅          |       ✅      |
      | gpt-4.1-nano           | 2025-04-14  |           ✅          |       ✅      |
      | gpt-4o                 | 2024-05-13  |           ✅          |       ✅      |
      | gpt-4o                 | 2024-08-06  |           ✅          |       ✅      |
      | gpt-4o                 | 2024-11-20  |           ✅          |       ✅      |
      | gpt-4o-mini            | 2024-07-18  |           ✅          |       ✅      |
      | gpt-5                  | 2025-08-07  |           ✅          |       ✅      |
      | gpt-5-codex            | 2025-09-15  |           ✅          |       ✅      |
      | gpt-5-mini             | 2025-08-07  |           ✅          |       ✅      |
      | gpt-5-nano             | 2025-08-07  |           ✅          |       ✅      |
      | gpt-5-pro              | 2025-10-06  |           ✅          |       ✅      |
      | gpt-5.1                | 2025-11-13  |           ✅          |       ✅      |
      | gpt-5.1-codex          | 2025-11-13  |           ✅          |       ✅      |
      | gpt-5.1-codex-mini     | 2025-11-13  |           ✅          |       ✅      |
      | gpt-5.2                | 2025-12-11  |           ✅          |       ✅      |
      | gpt-5.2-codex          | 2026-01-14  |           ✅          |       ✅      |
      | gpt-5.3-codex          | 2026-02-24  |           ✅          |       ✅      |
      | gpt-5.4                | 2026-03-05  |           ✅          |       ✅      |
      | gpt-5.4-mini           | 2026-03-17  |           ✅          |       ✅      |
      | gpt-5.4-nano           | 2026-03-17  |           ✅          |       ✅      |
      | gpt-5.4-pro            | 2026-03-05  |           ✅          |       ✅      |
      | gpt-5.5                | 2026-04-24  |           ✅          |       ✅      |
      | gpt-5.6-luna           | 2026-07-09  |           ✅          |       ✅      |
      | gpt-5.6-sol            | 2026-07-09  |           ✅          |       ✅      |
      | gpt-5.6-terra          | 2026-07-09  |           ✅          |       ✅      |
      | gpt-chat-latest        | 2026-05-05  |           ✅          |       ✅      |
      | gpt-image-1            | 2025-04-15  |           -          |       ✅      |
      | gpt-image-1-mini       | 2025-10-06  |           -          |       ✅      |
      | gpt-image-1.5          | 2025-12-16  |           -          |       ✅      |
      | gpt-image-2            | 2026-04-21  |           -          |       ✅      |
      | o1                     | 2024-12-17  |           ✅          |       ✅      |
      | o3                     | 2025-04-16  |           ✅          |       ✅      |
      | o3-mini                | 2025-01-31  |           ✅          |       ✅      |
      | o4-mini                | 2025-04-16  |           ✅          |       ✅      |
      | text-embedding-3-large | 1           |           ✅          |       ✅      |
      | text-embedding-3-small | 1           |           ✅          |       ✅      |
      | text-embedding-ada-002 | 2           |           ✅          |       ✅      |
    </Tab>
  </Tabs>

  #### Availability for other Foundry Models sold by Azure

  <Tabs>
    <Tab title="Americas">
      | **Model**                              | **Version** | **brazilsouth** | **canadacentral** | **canadaeast** | **centralus** | **eastus** | **eastus2** | **northcentralus** | **southcentralus** | **westcentralus** | **westus** | **westus2** | **westus3** |
      | :------------------------------------- | :---------- | :-------------: | :---------------: | :------------: | :-----------: | :--------: | :---------: | :----------------: | :----------------: | :---------------: | :--------: | :---------: | :---------: |
      | cohere-command-a                       | 1           |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |         ✅         |      ✅     |      ✅      |      ✅      |
      | Cohere-command-a-plus-05-2026          | 1           |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |         ✅         |      ✅     |      ✅      |      ✅      |
      | Cohere-rerank-v4.0-fast                | 1           |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |         ✅         |      ✅     |      ✅      |      ✅      |
      | Cohere-rerank-v4.0-pro                 | 1           |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |         ✅         |      ✅     |      ✅      |      ✅      |
      | DeepSeek-R1                            | 1           |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |         ✅         |      ✅     |      ✅      |      ✅      |
      | DeepSeek-V3.2                          | 1           |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |         ✅         |      ✅     |      ✅      |      ✅      |
      | DeepSeek-V3.2-Speciale                 | 1           |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |         ✅         |      ✅     |      ✅      |      ✅      |
      | DeepSeek-V4-Flash                      | 2026-04-23  |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |         ✅         |      ✅     |      ✅      |      ✅      |
      | DeepSeek-V4-Pro                        | 2026-04-23  |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |         ✅         |      ✅     |      ✅      |      ✅      |
      | FLUX-1.1-pro                           | 1           |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |         ✅         |      ✅     |      ✅      |      ✅      |
      | FLUX.1-Kontext-pro                     | 1           |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |         ✅         |      ✅     |      ✅      |      ✅      |
      | FLUX.2-flex                            | 1           |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |         ✅         |      ✅     |      ✅      |      ✅      |
      | FLUX.2-pro                             | 1           |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |         ✅         |      ✅     |      ✅      |      ✅      |
      | grok-4-1-fast-non-reasoning            | 1           |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |         ✅         |      ✅     |      ✅      |      ✅      |
      | grok-4-1-fast-reasoning                | 1           |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |         ✅         |      ✅     |      ✅      |      ✅      |
      | grok-4-20-non-reasoning                | 1           |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |         ✅         |      ✅     |      ✅      |      ✅      |
      | grok-4-20-reasoning                    | 1           |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |         ✅         |      ✅     |      ✅      |      ✅      |
      | grok-4.3                               | 1           |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |         ✅         |      ✅     |      ✅      |      ✅      |
      | Kimi-K2.5                              | 1           |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |         ✅         |      ✅     |      ✅      |      ✅      |
      | Kimi-K2.6                              | 2026-04-20  |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |         ✅         |      ✅     |      ✅      |      ✅      |
      | Kimi-K2.7-Code                         | 2026-06-12  |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |         ✅         |      ✅     |      ✅      |      ✅      |
      | Llama-3.3-70B-Instruct                 | 1           |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |         ✅         |      ✅     |      ✅      |      ✅      |
      | Llama-3.3-70B-Instruct                 | 2           |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |         ✅         |      ✅     |      ✅      |      ✅      |
      | Llama-3.3-70B-Instruct                 | 3           |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |         ✅         |      ✅     |      ✅      |      ✅      |
      | Llama-3.3-70B-Instruct                 | 4           |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |         ✅         |      ✅     |      ✅      |      ✅      |
      | Llama-3.3-70B-Instruct                 | 5           |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |         ✅         |      ✅     |      ✅      |      ✅      |
      | Llama-3.3-70B-Instruct                 | 9           |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |         ✅         |      ✅     |      ✅      |      ✅      |
      | Llama-4-Maverick-17B-128E-Instruct-FP8 | 1           |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |         ✅         |      ✅     |      ✅      |      ✅      |
      | MAI-Image-2                            | 2026-02-20  |        -        |         -         |        -       |       -       |      ✅     |      -      |          -         |          -         |         ✅         |      ✅     |      -      |      -      |
      | MAI-Image-2.5                          | 2026-06-02  |        -        |         -         |        -       |       -       |      ✅     |      -      |          -         |          -         |         ✅         |      ✅     |      -      |      -      |
      | MAI-Image-2.5-Flash                    | 2026-06-02  |        -        |         -         |        -       |       -       |      ✅     |      -      |          -         |          -         |         ✅         |      ✅     |      -      |      -      |
      | MAI-Image-2.5-Pro                      | 2026-06-19  |        -        |         -         |        -       |       -       |      ✅     |      -      |          -         |          -         |         ✅         |      ✅     |      -      |      -      |
      | MAI-Image-2e                           | 2026-04-09  |        -        |         -         |        -       |       -       |      ✅     |      -      |          -         |          -         |         ✅         |      ✅     |      -      |      -      |
      | Mistral-Large-3                        | 1           |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |         ✅         |      ✅     |      ✅      |      ✅      |
      | mistral-medium-3-5                     | 1           |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |         ✅         |      ✅     |      ✅      |      ✅      |
      | Phi-4                                  | 2           |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |         ✅         |      ✅     |      ✅      |      ✅      |
      | Phi-4                                  | 3           |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |         ✅         |      ✅     |      ✅      |      ✅      |
      | Phi-4                                  | 4           |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |         ✅         |      ✅     |      ✅      |      ✅      |
      | Phi-4                                  | 5           |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |         ✅         |      ✅     |      ✅      |      ✅      |
      | Phi-4                                  | 6           |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |         ✅         |      ✅     |      ✅      |      ✅      |
      | Phi-4                                  | 7           |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |         ✅         |      ✅     |      ✅      |      ✅      |
      | Phi-4-mini-instruct                    | 1           |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |         ✅         |      ✅     |      ✅      |      ✅      |
      | Phi-4-mini-reasoning                   | 1           |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |         ✅         |      ✅     |      ✅      |      ✅      |
      | Phi-4-multimodal-instruct              | 1           |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |         ✅         |      ✅     |      ✅      |      ✅      |
      | Phi-4-reasoning                        | 1           |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |         ✅         |      ✅     |      ✅      |      ✅      |
    </Tab>

    <Tab title="Europe">
      | **Model**                              | **Version** | **francecentral** | **germanywestcentral** | **italynorth** | **norwayeast** | **polandcentral** | **spaincentral** | **swedencentral** | **switzerlandnorth** | **switzerlandwest** | **uksouth** | **ukwest** | **westeurope** |
      | :------------------------------------- | :---------- | :---------------: | :--------------------: | :------------: | :------------: | :---------------: | :--------------: | :---------------: | :------------------: | :-----------------: | :---------: | :--------: | :------------: |
      | cohere-command-a                       | 1           |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |      ✅     |        ✅       |
      | Cohere-command-a-plus-05-2026          | 1           |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |      ✅     |        ✅       |
      | Cohere-rerank-v4.0-fast                | 1           |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |      ✅     |        ✅       |
      | Cohere-rerank-v4.0-pro                 | 1           |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |      ✅     |        ✅       |
      | DeepSeek-R1                            | 1           |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |      ✅     |        ✅       |
      | DeepSeek-V3.2                          | 1           |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |      ✅     |        ✅       |
      | DeepSeek-V3.2-Speciale                 | 1           |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |      ✅     |        ✅       |
      | DeepSeek-V4-Flash                      | 2026-04-23  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |      ✅     |        ✅       |
      | DeepSeek-V4-Pro                        | 2026-04-23  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |      ✅     |        ✅       |
      | FLUX-1.1-pro                           | 1           |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |      ✅     |        ✅       |
      | FLUX.1-Kontext-pro                     | 1           |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |      ✅     |        ✅       |
      | FLUX.2-flex                            | 1           |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |      ✅     |        ✅       |
      | FLUX.2-pro                             | 1           |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |      ✅     |        ✅       |
      | grok-4-1-fast-non-reasoning            | 1           |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |      ✅     |        ✅       |
      | grok-4-1-fast-reasoning                | 1           |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |      ✅     |        ✅       |
      | grok-4-20-non-reasoning                | 1           |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |      ✅     |        ✅       |
      | grok-4-20-reasoning                    | 1           |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |      ✅     |        ✅       |
      | grok-4.3                               | 1           |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |      ✅     |        ✅       |
      | Kimi-K2.5                              | 1           |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |      ✅     |        ✅       |
      | Kimi-K2.6                              | 2026-04-20  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |      ✅     |        ✅       |
      | Kimi-K2.7-Code                         | 2026-06-12  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |      ✅     |        ✅       |
      | Llama-3.3-70B-Instruct                 | 1           |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |      ✅     |        ✅       |
      | Llama-3.3-70B-Instruct                 | 2           |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |      ✅     |        ✅       |
      | Llama-3.3-70B-Instruct                 | 3           |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |      ✅     |        ✅       |
      | Llama-3.3-70B-Instruct                 | 4           |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |      ✅     |        ✅       |
      | Llama-3.3-70B-Instruct                 | 5           |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |      ✅     |        ✅       |
      | Llama-3.3-70B-Instruct                 | 9           |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |      ✅     |        ✅       |
      | Llama-4-Maverick-17B-128E-Instruct-FP8 | 1           |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |      ✅     |        ✅       |
      | MAI-Image-2                            | 2026-02-20  |         -         |            -           |        -       |        -       |         -         |         -        |         ✅         |           -          |          -          |      -      |      -     |        ✅       |
      | MAI-Image-2.5                          | 2026-06-02  |         -         |            -           |        -       |        -       |         -         |         -        |         ✅         |           -          |          -          |      -      |      -     |        ✅       |
      | MAI-Image-2.5-Flash                    | 2026-06-02  |         -         |            -           |        -       |        -       |         -         |         -        |         ✅         |           -          |          -          |      -      |      -     |        ✅       |
      | MAI-Image-2.5-Pro                      | 2026-06-19  |         -         |            -           |        -       |        -       |         -         |         -        |         ✅         |           -          |          -          |      -      |      -     |        ✅       |
      | MAI-Image-2e                           | 2026-04-09  |         -         |            -           |        -       |        -       |         -         |         -        |         ✅         |           -          |          -          |      -      |      -     |        ✅       |
      | Mistral-Large-3                        | 1           |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |      ✅     |        ✅       |
      | mistral-medium-3-5                     | 1           |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |      ✅     |        ✅       |
      | Phi-4                                  | 2           |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |      ✅     |        ✅       |
      | Phi-4                                  | 3           |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |      ✅     |        ✅       |
      | Phi-4                                  | 4           |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |      ✅     |        ✅       |
      | Phi-4                                  | 5           |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |      ✅     |        ✅       |
      | Phi-4                                  | 6           |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |      ✅     |        ✅       |
      | Phi-4                                  | 7           |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |      ✅     |        ✅       |
      | Phi-4-mini-instruct                    | 1           |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |      ✅     |        ✅       |
      | Phi-4-mini-reasoning                   | 1           |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |      ✅     |        ✅       |
      | Phi-4-multimodal-instruct              | 1           |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |      ✅     |        ✅       |
      | Phi-4-reasoning                        | 1           |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |      ✅     |        ✅       |
    </Tab>

    <Tab title="Asia Pacific">
      | **Model**                              | **Version** | **australiaeast** | **japaneast** | **japanwest** | **koreacentral** | **southindia** |
      | :------------------------------------- | :---------- | :---------------: | :-----------: | :-----------: | :--------------: | :------------: |
      | cohere-command-a                       | 1           |         ✅         |       ✅       |       ✅       |         ✅        |        ✅       |
      | Cohere-command-a-plus-05-2026          | 1           |         ✅         |       ✅       |       ✅       |         ✅        |        ✅       |
      | Cohere-rerank-v4.0-fast                | 1           |         ✅         |       ✅       |       ✅       |         ✅        |        ✅       |
      | Cohere-rerank-v4.0-pro                 | 1           |         ✅         |       ✅       |       ✅       |         ✅        |        ✅       |
      | DeepSeek-R1                            | 1           |         ✅         |       ✅       |       ✅       |         ✅        |        ✅       |
      | DeepSeek-V3.2                          | 1           |         ✅         |       ✅       |       ✅       |         ✅        |        ✅       |
      | DeepSeek-V3.2-Speciale                 | 1           |         ✅         |       ✅       |       ✅       |         ✅        |        ✅       |
      | DeepSeek-V4-Flash                      | 2026-04-23  |         ✅         |       ✅       |       ✅       |         ✅        |        ✅       |
      | DeepSeek-V4-Pro                        | 2026-04-23  |         ✅         |       ✅       |       ✅       |         ✅        |        ✅       |
      | FLUX-1.1-pro                           | 1           |         ✅         |       ✅       |       ✅       |         ✅        |        ✅       |
      | FLUX.1-Kontext-pro                     | 1           |         ✅         |       ✅       |       ✅       |         ✅        |        ✅       |
      | FLUX.2-flex                            | 1           |         ✅         |       ✅       |       ✅       |         ✅        |        ✅       |
      | FLUX.2-pro                             | 1           |         ✅         |       ✅       |       ✅       |         ✅        |        ✅       |
      | grok-4-1-fast-non-reasoning            | 1           |         ✅         |       ✅       |       ✅       |         ✅        |        ✅       |
      | grok-4-1-fast-reasoning                | 1           |         ✅         |       ✅       |       ✅       |         ✅        |        ✅       |
      | grok-4-20-non-reasoning                | 1           |         ✅         |       ✅       |       ✅       |         ✅        |        ✅       |
      | grok-4-20-reasoning                    | 1           |         ✅         |       ✅       |       ✅       |         ✅        |        ✅       |
      | grok-4.3                               | 1           |         ✅         |       ✅       |       ✅       |         ✅        |        ✅       |
      | Kimi-K2.5                              | 1           |         ✅         |       ✅       |       ✅       |         ✅        |        ✅       |
      | Kimi-K2.6                              | 2026-04-20  |         ✅         |       ✅       |       ✅       |         ✅        |        ✅       |
      | Kimi-K2.7-Code                         | 2026-06-12  |         ✅         |       ✅       |       ✅       |         ✅        |        ✅       |
      | Llama-3.3-70B-Instruct                 | 1           |         ✅         |       ✅       |       ✅       |         ✅        |        ✅       |
      | Llama-3.3-70B-Instruct                 | 2           |         ✅         |       ✅       |       ✅       |         ✅        |        ✅       |
      | Llama-3.3-70B-Instruct                 | 3           |         ✅         |       ✅       |       ✅       |         ✅        |        ✅       |
      | Llama-3.3-70B-Instruct                 | 4           |         ✅         |       ✅       |       ✅       |         ✅        |        ✅       |
      | Llama-3.3-70B-Instruct                 | 5           |         ✅         |       ✅       |       ✅       |         ✅        |        ✅       |
      | Llama-3.3-70B-Instruct                 | 9           |         ✅         |       ✅       |       ✅       |         ✅        |        ✅       |
      | Llama-4-Maverick-17B-128E-Instruct-FP8 | 1           |         ✅         |       ✅       |       ✅       |         ✅        |        ✅       |
      | MAI-Image-2                            | 2026-02-20  |         -         |       -       |       -       |         -        |        ✅       |
      | MAI-Image-2.5                          | 2026-06-02  |         -         |       -       |       -       |         -        |        ✅       |
      | MAI-Image-2.5-Flash                    | 2026-06-02  |         -         |       -       |       -       |         -        |        ✅       |
      | MAI-Image-2.5-Pro                      | 2026-06-19  |         -         |       -       |       -       |         -        |        ✅       |
      | MAI-Image-2e                           | 2026-04-09  |         -         |       -       |       -       |         -        |        ✅       |
      | Mistral-Large-3                        | 1           |         ✅         |       ✅       |       ✅       |         ✅        |        ✅       |
      | mistral-medium-3-5                     | 1           |         ✅         |       ✅       |       ✅       |         ✅        |        ✅       |
      | Phi-4                                  | 2           |         ✅         |       ✅       |       ✅       |         ✅        |        ✅       |
      | Phi-4                                  | 3           |         ✅         |       ✅       |       ✅       |         ✅        |        ✅       |
      | Phi-4                                  | 4           |         ✅         |       ✅       |       ✅       |         ✅        |        ✅       |
      | Phi-4                                  | 5           |         ✅         |       ✅       |       ✅       |         ✅        |        ✅       |
      | Phi-4                                  | 6           |         ✅         |       ✅       |       ✅       |         ✅        |        ✅       |
      | Phi-4                                  | 7           |         ✅         |       ✅       |       ✅       |         ✅        |        ✅       |
      | Phi-4-mini-instruct                    | 1           |         ✅         |       ✅       |       ✅       |         ✅        |        ✅       |
      | Phi-4-mini-reasoning                   | 1           |         ✅         |       ✅       |       ✅       |         ✅        |        ✅       |
      | Phi-4-multimodal-instruct              | 1           |         ✅         |       ✅       |       ✅       |         ✅        |        ✅       |
      | Phi-4-reasoning                        | 1           |         ✅         |       ✅       |       ✅       |         ✅        |        ✅       |
    </Tab>

    <Tab title="Middle East & Africa">
      | **Model**                              | **Version** | **southafricanorth** | **uaenorth** |
      | :------------------------------------- | :---------- | :------------------: | :----------: |
      | cohere-command-a                       | 1           |           ✅          |       ✅      |
      | Cohere-command-a-plus-05-2026          | 1           |           ✅          |       ✅      |
      | Cohere-rerank-v4.0-fast                | 1           |           ✅          |       ✅      |
      | Cohere-rerank-v4.0-pro                 | 1           |           ✅          |       ✅      |
      | DeepSeek-R1                            | 1           |           ✅          |       ✅      |
      | DeepSeek-V3.2                          | 1           |           ✅          |       ✅      |
      | DeepSeek-V3.2-Speciale                 | 1           |           ✅          |       ✅      |
      | DeepSeek-V4-Flash                      | 2026-04-23  |           ✅          |       ✅      |
      | DeepSeek-V4-Pro                        | 2026-04-23  |           ✅          |       ✅      |
      | FLUX-1.1-pro                           | 1           |           ✅          |       ✅      |
      | FLUX.1-Kontext-pro                     | 1           |           ✅          |       ✅      |
      | FLUX.2-flex                            | 1           |           ✅          |       ✅      |
      | FLUX.2-pro                             | 1           |           ✅          |       ✅      |
      | grok-4-1-fast-non-reasoning            | 1           |           ✅          |       ✅      |
      | grok-4-1-fast-reasoning                | 1           |           ✅          |       ✅      |
      | grok-4-20-non-reasoning                | 1           |           ✅          |       ✅      |
      | grok-4-20-reasoning                    | 1           |           ✅          |       ✅      |
      | grok-4.3                               | 1           |           ✅          |       ✅      |
      | Kimi-K2.5                              | 1           |           ✅          |       ✅      |
      | Kimi-K2.6                              | 2026-04-20  |           ✅          |       ✅      |
      | Kimi-K2.7-Code                         | 2026-06-12  |           ✅          |       ✅      |
      | Llama-3.3-70B-Instruct                 | 1           |           ✅          |       ✅      |
      | Llama-3.3-70B-Instruct                 | 2           |           ✅          |       ✅      |
      | Llama-3.3-70B-Instruct                 | 3           |           ✅          |       ✅      |
      | Llama-3.3-70B-Instruct                 | 4           |           ✅          |       ✅      |
      | Llama-3.3-70B-Instruct                 | 5           |           ✅          |       ✅      |
      | Llama-3.3-70B-Instruct                 | 9           |           ✅          |       ✅      |
      | Llama-4-Maverick-17B-128E-Instruct-FP8 | 1           |           ✅          |       ✅      |
      | MAI-Image-2                            | 2026-02-20  |           -          |       ✅      |
      | MAI-Image-2.5                          | 2026-06-02  |           -          |       ✅      |
      | MAI-Image-2.5-Flash                    | 2026-06-02  |           -          |       ✅      |
      | MAI-Image-2.5-Pro                      | 2026-06-19  |           -          |       ✅      |
      | MAI-Image-2e                           | 2026-04-09  |           -          |       ✅      |
      | Mistral-Large-3                        | 1           |           ✅          |       ✅      |
      | mistral-medium-3-5                     | 1           |           ✅          |       ✅      |
      | Phi-4                                  | 2           |           ✅          |       ✅      |
      | Phi-4                                  | 3           |           ✅          |       ✅      |
      | Phi-4                                  | 4           |           ✅          |       ✅      |
      | Phi-4                                  | 5           |           ✅          |       ✅      |
      | Phi-4                                  | 6           |           ✅          |       ✅      |
      | Phi-4                                  | 7           |           ✅          |       ✅      |
      | Phi-4-mini-instruct                    | 1           |           ✅          |       ✅      |
      | Phi-4-mini-reasoning                   | 1           |           ✅          |       ✅      |
      | Phi-4-multimodal-instruct              | 1           |           ✅          |       ✅      |
      | Phi-4-reasoning                        | 1           |           ✅          |       ✅      |
    </Tab>
  </Tabs>

  ## Data Zone Standard

  For **Data Zone** deployments, Microsoft processes prompts and responses anywhere within the specified data zone: United States (data processed anywhere within the US), European Union (data processed within any EU member nation), or Asia Pacific (data processed within any Asia Pacific nation).

  #### Availability for Azure OpenAI in Foundry Models

  <Tabs>
    <Tab title="Americas">
      | **Model**              | **Version** | **centralus** | **eastus** | **eastus2** | **northcentralus** | **southcentralus** | **westus** | **westus3** |
      | :--------------------- | :---------- | :-----------: | :--------: | :---------: | :----------------: | :----------------: | :--------: | :---------: |
      | gpt-4.1                | 2025-04-14  |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-4.1-mini           | 2025-04-14  |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-4.1-nano           | 2025-04-14  |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-4o                 | 2024-05-13  |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-4o                 | 2024-08-06  |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-4o                 | 2024-11-20  |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-4o-mini            | 2024-07-18  |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-5                  | 2025-08-07  |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-5-mini             | 2025-08-07  |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-5-nano             | 2025-08-07  |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-5.1                | 2025-11-13  |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-5.2                | 2025-12-11  |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-5.3-codex          | 2026-02-24  |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-5.4                | 2026-03-05  |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-5.4-mini           | 2026-03-17  |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-5.4-nano           | 2026-03-17  |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-5.5                | 2026-04-24  |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-5.6-luna           | 2026-07-09  |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-5.6-sol            | 2026-07-09  |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-5.6-terra          | 2026-07-09  |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-image-1.5          | 2025-12-16  |       -       |      -     |      ✅      |          -         |          -         |      -     |      ✅      |
      | model-router           | 2025-05-19  |       -       |      -     |      ✅      |          -         |          -         |      -     |      ✅      |
      | model-router           | 2025-08-07  |       -       |      -     |      ✅      |          -         |          -         |      -     |      ✅      |
      | model-router           | 2025-11-18  |       -       |      -     |      ✅      |          -         |          -         |      -     |      ✅      |
      | o1                     | 2024-12-17  |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | o3                     | 2025-04-16  |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | o3-mini                | 2025-01-31  |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | o4-mini                | 2025-04-16  |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | text-embedding-3-large | 1           |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | text-embedding-3-small | 1           |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | text-embedding-ada-002 | 2           |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
    </Tab>

    <Tab title="Europe">
      | **Model**              | **Version** | **francecentral** | **germanywestcentral** | **italynorth** | **norwayeast** | **polandcentral** | **spaincentral** | **swedencentral** | **switzerlandnorth** | **westeurope** |
      | :--------------------- | :---------- | :---------------: | :--------------------: | :------------: | :------------: | :---------------: | :--------------: | :---------------: | :------------------: | :------------: |
      | gpt-4.1                | 2025-04-14  |         ✅         |            ✅           |        ✅       |        -       |         ✅         |         ✅        |         ✅         |           -          |        ✅       |
      | gpt-4.1-mini           | 2025-04-14  |         ✅         |            ✅           |        ✅       |        -       |         ✅         |         ✅        |         ✅         |           -          |        ✅       |
      | gpt-4.1-nano           | 2025-04-14  |         ✅         |            ✅           |        ✅       |        -       |         ✅         |         ✅        |         ✅         |           -          |        ✅       |
      | gpt-4o                 | 2024-05-13  |         ✅         |            ✅           |        -       |        -       |         ✅         |         ✅        |         ✅         |           -          |        ✅       |
      | gpt-4o                 | 2024-08-06  |         ✅         |            ✅           |        -       |        -       |         ✅         |         ✅        |         ✅         |           -          |        ✅       |
      | gpt-4o                 | 2024-11-20  |         ✅         |            ✅           |        ✅       |        -       |         ✅         |         ✅        |         ✅         |           -          |        ✅       |
      | gpt-4o-mini            | 2024-07-18  |         ✅         |            ✅           |        ✅       |        -       |         ✅         |         ✅        |         ✅         |           -          |        ✅       |
      | gpt-5                  | 2025-08-07  |         ✅         |            ✅           |        ✅       |        -       |         ✅         |         ✅        |         ✅         |           -          |        ✅       |
      | gpt-5-mini             | 2025-08-07  |         ✅         |            ✅           |        ✅       |        -       |         ✅         |         ✅        |         ✅         |           -          |        ✅       |
      | gpt-5-nano             | 2025-08-07  |         ✅         |            ✅           |        ✅       |        -       |         ✅         |         ✅        |         ✅         |           -          |        ✅       |
      | gpt-5.1                | 2025-11-13  |         ✅         |            -           |        -       |        -       |         -         |         -        |         ✅         |           -          |        -       |
      | gpt-5.4                | 2026-03-05  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |        ✅       |
      | gpt-5.5                | 2026-04-24  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |        ✅       |
      | gpt-5.6-luna           | 2026-07-09  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |        ✅       |
      | gpt-5.6-sol            | 2026-07-09  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |        ✅       |
      | gpt-5.6-terra          | 2026-07-09  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |        ✅       |
      | gpt-image-1.5          | 2025-12-16  |         -         |            -           |        -       |        -       |         ✅         |         -        |         ✅         |           -          |        -       |
      | model-router           | 2025-05-19  |         -         |            -           |        -       |        -       |         -         |         -        |         ✅         |           -          |        -       |
      | model-router           | 2025-08-07  |         -         |            -           |        -       |        -       |         -         |         -        |         ✅         |           -          |        -       |
      | model-router           | 2025-11-18  |         -         |            -           |        -       |        -       |         -         |         -        |         ✅         |           -          |        -       |
      | o1                     | 2024-12-17  |         ✅         |            ✅           |        ✅       |        -       |         ✅         |         ✅        |         ✅         |           -          |        ✅       |
      | o3                     | 2025-04-16  |         ✅         |            ✅           |        ✅       |        -       |         ✅         |         ✅        |         ✅         |           -          |        ✅       |
      | o3-mini                | 2025-01-31  |         ✅         |            ✅           |        ✅       |        -       |         ✅         |         ✅        |         ✅         |           -          |        ✅       |
      | o4-mini                | 2025-04-16  |         ✅         |            ✅           |        ✅       |        -       |         ✅         |         ✅        |         ✅         |           -          |        ✅       |
      | text-embedding-3-large | 1           |         ✅         |            ✅           |        ✅       |        -       |         ✅         |         ✅        |         ✅         |           -          |        ✅       |
      | text-embedding-3-small | 1           |         ✅         |            ✅           |        ✅       |        -       |         ✅         |         ✅        |         ✅         |           -          |        ✅       |
      | text-embedding-ada-002 | 2           |         ✅         |            ✅           |        ✅       |        -       |         ✅         |         ✅        |         ✅         |           -          |        ✅       |
    </Tab>

    <Tab title="Asia Pacific">
      | **Model**     | **Version** | **australiaeast** | **japaneast** | **koreacentral** | **southeastasia** | **southindia** |
      | :------------ | :---------- | :---------------: | :-----------: | :--------------: | :---------------: | :------------: |
      | gpt-5.2       | 2025-12-11  |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
      | gpt-5.3-codex | 2026-02-24  |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
      | gpt-5.4       | 2026-03-05  |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
      | gpt-5.4-mini  | 2026-03-17  |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
      | model-router  | 2025-05-19  |         ✅         |       -       |         -        |         -         |        ✅       |
      | model-router  | 2025-08-07  |         ✅         |       -       |         -        |         -         |        ✅       |
      | model-router  | 2025-11-18  |         ✅         |       -       |         -        |         -         |        ✅       |
    </Tab>

    <Tab title="Middle East & Africa">
      Not available
    </Tab>
  </Tabs>

  #### Availability for other Foundry Models sold by Azure

  <Tabs>
    <Tab title="Americas">
      | **Model**                   | **Version** | **centralus** | **eastus** | **eastus2** | **northcentralus** | **southcentralus** | **westcentralus** | **westus** | **westus2** | **westus3** |
      | :-------------------------- | :---------- | :-----------: | :--------: | :---------: | :----------------: | :----------------: | :---------------: | :--------: | :---------: | :---------: |
      | DeepSeek-V4-Flash           | 2026-04-23  |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |         ✅         |      ✅     |      ✅      |      ✅      |
      | DeepSeek-V4-Pro             | 2026-04-23  |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |         ✅         |      ✅     |      ✅      |      ✅      |
      | FLUX-1.1-pro                | 1           |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |         ✅         |      ✅     |      ✅      |      ✅      |
      | FLUX.1-Kontext-pro          | 1           |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |         ✅         |      ✅     |      ✅      |      ✅      |
      | FLUX.2-pro                  | 1           |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |         ✅         |      ✅     |      ✅      |      ✅      |
      | grok-4-1-fast-non-reasoning | 1           |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |         ✅         |      ✅     |      ✅      |      ✅      |
      | grok-4-1-fast-reasoning     | 1           |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |         ✅         |      ✅     |      ✅      |      ✅      |
      | grok-4-20-non-reasoning     | 1           |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |         ✅         |      ✅     |      ✅      |      ✅      |
      | grok-4-20-reasoning         | 1           |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |         ✅         |      ✅     |      ✅      |      ✅      |
      | grok-4.3                    | 1           |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |         ✅         |      ✅     |      ✅      |      ✅      |
      | Mistral-Large-3             | 1           |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |         ✅         |      ✅     |      ✅      |      ✅      |
      | mistral-medium-3-5          | 1           |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |         ✅         |      ✅     |      ✅      |      ✅      |
    </Tab>

    <Tab title="Europe">
      | **Model**               | **Version** | **francecentral** | **germanywestcentral** | **italynorth** | **polandcentral** | **spaincentral** | **swedencentral** | **westeurope** |
      | :---------------------- | :---------- | :---------------: | :--------------------: | :------------: | :---------------: | :--------------: | :---------------: | :------------: |
      | Cohere-rerank-v4.0-fast | 1           |         ✅         |            ✅           |        ✅       |         ✅         |         ✅        |         ✅         |        ✅       |
      | Cohere-rerank-v4.0-pro  | 1           |         ✅         |            ✅           |        ✅       |         ✅         |         ✅        |         ✅         |        ✅       |
      | FLUX-1.1-pro            | 1           |         ✅         |            ✅           |        ✅       |         ✅         |         ✅        |         ✅         |        ✅       |
      | FLUX.1-Kontext-pro      | 1           |         ✅         |            ✅           |        ✅       |         ✅         |         ✅        |         ✅         |        ✅       |
      | FLUX.2-pro              | 1           |         ✅         |            ✅           |        ✅       |         ✅         |         ✅        |         ✅         |        ✅       |
      | Mistral-Large-3         | 1           |         ✅         |            ✅           |        ✅       |         ✅         |         ✅        |         ✅         |        ✅       |
      | mistral-medium-3-5      | 1           |         ✅         |            ✅           |        ✅       |         ✅         |         ✅        |         ✅         |        ✅       |
    </Tab>

    <Tab title="Asia Pacific">
      Not available
    </Tab>

    <Tab title="Middle East & Africa">
      Not available
    </Tab>
  </Tabs>

  ## Standard/Regional

  For **Standard/Regional** deployments, Azure OpenAI processes prompts and responses in the region associated with your deployment.

  #### Availability for Azure OpenAI in Foundry Models

  <Tabs>
    <Tab title="Americas">
      | **Model**              | **Version** | **brazilsouth** | **canadaeast** | **centralus** | **eastus** | **eastus2** | **northcentralus** | **southcentralus** | **westus** | **westus3** |
      | :--------------------- | :---------- | :-------------: | :------------: | :-----------: | :--------: | :---------: | :----------------: | :----------------: | :--------: | :---------: |
      | gpt-4.1                | 2025-04-14  |        -        |        -       |       -       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-4.1-mini           | 2025-04-14  |        -        |        ✅       |       -       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-4o                 | 2024-05-13  |        -        |        -       |       -       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-4o                 | 2024-08-06  |        -        |        -       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-4o                 | 2024-11-20  |        -        |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-4o-mini            | 2024-07-18  |        -        |        -       |       -       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-5.1                | 2025-11-13  |        -        |        -       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | o1                     | 2024-12-17  |        -        |        -       |       -       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | o4-mini                | 2025-04-16  |        -        |        -       |       -       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | text-embedding-3-large | 1           |        -        |        ✅       |       -       |      ✅     |      ✅      |          -         |          -         |      -     |      ✅      |
      | text-embedding-3-small | 1           |        -        |        ✅       |       -       |      ✅     |      ✅      |          -         |          -         |      ✅     |      -      |
      | text-embedding-ada-002 | 1           |        -        |        -       |       -       |      ✅     |      -      |          -         |          ✅         |      -     |      -      |
      | text-embedding-ada-002 | 2           |        ✅        |        ✅       |       -       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | tts                    | 001         |        -        |        -       |       -       |      -     |      -      |          ✅         |          -         |      -     |      ✅      |
      | tts-hd                 | 001         |        -        |        -       |       -       |      -     |      -      |          ✅         |          -         |      -     |      ✅      |
      | whisper                | 001         |        -        |        -       |       -       |      -     |      ✅      |          ✅         |          -         |      -     |      -      |
    </Tab>

    <Tab title="Europe">
      | **Model**              | **Version** | **francecentral** | **germanywestcentral** | **norwayeast** | **polandcentral** | **spaincentral** | **swedencentral** | **switzerlandnorth** | **uksouth** | **westeurope** |
      | :--------------------- | :---------- | :---------------: | :--------------------: | :------------: | :---------------: | :--------------: | :---------------: | :------------------: | :---------: | :------------: |
      | gpt-4.1                | 2025-04-14  |         -         |            -           |        -       |         -         |         -        |         ✅         |           ✅          |      -      |        -       |
      | gpt-4.1-mini           | 2025-04-14  |         ✅         |            -           |        -       |         -         |         -        |         ✅         |           ✅          |      ✅      |        ✅       |
      | gpt-4o                 | 2024-05-13  |         -         |            -           |        -       |         -         |         -        |         ✅         |           -          |      -      |        -       |
      | gpt-4o                 | 2024-08-06  |         -         |            -           |        -       |         -         |         -        |         ✅         |           -          |      -      |        -       |
      | gpt-4o                 | 2024-11-20  |         ✅         |            -           |        ✅       |         -         |         -        |         ✅         |           ✅          |      ✅      |        -       |
      | gpt-4o-mini            | 2024-07-18  |         -         |            -           |        -       |         -         |         -        |         ✅         |           -          |      -      |        -       |
      | gpt-5.1                | 2025-11-13  |         -         |            -           |        -       |         -         |         -        |         ✅         |           -          |      -      |        -       |
      | o1                     | 2024-12-17  |         -         |            -           |        -       |         -         |         -        |         ✅         |           -          |      -      |        -       |
      | o4-mini                | 2025-04-16  |         -         |            -           |        -       |         -         |         -        |         ✅         |           -          |      -      |        -       |
      | text-embedding-3-large | 1           |         ✅         |            ✅           |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |      ✅      |        -       |
      | text-embedding-3-small | 1           |         -         |            -           |        -       |         -         |         -        |         -         |           ✅          |      -      |        -       |
      | text-embedding-ada-002 | 2           |         ✅         |            -           |        ✅       |         -         |         -        |         ✅         |           ✅          |      ✅      |        ✅       |
      | tts                    | 001         |         -         |            -           |        -       |         -         |         -        |         ✅         |           -          |      -      |        -       |
      | tts-hd                 | 001         |         -         |            -           |        -       |         -         |         -        |         ✅         |           -          |      -      |        -       |
      | whisper                | 001         |         -         |            -           |        ✅       |         -         |         -        |         ✅         |           ✅          |      -      |        ✅       |
    </Tab>

    <Tab title="Asia Pacific">
      | **Model**              | **Version** | **australiaeast** | **japaneast** | **koreacentral** | **southeastasia** | **southindia** |
      | :--------------------- | :---------- | :---------------: | :-----------: | :--------------: | :---------------: | :------------: |
      | gpt-4.1-mini           | 2025-04-14  |         ✅         |       ✅       |         -        |         -         |        ✅       |
      | gpt-4o                 | 2024-11-20  |         ✅         |       ✅       |         -        |         -         |        ✅       |
      | text-embedding-3-large | 1           |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
      | text-embedding-3-small | 1           |         ✅         |       ✅       |         -        |         -         |        -       |
      | text-embedding-ada-002 | 2           |         ✅         |       ✅       |         -        |         -         |        ✅       |
      | whisper                | 001         |         -         |       -       |         -        |         -         |        ✅       |
    </Tab>

    <Tab title="Middle East & Africa">
      | **Model**              | **Version** | **southafricanorth** | **uaenorth** |
      | :--------------------- | :---------- | :------------------: | :----------: |
      | text-embedding-3-large | 1           |           ✅          |       ✅      |
      | text-embedding-3-small | 1           |           -          |       ✅      |
      | text-embedding-ada-002 | 2           |           ✅          |       ✅      |
      | whisper                | 001         |           -          |       ✅      |
    </Tab>
  </Tabs>

  #### Availability for other Foundry Models sold by Azure

  <Tabs>
    <Tab title="Americas">
      Not available
    </Tab>

    <Tab title="Europe">
      Not available
    </Tab>

    <Tab title="Asia Pacific">
      Not available
    </Tab>

    <Tab title="Middle East & Africa">
      Not available
    </Tab>
  </Tabs>
</ZoneContent>

<ZoneContent group="batch__provisioned__standard" value="provisioned" options={[{"id": "standard", "title": "Standard deployment options"}, {"id": "provisioned", "title": "Provisioned deployment options"}, {"id": "batch", "title": "Batch deployment options"}]} values={["standard", "provisioned", "batch"]} defaultValue="standard">
  ## Global Provisioned Managed

  For **Global deployments**, prompts and responses can be processed in any Azure region where the model is deployed.

  #### Availability for Azure OpenAI in Foundry Models

  <Tabs>
    <Tab title="Americas">
      | **Model**     | **Version** | **brazilsouth** | **canadacentral** | **canadaeast** | **centralus** | **eastus** | **eastus2** | **northcentralus** | **southcentralus** | **westus** | **westus3** |
      | :------------ | :---------- | :-------------: | :---------------: | :------------: | :-----------: | :--------: | :---------: | :----------------: | :----------------: | :--------: | :---------: |
      | gpt-4.1       | 2025-04-14  |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-4.1-mini  | 2025-04-14  |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-4.1-nano  | 2025-04-14  |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-4o        | 2024-05-13  |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-4o        | 2024-08-06  |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-4o        | 2024-11-20  |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-4o-mini   | 2024-07-18  |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-5         | 2025-08-07  |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-5-mini    | 2025-08-07  |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-5.1       | 2025-11-13  |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-5.1-codex | 2025-11-13  |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-5.2       | 2025-12-11  |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-5.2-codex | 2026-01-14  |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-5.3-codex | 2026-02-24  |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-5.4       | 2026-03-05  |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-5.4-mini  | 2026-03-17  |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-5.5       | 2026-04-24  |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-5.6-sol   | 2026-07-09  |        -        |         -         |        ✅       |       ✅       |      -     |      -      |          -         |          ✅         |      ✅     |      ✅      |
      | gpt-5.6-terra | 2026-07-09  |        ✅        |         ✅         |        -       |       -       |      ✅     |      ✅      |          ✅         |          -         |      -     |      -      |
      | o1            | 2024-12-17  |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | o3            | 2025-04-16  |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | o3-mini       | 2025-01-31  |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | o4-mini       | 2025-04-16  |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
    </Tab>

    <Tab title="Europe">
      | **Model**     | **Version** | **francecentral** | **germanywestcentral** | **italynorth** | **norwayeast** | **polandcentral** | **spaincentral** | **swedencentral** | **switzerlandnorth** | **switzerlandwest** | **uksouth** | **westeurope** |
      | :------------ | :---------- | :---------------: | :--------------------: | :------------: | :------------: | :---------------: | :--------------: | :---------------: | :------------------: | :-----------------: | :---------: | :------------: |
      | gpt-4.1       | 2025-04-14  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |        ✅       |
      | gpt-4.1-mini  | 2025-04-14  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |        ✅       |
      | gpt-4.1-nano  | 2025-04-14  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |        ✅       |
      | gpt-4o        | 2024-05-13  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |        ✅       |
      | gpt-4o        | 2024-08-06  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |        ✅       |
      | gpt-4o        | 2024-11-20  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |        ✅       |
      | gpt-4o-mini   | 2024-07-18  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |        ✅       |
      | gpt-5         | 2025-08-07  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |        ✅       |
      | gpt-5-mini    | 2025-08-07  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |        ✅       |
      | gpt-5.1       | 2025-11-13  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |        ✅       |
      | gpt-5.1-codex | 2025-11-13  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |        ✅       |
      | gpt-5.2       | 2025-12-11  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |        ✅       |
      | gpt-5.2-codex | 2026-01-14  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |        ✅       |
      | gpt-5.3-codex | 2026-02-24  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |        ✅       |
      | gpt-5.4       | 2026-03-05  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |        ✅       |
      | gpt-5.4-mini  | 2026-03-17  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |        ✅       |
      | gpt-5.5       | 2026-04-24  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |        ✅       |
      | gpt-5.6-sol   | 2026-07-09  |         -         |            -           |        -       |        ✅       |         -         |         -        |         ✅         |           ✅          |          -          |      ✅      |        ✅       |
      | gpt-5.6-terra | 2026-07-09  |         ✅         |            ✅           |        ✅       |        -       |         ✅         |         ✅        |         -         |           -          |          ✅          |      -      |        -       |
      | o1            | 2024-12-17  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |        ✅       |
      | o3            | 2025-04-16  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |        ✅       |
      | o3-mini       | 2025-01-31  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |        ✅       |
      | o4-mini       | 2025-04-16  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |        ✅       |
    </Tab>

    <Tab title="Asia Pacific">
      | **Model**     | **Version** | **australiaeast** | **japaneast** | **koreacentral** | **southeastasia** | **southindia** |
      | :------------ | :---------- | :---------------: | :-----------: | :--------------: | :---------------: | :------------: |
      | gpt-4.1       | 2025-04-14  |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
      | gpt-4.1-mini  | 2025-04-14  |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
      | gpt-4.1-nano  | 2025-04-14  |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
      | gpt-4o        | 2024-05-13  |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
      | gpt-4o        | 2024-08-06  |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
      | gpt-4o        | 2024-11-20  |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
      | gpt-4o-mini   | 2024-07-18  |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
      | gpt-5         | 2025-08-07  |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
      | gpt-5-mini    | 2025-08-07  |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
      | gpt-5.1       | 2025-11-13  |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
      | gpt-5.1-codex | 2025-11-13  |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
      | gpt-5.2       | 2025-12-11  |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
      | gpt-5.2-codex | 2026-01-14  |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
      | gpt-5.3-codex | 2026-02-24  |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
      | gpt-5.4       | 2026-03-05  |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
      | gpt-5.4-mini  | 2026-03-17  |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
      | gpt-5.5       | 2026-04-24  |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
      | gpt-5.6-sol   | 2026-07-09  |         ✅         |       -       |         -        |         -         |        ✅       |
      | gpt-5.6-terra | 2026-07-09  |         -         |       ✅       |         ✅        |         ✅         |        -       |
      | o1            | 2024-12-17  |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
      | o3            | 2025-04-16  |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
      | o3-mini       | 2025-01-31  |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
      | o4-mini       | 2025-04-16  |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
    </Tab>

    <Tab title="Middle East & Africa">
      | **Model**     | **Version** | **southafricanorth** | **uaenorth** |
      | :------------ | :---------- | :------------------: | :----------: |
      | gpt-4.1       | 2025-04-14  |           ✅          |       ✅      |
      | gpt-4.1-mini  | 2025-04-14  |           ✅          |       ✅      |
      | gpt-4.1-nano  | 2025-04-14  |           ✅          |       ✅      |
      | gpt-4o        | 2024-05-13  |           ✅          |       ✅      |
      | gpt-4o        | 2024-08-06  |           ✅          |       ✅      |
      | gpt-4o        | 2024-11-20  |           ✅          |       ✅      |
      | gpt-4o-mini   | 2024-07-18  |           ✅          |       ✅      |
      | gpt-5         | 2025-08-07  |           ✅          |       ✅      |
      | gpt-5-mini    | 2025-08-07  |           ✅          |       ✅      |
      | gpt-5.1       | 2025-11-13  |           ✅          |       ✅      |
      | gpt-5.1-codex | 2025-11-13  |           ✅          |       ✅      |
      | gpt-5.2       | 2025-12-11  |           ✅          |       ✅      |
      | gpt-5.2-codex | 2026-01-14  |           ✅          |       ✅      |
      | gpt-5.3-codex | 2026-02-24  |           ✅          |       ✅      |
      | gpt-5.4       | 2026-03-05  |           ✅          |       ✅      |
      | gpt-5.4-mini  | 2026-03-17  |           ✅          |       ✅      |
      | gpt-5.5       | 2026-04-24  |           ✅          |       ✅      |
      | gpt-5.6-sol   | 2026-07-09  |           -          |       ✅      |
      | gpt-5.6-terra | 2026-07-09  |           ✅          |       -      |
      | o1            | 2024-12-17  |           ✅          |       ✅      |
      | o3            | 2025-04-16  |           ✅          |       ✅      |
      | o3-mini       | 2025-01-31  |           ✅          |       ✅      |
      | o4-mini       | 2025-04-16  |           ✅          |       ✅      |
    </Tab>
  </Tabs>

  #### Availability for other Foundry Models sold by Azure

  <Tabs>
    <Tab title="Americas">
      | **Model**              | **Version** | **brazilsouth** | **canadacentral** | **canadaeast** | **centralus** | **eastus** | **eastus2** | **northcentralus** | **southcentralus** | **westcentralus** | **westus** | **westus2** | **westus3** |
      | :--------------------- | :---------- | :-------------: | :---------------: | :------------: | :-----------: | :--------: | :---------: | :----------------: | :----------------: | :---------------: | :--------: | :---------: | :---------: |
      | DeepSeek-R1            | 1           |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |         ✅         |      ✅     |      ✅      |      ✅      |
      | DeepSeek-R1-0528       | 1           |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |         -         |      ✅     |      ✅      |      ✅      |
      | DeepSeek-V3-0324       | 1           |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |         -         |      ✅     |      ✅      |      ✅      |
      | DeepSeek-V3.2          | 1           |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |         ✅         |      ✅     |      ✅      |      ✅      |
      | Llama-3.3-70B-Instruct | 9           |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |         ✅         |      ✅     |      ✅      |      ✅      |
    </Tab>

    <Tab title="Europe">
      | **Model**              | **Version** | **francecentral** | **germanywestcentral** | **italynorth** | **norwayeast** | **polandcentral** | **spaincentral** | **swedencentral** | **switzerlandnorth** | **switzerlandwest** | **uksouth** | **ukwest** | **westeurope** |
      | :--------------------- | :---------- | :---------------: | :--------------------: | :------------: | :------------: | :---------------: | :--------------: | :---------------: | :------------------: | :-----------------: | :---------: | :--------: | :------------: |
      | DeepSeek-R1            | 1           |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |      ✅     |        ✅       |
      | DeepSeek-R1-0528       | 1           |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |      ✅     |        ✅       |
      | DeepSeek-V3-0324       | 1           |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |      ✅     |        ✅       |
      | DeepSeek-V3.2          | 1           |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |      ✅     |        ✅       |
      | Llama-3.3-70B-Instruct | 9           |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |      ✅     |        ✅       |
    </Tab>

    <Tab title="Asia Pacific">
      | **Model**              | **Version** | **australiaeast** | **japaneast** | **japanwest** | **koreacentral** | **southindia** |
      | :--------------------- | :---------- | :---------------: | :-----------: | :-----------: | :--------------: | :------------: |
      | DeepSeek-R1            | 1           |         ✅         |       ✅       |       ✅       |         ✅        |        ✅       |
      | DeepSeek-R1-0528       | 1           |         ✅         |       ✅       |       ✅       |         ✅        |        ✅       |
      | DeepSeek-V3-0324       | 1           |         ✅         |       ✅       |       ✅       |         ✅        |        ✅       |
      | DeepSeek-V3.2          | 1           |         ✅         |       ✅       |       ✅       |         ✅        |        ✅       |
      | Llama-3.3-70B-Instruct | 9           |         ✅         |       ✅       |       ✅       |         ✅        |        ✅       |
    </Tab>

    <Tab title="Middle East & Africa">
      | **Model**              | **Version** | **southafricanorth** | **uaenorth** |
      | :--------------------- | :---------- | :------------------: | :----------: |
      | DeepSeek-R1            | 1           |           ✅          |       ✅      |
      | DeepSeek-R1-0528       | 1           |           ✅          |       ✅      |
      | DeepSeek-V3-0324       | 1           |           ✅          |       ✅      |
      | DeepSeek-V3.2          | 1           |           ✅          |       ✅      |
      | Llama-3.3-70B-Instruct | 9           |           ✅          |       ✅      |
    </Tab>
  </Tabs>

  ## Data Zone Provisioned Managed

  For **Data Zone** deployments, prompts and responses are processed anywhere within the Microsoft-specified data zone: United States (data processed anywhere within the US) or European Union (data processed within any EU member nation).

  #### Availability for Azure OpenAI in Foundry Models

  <Tabs>
    <Tab title="Americas">
      | **Model**     | **Version** | **centralus** | **eastus** | **eastus2** | **northcentralus** | **southcentralus** | **westus** | **westus3** |
      | :------------ | :---------- | :-----------: | :--------: | :---------: | :----------------: | :----------------: | :--------: | :---------: |
      | gpt-4.1       | 2025-04-14  |       -       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-4.1-mini  | 2025-04-14  |       -       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-4.1-nano  | 2025-04-14  |       -       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-4o        | 2024-05-13  |       -       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-4o        | 2024-08-06  |       -       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-4o        | 2024-11-20  |       -       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-4o-mini   | 2024-07-18  |       -       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-5         | 2025-08-07  |       -       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-5-mini    | 2025-08-07  |       -       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-5.1       | 2025-11-13  |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-5.1-codex | 2025-11-13  |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-5.2       | 2025-12-11  |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-5.4       | 2026-03-05  |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-5.4-mini  | 2026-03-17  |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-5.5       | 2026-04-24  |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | o1            | 2024-12-17  |       -       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | o3            | 2025-04-16  |       -       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | o3-mini       | 2025-01-31  |       -       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | o4-mini       | 2025-04-16  |       -       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
    </Tab>

    <Tab title="Europe">
      | **Model**     | **Version** | **francecentral** | **germanywestcentral** | **italynorth** | **norwayeast** | **polandcentral** | **spaincentral** | **swedencentral** | **switzerlandnorth** | **westeurope** |
      | :------------ | :---------- | :---------------: | :--------------------: | :------------: | :------------: | :---------------: | :--------------: | :---------------: | :------------------: | :------------: |
      | gpt-4.1       | 2025-04-14  |         ✅         |            ✅           |        ✅       |        -       |         ✅         |         ✅        |         ✅         |           -          |        ✅       |
      | gpt-4.1-mini  | 2025-04-14  |         ✅         |            ✅           |        -       |        -       |         ✅         |         ✅        |         ✅         |           -          |        ✅       |
      | gpt-4.1-nano  | 2025-04-14  |         ✅         |            ✅           |        ✅       |        -       |         ✅         |         ✅        |         ✅         |           -          |        ✅       |
      | gpt-4o        | 2024-05-13  |         ✅         |            ✅           |        -       |        -       |         ✅         |         ✅        |         ✅         |           -          |        ✅       |
      | gpt-4o        | 2024-08-06  |         ✅         |            ✅           |        -       |        -       |         ✅         |         ✅        |         ✅         |           -          |        ✅       |
      | gpt-4o        | 2024-11-20  |         ✅         |            ✅           |        -       |        -       |         ✅         |         ✅        |         ✅         |           -          |        ✅       |
      | gpt-4o-mini   | 2024-07-18  |         ✅         |            ✅           |        -       |        -       |         ✅         |         ✅        |         ✅         |           -          |        ✅       |
      | gpt-5         | 2025-08-07  |         ✅         |            ✅           |        ✅       |        -       |         ✅         |         ✅        |         ✅         |           -          |        ✅       |
      | gpt-5-mini    | 2025-08-07  |         ✅         |            ✅           |        ✅       |        -       |         ✅         |         ✅        |         ✅         |           -          |        ✅       |
      | gpt-5.1       | 2025-11-13  |         ✅         |            ✅           |        ✅       |        -       |         ✅         |         ✅        |         ✅         |           -          |        ✅       |
      | gpt-5.1-codex | 2025-11-13  |         ✅         |            ✅           |        ✅       |        -       |         ✅         |         ✅        |         ✅         |           -          |        ✅       |
      | gpt-5.2       | 2025-12-11  |         ✅         |            ✅           |        ✅       |        -       |         ✅         |         ✅        |         ✅         |           -          |        ✅       |
      | gpt-5.4       | 2026-03-05  |         ✅         |            ✅           |        ✅       |        -       |         ✅         |         ✅        |         ✅         |           -          |        ✅       |
      | gpt-5.4-mini  | 2026-03-17  |         ✅         |            ✅           |        ✅       |        -       |         ✅         |         ✅        |         ✅         |           -          |        ✅       |
      | gpt-5.5       | 2026-04-24  |         ✅         |            ✅           |        ✅       |        -       |         ✅         |         ✅        |         ✅         |           -          |        ✅       |
      | gpt-5.6-sol   | 2026-07-09  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |        ✅       |
      | gpt-5.6-terra | 2026-07-09  |         ✅         |            ✅           |        ✅       |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |        ✅       |
      | o1            | 2024-12-17  |         ✅         |            ✅           |        -       |        -       |         ✅         |         ✅        |         ✅         |           -          |        ✅       |
      | o3            | 2025-04-16  |         ✅         |            ✅           |        ✅       |        -       |         ✅         |         ✅        |         ✅         |           -          |        ✅       |
      | o3-mini       | 2025-01-31  |         ✅         |            ✅           |        -       |        -       |         ✅         |         ✅        |         ✅         |           -          |        ✅       |
      | o4-mini       | 2025-04-16  |         ✅         |            ✅           |        ✅       |        -       |         ✅         |         ✅        |         ✅         |           -          |        ✅       |
    </Tab>

    <Tab title="Asia Pacific">
      Not available
    </Tab>

    <Tab title="Middle East & Africa">
      Not available
    </Tab>
  </Tabs>

  #### Availability for other Foundry Models sold by Azure

  <Tabs>
    <Tab title="Americas">
      | **Model**              | **Version** | **eastus** | **eastus2** | **northcentralus** | **southcentralus** | **westus** | **westus3** |
      | :--------------------- | :---------- | :--------: | :---------: | :----------------: | :----------------: | :--------: | :---------: |
      | DeepSeek-V3.2          | 1           |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | Llama-3.3-70B-Instruct | 9           |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
    </Tab>

    <Tab title="Europe">
      | **Model**              | **Version** | **francecentral** | **germanywestcentral** | **italynorth** | **polandcentral** | **spaincentral** | **swedencentral** | **westeurope** |
      | :--------------------- | :---------- | :---------------: | :--------------------: | :------------: | :---------------: | :--------------: | :---------------: | :------------: |
      | DeepSeek-V3.2          | 1           |         ✅         |            ✅           |        ✅       |         ✅         |         ✅        |         ✅         |        ✅       |
      | Llama-3.3-70B-Instruct | 9           |         ✅         |            ✅           |        ✅       |         ✅         |         ✅        |         ✅         |        ✅       |
    </Tab>

    <Tab title="Asia Pacific">
      Not available
    </Tab>

    <Tab title="Middle East & Africa">
      Not available
    </Tab>
  </Tabs>

  ## Regional Provisioned Managed

  For **Standard/Regional** deployments, prompts and responses are processed in the region associated with your deployment.

  #### Availability for Azure OpenAI in Foundry Models

  <Tabs>
    <Tab title="Americas">
      | **Model**    | **Version** | **brazilsouth** | **canadacentral** | **canadaeast** | **centralus** | **eastus** | **eastus2** | **northcentralus** | **southcentralus** | **westus** | **westus3** |
      | :----------- | :---------- | :-------------: | :---------------: | :------------: | :-----------: | :--------: | :---------: | :----------------: | :----------------: | :--------: | :---------: |
      | gpt-4.1      | 2025-04-14  |        ✅        |         ✅         |        -       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-4.1-mini | 2025-04-14  |        ✅        |         -         |        -       |       -       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-4.1-nano | 2025-04-14  |        -        |         -         |        -       |       -       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-4o       | 2024-05-13  |        ✅        |         ✅         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-4o       | 2024-08-06  |        ✅        |         -         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-4o       | 2024-11-20  |        ✅        |         -         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          -         |      ✅     |      ✅      |
      | gpt-4o-mini  | 2024-07-18  |        ✅        |         ✅         |        ✅       |       -       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-5        | 2025-08-07  |        -        |         -         |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-5-mini   | 2025-08-07  |        -        |         -         |        ✅       |       -       |      -     |      ✅      |          -         |          -         |      -     |      ✅      |
      | gpt-5.1      | 2025-11-13  |        -        |         -         |        ✅       |       -       |      ✅     |      ✅      |          -         |          -         |      -     |      ✅      |
      | gpt-5.2      | 2025-12-11  |        -        |         ✅         |        ✅       |       -       |      -     |      -      |          -         |          -         |      ✅     |      ✅      |
      | gpt-5.4      | 2026-03-05  |        -        |         -         |        -       |       ✅       |      -     |      -      |          -         |          -         |      -     |      -      |
      | gpt-5.4-mini | 2026-03-17  |        -        |         -         |        -       |       -       |      -     |      -      |          -         |          -         |      -     |      ✅      |
      | gpt-5.5      | 2026-04-24  |        -        |         -         |        -       |       -       |      ✅     |      -      |          -         |          -         |      -     |      -      |
      | o1           | 2024-12-17  |        -        |         -         |        -       |       -       |      -     |      -      |          -         |          -         |      -     |      ✅      |
      | o3           | 2025-04-16  |        -        |         -         |        -       |       -       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | o3-mini      | 2025-01-31  |        -        |         -         |        ✅       |       -       |      -     |      ✅      |          -         |          ✅         |      -     |      -      |
      | o4-mini      | 2025-04-16  |        -        |         -         |        -       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
    </Tab>

    <Tab title="Europe">
      | **Model**     | **Version** | **francecentral** | **germanywestcentral** | **norwayeast** | **polandcentral** | **spaincentral** | **swedencentral** | **switzerlandnorth** | **switzerlandwest** | **uksouth** | **westeurope** |
      | :------------ | :---------- | :---------------: | :--------------------: | :------------: | :---------------: | :--------------: | :---------------: | :------------------: | :-----------------: | :---------: | :------------: |
      | gpt-4.1       | 2025-04-14  |         -         |            ✅           |        -       |         -         |         -        |         ✅         |           ✅          |          -          |      ✅      |        -       |
      | gpt-4.1-mini  | 2025-04-14  |         -         |            -           |        -       |         -         |         -        |         ✅         |           ✅          |          -          |      ✅      |        -       |
      | gpt-4.1-nano  | 2025-04-14  |         -         |            -           |        -       |         -         |         -        |         ✅         |           -          |          -          |      -      |        -       |
      | gpt-4o        | 2024-05-13  |         ✅         |            ✅           |        ✅       |         ✅         |         ✅        |         ✅         |           ✅          |          -          |      ✅      |        -       |
      | gpt-4o        | 2024-08-06  |         ✅         |            ✅           |        ✅       |         -         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |        -       |
      | gpt-4o        | 2024-11-20  |         -         |            ✅           |        -       |         ✅         |         -        |         ✅         |           ✅          |          -          |      ✅      |        ✅       |
      | gpt-4o-mini   | 2024-07-18  |         ✅         |            -           |        ✅       |         -         |         ✅        |         ✅         |           ✅          |          ✅          |      ✅      |        -       |
      | gpt-5         | 2025-08-07  |         -         |            -           |        -       |         -         |         -        |         -         |           -          |          -          |      ✅      |        -       |
      | gpt-5-mini    | 2025-08-07  |         -         |            -           |        -       |         -         |         -        |         ✅         |           -          |          -          |      ✅      |        -       |
      | gpt-5.1       | 2025-11-13  |         -         |            -           |        -       |         -         |         -        |         ✅         |           ✅          |          -          |      ✅      |        -       |
      | gpt-5.2       | 2025-12-11  |         -         |            -           |        -       |         -         |         -        |         ✅         |           -          |          -          |      ✅      |        -       |
      | gpt-5.3-codex | 2026-02-24  |         -         |            -           |        -       |         -         |         -        |         -         |           -          |          -          |      ✅      |        -       |
      | gpt-5.4       | 2026-03-05  |         -         |            -           |        -       |         -         |         -        |         ✅         |           -          |          -          |      ✅      |        -       |
      | gpt-5.4-mini  | 2026-03-17  |         -         |            -           |        -       |         -         |         -        |         ✅         |           -          |          -          |      ✅      |        -       |
      | o1            | 2024-12-17  |         -         |            -           |        -       |         -         |         -        |         -         |           -          |          -          |      ✅      |        -       |
      | o3            | 2025-04-16  |         -         |            -           |        -       |         -         |         -        |         -         |           -          |          -          |      -      |        ✅       |
      | o3-mini       | 2025-01-31  |         -         |            -           |        -       |         -         |         -        |         ✅         |           ✅          |          -          |      -      |        -       |
      | o4-mini       | 2025-04-16  |         -         |            -           |        -       |         -         |         -        |         -         |           -          |          -          |      -      |        ✅       |
    </Tab>

    <Tab title="Asia Pacific">
      | **Model**    | **Version** | **australiaeast** | **japaneast** | **koreacentral** | **southeastasia** | **southindia** |
      | :----------- | :---------- | :---------------: | :-----------: | :--------------: | :---------------: | :------------: |
      | gpt-4.1      | 2025-04-14  |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
      | gpt-4.1-mini | 2025-04-14  |         ✅         |       ✅       |         ✅        |         -         |        ✅       |
      | gpt-4o       | 2024-05-13  |         ✅         |       ✅       |         ✅        |         -         |        ✅       |
      | gpt-4o       | 2024-08-06  |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
      | gpt-4o       | 2024-11-20  |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
      | gpt-4o-mini  | 2024-07-18  |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
      | gpt-5        | 2025-08-07  |         ✅         |       ✅       |         ✅        |         -         |        ✅       |
      | gpt-5-mini   | 2025-08-07  |         ✅         |       ✅       |         ✅        |         -         |        ✅       |
      | gpt-5.1      | 2025-11-13  |         ✅         |       ✅       |         -        |         -         |        ✅       |
      | gpt-5.2      | 2025-12-11  |         ✅         |       ✅       |         ✅        |         -         |        -       |
      | gpt-5.4      | 2026-03-05  |         ✅         |       ✅       |         ✅        |         -         |        -       |
      | gpt-5.4-mini | 2026-03-17  |         ✅         |       ✅       |         ✅        |         ✅         |        ✅       |
      | o1           | 2024-12-17  |         -         |       ✅       |         -        |         -         |        -       |
      | o3           | 2025-04-16  |         ✅         |       -       |         -        |         -         |        -       |
      | o3-mini      | 2025-01-31  |         ✅         |       ✅       |         ✅        |         -         |        ✅       |
      | o4-mini      | 2025-04-16  |         -         |       ✅       |         -        |         -         |        -       |
    </Tab>

    <Tab title="Middle East & Africa">
      | **Model**  | **Version** | **southafricanorth** | **uaenorth** |
      | :--------- | :---------- | :------------------: | :----------: |
      | gpt-4.1    | 2025-04-14  |           -          |       ✅      |
      | gpt-4o     | 2024-05-13  |           ✅          |       ✅      |
      | gpt-4o     | 2024-08-06  |           -          |       ✅      |
      | gpt-4o     | 2024-11-20  |           -          |       ✅      |
      | gpt-5-mini | 2025-08-07  |           -          |       ✅      |
      | gpt-5.1    | 2025-11-13  |           -          |       ✅      |
      | o1         | 2024-12-17  |           -          |       ✅      |
      | o3-mini    | 2025-01-31  |           -          |       ✅      |
      | o4-mini    | 2025-04-16  |           -          |       ✅      |
    </Tab>
  </Tabs>

  #### Availability for other Foundry Models sold by Azure

  <Tabs>
    <Tab title="Americas">
      Not available
    </Tab>

    <Tab title="Europe">
      Not available
    </Tab>

    <Tab title="Asia Pacific">
      Not available
    </Tab>

    <Tab title="Middle East & Africa">
      Not available
    </Tab>
  </Tabs>
</ZoneContent>

<ZoneContent group="batch__provisioned__standard" value="batch" options={[{"id": "standard", "title": "Standard deployment options"}, {"id": "provisioned", "title": "Provisioned deployment options"}, {"id": "batch", "title": "Batch deployment options"}]} values={["standard", "provisioned", "batch"]} defaultValue="standard">
  ## Global Batch

  For **Global deployments**, prompts and responses can be processed in any Azure region where the model is deployed.

  #### Availability for Azure OpenAI in Foundry Models

  <Tabs>
    <Tab title="Americas">
      | **Model**    | **Version** | **brazilsouth** | **canadaeast** | **centralus** | **eastus** | **eastus2** | **northcentralus** | **southcentralus** | **westus** | **westus3** |
      | :----------- | :---------- | :-------------: | :------------: | :-----------: | :--------: | :---------: | :----------------: | :----------------: | :--------: | :---------: |
      | gpt-4.1      | 2025-04-14  |        ✅        |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-4.1-mini | 2025-04-14  |        ✅        |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-4.1-nano | 2025-04-14  |        ✅        |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-4o       | 2024-05-13  |        ✅        |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-4o       | 2024-08-06  |        ✅        |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-4o       | 2024-11-20  |        ✅        |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-4o-mini  | 2024-07-18  |        ✅        |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-5        | 2025-08-07  |        ✅        |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-5.1      | 2025-11-13  |        ✅        |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | o3           | 2025-04-16  |        ✅        |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | o3-mini      | 2025-01-31  |        ✅        |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | o4-mini      | 2025-04-16  |        ✅        |        ✅       |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
    </Tab>

    <Tab title="Europe">
      | **Model**    | **Version** | **francecentral** | **germanywestcentral** | **norwayeast** | **polandcentral** | **swedencentral** | **switzerlandnorth** | **uksouth** | **westeurope** |
      | :----------- | :---------- | :---------------: | :--------------------: | :------------: | :---------------: | :---------------: | :------------------: | :---------: | :------------: |
      | gpt-4.1      | 2025-04-14  |         ✅         |            ✅           |        ✅       |         ✅         |         ✅         |           ✅          |      ✅      |        ✅       |
      | gpt-4.1-mini | 2025-04-14  |         ✅         |            ✅           |        ✅       |         ✅         |         ✅         |           ✅          |      ✅      |        ✅       |
      | gpt-4.1-nano | 2025-04-14  |         ✅         |            ✅           |        ✅       |         ✅         |         ✅         |           ✅          |      ✅      |        ✅       |
      | gpt-4o       | 2024-05-13  |         ✅         |            ✅           |        ✅       |         ✅         |         ✅         |           ✅          |      ✅      |        ✅       |
      | gpt-4o       | 2024-08-06  |         ✅         |            ✅           |        ✅       |         ✅         |         ✅         |           ✅          |      ✅      |        ✅       |
      | gpt-4o       | 2024-11-20  |         ✅         |            ✅           |        ✅       |         ✅         |         ✅         |           ✅          |      ✅      |        ✅       |
      | gpt-4o-mini  | 2024-07-18  |         ✅         |            ✅           |        ✅       |         ✅         |         ✅         |           ✅          |      ✅      |        ✅       |
      | gpt-5        | 2025-08-07  |         ✅         |            ✅           |        ✅       |         ✅         |         ✅         |           ✅          |      ✅      |        ✅       |
      | gpt-5.1      | 2025-11-13  |         ✅         |            ✅           |        ✅       |         ✅         |         ✅         |           ✅          |      ✅      |        ✅       |
      | o3           | 2025-04-16  |         ✅         |            ✅           |        ✅       |         ✅         |         ✅         |           ✅          |      ✅      |        ✅       |
      | o3-mini      | 2025-01-31  |         ✅         |            ✅           |        ✅       |         ✅         |         ✅         |           ✅          |      ✅      |        ✅       |
      | o4-mini      | 2025-04-16  |         ✅         |            ✅           |        ✅       |         ✅         |         ✅         |           ✅          |      ✅      |        ✅       |
    </Tab>

    <Tab title="Asia Pacific">
      | **Model**    | **Version** | **australiaeast** | **japaneast** | **koreacentral** | **southindia** |
      | :----------- | :---------- | :---------------: | :-----------: | :--------------: | :------------: |
      | gpt-4.1      | 2025-04-14  |         ✅         |       ✅       |         ✅        |        ✅       |
      | gpt-4.1-mini | 2025-04-14  |         ✅         |       ✅       |         ✅        |        ✅       |
      | gpt-4.1-nano | 2025-04-14  |         ✅         |       ✅       |         ✅        |        ✅       |
      | gpt-4o       | 2024-05-13  |         ✅         |       ✅       |         ✅        |        ✅       |
      | gpt-4o       | 2024-08-06  |         ✅         |       ✅       |         ✅        |        ✅       |
      | gpt-4o       | 2024-11-20  |         ✅         |       ✅       |         ✅        |        ✅       |
      | gpt-4o-mini  | 2024-07-18  |         ✅         |       ✅       |         ✅        |        ✅       |
      | gpt-5        | 2025-08-07  |         ✅         |       ✅       |         ✅        |        ✅       |
      | gpt-5.1      | 2025-11-13  |         ✅         |       ✅       |         ✅        |        ✅       |
      | o3           | 2025-04-16  |         ✅         |       ✅       |         ✅        |        ✅       |
      | o3-mini      | 2025-01-31  |         ✅         |       ✅       |         ✅        |        ✅       |
      | o4-mini      | 2025-04-16  |         ✅         |       ✅       |         ✅        |        ✅       |
    </Tab>

    <Tab title="Middle East & Africa">
      | **Model**    | **Version** | **southafricanorth** |
      | :----------- | :---------- | :------------------: |
      | gpt-4.1      | 2025-04-14  |           ✅          |
      | gpt-4.1-mini | 2025-04-14  |           ✅          |
      | gpt-4.1-nano | 2025-04-14  |           ✅          |
      | gpt-4o       | 2024-05-13  |           ✅          |
      | gpt-4o       | 2024-08-06  |           ✅          |
      | gpt-4o       | 2024-11-20  |           ✅          |
      | gpt-4o-mini  | 2024-07-18  |           ✅          |
      | gpt-5        | 2025-08-07  |           ✅          |
      | gpt-5.1      | 2025-11-13  |           ✅          |
      | o3           | 2025-04-16  |           ✅          |
      | o3-mini      | 2025-01-31  |           ✅          |
      | o4-mini      | 2025-04-16  |           ✅          |
    </Tab>
  </Tabs>

  #### Availability for other Foundry Models sold by Azure

  <Tabs>
    <Tab title="Americas">
      Not available
    </Tab>

    <Tab title="Europe">
      Not available
    </Tab>

    <Tab title="Asia Pacific">
      Not available
    </Tab>

    <Tab title="Middle East & Africa">
      Not available
    </Tab>
  </Tabs>

  ## Data Zone Batch

  For **Data Zone** deployments, prompts and responses are processed anywhere within the Microsoft-specified data zone: United States (data processed anywhere within the US) or European Union (data processed within any EU member nation).

  #### Availability for Azure OpenAI in Foundry Models

  <Tabs>
    <Tab title="Americas">
      | **Model**    | **Version** | **centralus** | **eastus** | **eastus2** | **northcentralus** | **southcentralus** | **westus** | **westus3** |
      | :----------- | :---------- | :-----------: | :--------: | :---------: | :----------------: | :----------------: | :--------: | :---------: |
      | gpt-4.1      | 2025-04-14  |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-4.1-mini | 2025-04-14  |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-4.1-nano | 2025-04-14  |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-4o       | 2024-08-06  |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-4o       | 2024-11-20  |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-4o-mini  | 2024-07-18  |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-5        | 2025-08-07  |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | gpt-5.1      | 2025-11-13  |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | o3           | 2025-04-16  |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | o3-mini      | 2025-01-31  |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
      | o4-mini      | 2025-04-16  |       ✅       |      ✅     |      ✅      |          ✅         |          ✅         |      ✅     |      ✅      |
    </Tab>

    <Tab title="Europe">
      | **Model**    | **Version** | **francecentral** | **germanywestcentral** | **polandcentral** | **swedencentral** | **westeurope** |
      | :----------- | :---------- | :---------------: | :--------------------: | :---------------: | :---------------: | :------------: |
      | gpt-4.1      | 2025-04-14  |         ✅         |            ✅           |         ✅         |         ✅         |        ✅       |
      | gpt-4.1-mini | 2025-04-14  |         ✅         |            ✅           |         ✅         |         ✅         |        ✅       |
      | gpt-4.1-nano | 2025-04-14  |         ✅         |            ✅           |         ✅         |         ✅         |        ✅       |
      | gpt-4o       | 2024-08-06  |         ✅         |            ✅           |         ✅         |         ✅         |        ✅       |
      | gpt-4o       | 2024-11-20  |         ✅         |            ✅           |         ✅         |         ✅         |        ✅       |
      | gpt-4o-mini  | 2024-07-18  |         ✅         |            ✅           |         ✅         |         ✅         |        ✅       |
      | o3           | 2025-04-16  |         ✅         |            ✅           |         ✅         |         ✅         |        ✅       |
      | o4-mini      | 2025-04-16  |         ✅         |            ✅           |         ✅         |         ✅         |        ✅       |
    </Tab>

    <Tab title="Asia Pacific">
      Not available
    </Tab>

    <Tab title="Middle East & Africa">
      Not available
    </Tab>
  </Tabs>

  #### Availability for other Foundry Models sold by Azure

  <Tabs>
    <Tab title="Americas">
      Not available
    </Tab>

    <Tab title="Europe">
      Not available
    </Tab>

    <Tab title="Asia Pacific">
      Not available
    </Tab>

    <Tab title="Middle East & Africa">
      Not available
    </Tab>
  </Tabs>
</ZoneContent>

## Related content

* [Foundry Models sold by Azure](/models/models-sold-directly-by-azure)
* [Deployment types for Microsoft Foundry Models](/models/deployment-types)
* [Model retirement schedule](/models/model-retirement-schedule)
* [Foundry Models from partners and community](/models/models-from-partners)
