← All models
Claude Haiku 3 is Anthropic's cheapest model. It's designed to be fast, though not necessarily that intelligent.
Usage
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.tributary.cc/openai/v1",
apiKey: "<TRIBUTARY_API_KEY>",
});
const completion = await client.chat.completions.create({
model: "anthropic:claude-haiku-3",
messages: [
{ role: "user", content: "Hello!" }
],
});
console.log(completion.choices[0].message.content); Providers
| Provider | Model | Context | Output | Input $/M | Output $/M |
|---|---|---|---|---|---|
| Anthropic | claude-3-haiku-20240307 | 200K 200,000 tokens | 4K 4,096 tokens | $0.25 | $1.25 |
Context/output in tokens. Prices in USD per 1M tokens.