Skip to content

Azure OpenAI

Overview

Azure OpenAI Service provides access to OpenAI models hosted on Microsoft Azure infrastructure, with enterprise-grade security and compliance. Floopy proxies requests to Azure’s OpenAI-compatible API via the Azure AI model inference endpoint.

Supported Models

ModelContext WindowNotes
gpt-4o128KGPT-4o on Azure
gpt-4o-mini128KGPT-4o Mini on Azure
gpt-4.11MGPT-4.1 on Azure
gpt-4.1-mini1MGPT-4.1 Mini on Azure
gpt-4.1-nano1MGPT-4.1 Nano on Azure
o3200Ko3 reasoning model on Azure
o3-mini200Ko3 Mini on Azure
o4-mini200Ko4 Mini on Azure
o1200Ko1 reasoning model on Azure

Setup

  1. Go to Settings > Providers in the dashboard.
  2. Click Add provider and select Azure OpenAI.
  3. Paste your Azure OpenAI API key and click Save.

Usage

import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.floopy.ai/v1",
apiKey: process.env.FLOOPY_API_KEY,
});
// Use the same model names as direct OpenAI
const response = await client.chat.completions.create({
model: "gpt-4o",
messages: [{ role: "user", content: "Explain quantum computing." }],
});

Provider-Specific Features

  • Enterprise compliance — Azure OpenAI offers enterprise-grade data privacy, security certifications, and regional data residency.
  • Same model names — Uses the same model identifiers as direct OpenAI (e.g., gpt-4o, o3).
  • Fallback strategy — Combine Azure OpenAI with direct OpenAI for redundancy across providers.