enroute

anthropic

Anthropic: Claude Haiku 4.5

anthropic/claude-haiku-4-5

Routed through the enroute gateway at the upstream list price. Last Labs does not add a markup.

Input / 1M

$1.00 / 1M

Output / 1M

$5.00 / 1M

Context

200K

Status

Available

Providers

Default is the first live US host. Pin a lab host with provider.only.

HostRegionInput / 1MOutput / 1MRoute
anthropicus$1.00 / 1M$5.00 / 1MDefault

Modalities

text+image->text

Input
text · image
Output
text

Parameters

  • temperature
  • top_p
  • max_tokens
  • tools
  • tool_choice
  • stop

Use this model

from enroute import Enroute, Message

client = Enroute(
    api_key="enroute_...",  # ENROUTE_API_KEY
    base_url="http://enroute.localhost:3000/v1",
)
response = client.chat(
    model="anthropic/claude-haiku-4-5",
    messages=[Message(role="user", content="Hello from Last Labs")],
)
print(response.text)