Anthropic: Claude Haiku 4.5 is a efficient model from Phala with a 200K context window. Priced at $0.0010/1K input, $0.0050/1K output.
Total Requests
3
P50 Latency
2160ms
P95 Latency
4753ms
Selection Rate
0.0%
of eligible requests
Intelligence Score
26/100
from openai import OpenAI
client = OpenAI(
base_url="https://api.antbase.ai/v1",
api_key="YOUR_ANT_API_KEY",
)
response = client.chat.completions.create(
model="phala/anthropic/claude-haiku-4.5",
messages=[{"role": "user", "content": "Hello!"}]
)
print(response.choices[0].message.content)