← All models
Anthropic logo

Claude Haiku 3.5

Retired February 19, 2026
Chat

anthropic:claude-haiku-3.5

Added October 22, 2024

Claude Haiku 3.5 was one of Anthropic's cheapest models. It was cheaper and dumber than Haiku 4.5 and more expensive and smarter than Haiku 3.

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.5",
    messages: [
        { role: "user", content: "Hello!" }
    ],
});

console.log(completion.choices[0].message.content);

Providers

None