Anthropic

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

Planned Models

ModelStatus
claude-sonnet-4-5-20250514Coming soon
claude-haiku-3-5-20241022Coming soon

What to Expect

When available, Anthropic integration will work with @ai-proxy/core:

typescript
import { createProxyFetch } from "@ai-proxy/core";
import { createAnthropic } from "@ai-sdk/anthropic";
import { generateText } from "ai";
 
const proxyFetch = createProxyFetch({
  proxyUrl: "https://chat-api.typo.monster",
  apiKey: "tmk_your_api_key_here",
});
 
const anthropic = createAnthropic({
  fetch: proxyFetch,
  apiKey: "proxy-managed",
});
 
const { text } = await generateText({
  model: anthropic("claude-sonnet-4-5-20250514"),
  prompt: "Hello!",
});

Stay Updated

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