OpenAI
OpenAI support is currently in development. This page will be updated when it's available.
Planned Models
| Model | Status |
|---|---|
gpt-4.1 | Coming soon |
gpt-4.1-mini | Coming soon |
gpt-4.1-nano | Coming soon |
o4-mini | Coming 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.