A

Claude 3 Haiku

Anthropic

ChatFastFast

About

Near-instant responses for lightweight tasks. Ideal for high-throughput applications, quick interactions, and use cases where speed is the top priority. Great for customer-facing chatbots, real-time classification, and high-volume data processing.

Provider

Anthropic

Context Window

200k tokens

Max Output

4,096 tokens

Model ID

anthropic/claude-3-haiku

Capabilities

200k contextUltra-fast responsesStreamingSystem prompts

API Usage

Drop-in compatible with any OpenAI client library.

import OpenAI from "openai";

const client = new OpenAI({
  baseURL: "https://api.deployai.dev/v1",
  apiKey: process.env.DEPLOYAI_API_KEY,
});

const completion = await client.chat.completions.create({
  model: "anthropic/claude-3-haiku",
  messages: [
    { role: "user", content: "Hello, how are you?" }
  ],
});

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

Related Models

View all