Models/Anthropic

Claude Sonnet 4

Anthropic
Chat
Reasoning
Tool Calling
Vision
anthropic/claude-sonnet-4
Open in Playground
Run inference
python
from openai import OpenAI

client = OpenAI(
    base_url="https://api.sylicaai.com/v1",
    api_key="YOUR_SYLICA_API_KEY",
)

response = client.chat.completions.create(
    model="anthropic/claude-sonnet-4",
    messages=[
        {"role": "user", "content": "What are some fun things to do in New York?"}
    ],
)

print(response.choices[0].message.content)
AuthorAnthropic
ReleasedCatalog default
CategoryReasoning chat
Context length200,000 tokens (200K)
Pricing (per 1M tokens)$3.00 in / $15.00 out
DeploymentPublished
Input modalitiesText, Image
Output modalitiesText
FeaturesChat, Reasoning, Tool Calling, Vision