OpenAI

OpenAI support is currently in development. This page will be updated when it's available.

Planned Models

ModelStatus
gpt-4.1Coming soon
gpt-4.1-miniComing soon
gpt-4.1-nanoComing soon
o4-miniComing soon

What to Expect

When available, OpenAI integration will work with @ai-proxy/core and any OpenAI-compatible SDK:

typescript
import { createProxyFetch } from "@ai-proxy/core";
import { createOpenAI } from "@ai-sdk/openai";
import { generateText } from "ai";
 
const proxyFetch = createProxyFetch({
  proxyUrl: "https://chat-api.typo.monster",
  apiKey: "tmk_your_api_key_here",
});
 
const openai = createOpenAI({
  fetch: proxyFetch,
  apiKey: "proxy-managed",
});
 
const { text } = await generateText({
  model: openai("gpt-4.1-mini"),
  prompt: "Hello!",
});

Stay Updated

Create an API key now and you'll be ready to go as soon as OpenAI support launches.