Claude 3.5 Sonnet
Anthropic logo

Claude 3.5 Sonnet

claude-3-5-sonnet
Anthropic
Claude 3.5 Sonnet delivers performance superior to Opus and speeds faster than its predecessor, all at the same price point. Its core strengths include: Coding: Autonomously writes, edits, and executes code with advanced reasoning and troubleshooting. Data Science: Augments human expertise by analyzing unstructured data and using multiple tools to generate insights. Visual Processing: Excels at interpreting charts, graphs, and images, accurately transcribing text to derive high-level insights. Agentic Tasks: Exceptional tool use makes it highly effective for complex, multi-step agentic workflows that interact with other systems.

Pricing

  • Input Tokens: $3 /M tokens
  • Output Tokens: $15 /M tokens

Input Modalities

  • Text
  • Vision

Output Modalities

  • Text

Capabilities

  • Tools
  • Tool calling
  • Structured outputs

Providers

Anthropic claude-3-5-sonnet-20241022
Pricing$3$15
Context200K
Max output8K
Latency0.6S
Throughput48.5TPS
Uptime
0.00% uptime 2 days ago
0.00% uptime yesterday
0.00% uptime today
AWS claude-3-5-sonnet-20241022
Pricing$3$15
Context200K
Max output8K
Latency1.1S
Throughput57.2TPS
Uptime
0.00% uptime 2 days ago
0.00% uptime yesterday
0.00% uptime today

Performance for claude-3-5-sonnet

Uptime is the percentage of requests that succeeded over the past 72 hours. AIHubMix continuously monitors every provider and automatically retries with the next-best provider when one returns an error or responds too slowly; Latency is total round-trip time (lower is better); Throughput is how fast the model writes (tokens per second, higher is better).

Uptime
Loading...
Latency
Loading...
Throughput
Loading...

Try this model

Python
import os
from openai import OpenAI

client = OpenAI(
    api_key=os.environ["AIHUBMIX_API_KEY"],
    base_url="https://shkq.org/v1",
)

response = client.chat.completions.create(
    model="claude-3-5-sonnet",
    messages=[
      {
        "role": "user",
        "content": "Hello, how are you?"
      }
    ],
    max_tokens=1024,
    stream=False,
)

print(response.choices[0].message.content)

Frequently asked questions

What is Claude 3.5 Sonnet?

Claude 3.5 Sonnet delivers performance superior to Opus and speeds faster than its predecessor, all at the same price point. Its core strengths include: Coding: Autonomously writes, edits, and executes code with advanced reasoning and troubleshooting. Data Science: Augments human expertise by analyzing unstructured data and using multiple tools to generate insights. Visual Processing: Excels at interpreting charts, graphs, and images, accurately transcribing text to derive high-level insights. Agentic Tasks: Exceptional tool use makes it highly effective for complex, multi-step agentic workflows that interact with other systems.