신규 무료 가입, 10회 호출 제공. 최대 $1, 카드 불필요.

Claude Sonnet 4.6

2026-02-17 출시

chat코드리즈닝도구 호출비전프롬프트 캐싱

Claude Sonnet 4.6은 Sonnet 티어에 대용량 컨텍스트 능력을 가져온 세대입니다.

입력
텍스트 이미지 $3/M
출력
텍스트 $15/M
캐시 읽기
$0.3/M
컨텍스트
1M
GPT-4o 대비
약 40% 저렴
지식 컷오프
2025-08

벤치마크

평균 상회비교 가능 2개뿐
Claude Sonnet 4.6 측정된 다른 모델 측정 대상 평균 더 높은 점수를 낸 모델 없음
Terminal Bench 2.0 Terminus 2, max
59.1%
OSWorld-Verified
72.5%
GDPval-AA v2 Elo, max · 1606-1633
1633
MMMLU max
89.3%
MCP-Atlas max
61.3%
MMMU-Pro no tools, max
74.5%

벤더 공개: Alibaba (Qwen) Anthropic ByteDance Google Moonshot OpenAI

가격의 위치

동종 60개 모델 중 가격 위치

입력$3/M
$0.05 · Qwen3 VL Flash GPT-5.4 Pro · $30
출력$15/M
$0.275 · DeepSeek V4 Flash GPT-5.4 Pro · $180
캐시 읽기$0.3/M
$0.0028 · DeepSeek V4 Flash GPT-5.4 Pro · $15

이 막대는 Synthorai에 있는 같은 종류의 모델 가운데 이 모델의 가격이 어디쯤인지 보여 줍니다. 양쪽 끝에는 가장 싼 모델과 가장 비싼 모델의 이름이 있습니다. 기본 요율 기준이며 배치·리전·캐시 쓰기 할인은 가격 페이지에 있습니다.

스펙 및 제한

토큰

컨텍스트 윈도우(공급사 사양) 1,000,000
최대 출력(벤더 스펙) 128,000
지식 컷오프 2025-08
학습 데이터 기준 2026-01 지식 컷오프 2025-08

프롬프트 캐싱

캐싱 방식 명시적(옵트인)
최소 프리픽스 1,024
수명 기본 5분, 1시간 옵션
쓰기 비용 1.25x (5m) / 2x (1h)

사고

공급사 파라미터 thinking.type + output_config.effort (budget_tokens still accepted, deprecated)
허용 값 thinking.type adaptive · enabled (deprecated) · disabled; effort low · medium · high · max (no xhigh)
기본값 사고 꺼짐; effort는 high 요청에서 지정하지 않을 때 적용
비활성화 가능 지원
사고 동작 적응형 사고는 베타 헤더 없이도 도구 호출 사이에 자동으로 인터리브됩니다. 수동 “enabled” 모드에서는 interleaved-thinking-2025-05-14 헤더가 여전히 동작하지만 지원 중단 예정입니다. 이전 턴의 사고 블록은 컨텍스트에 남아 입력으로 과금됩니다.
파라미터 reasoning_effort
minimal · low · medium · high 게이트웨이 측 파라미터 표면 - 위의 벤더 매핑이 적용됩니다

모델

모달리티 텍스트 + 이미지 → 텍스트
  • 1M 토큰 컨텍스트는 2026-03-13부터 표준 가격으로 GA
  • output-300k-2026-03-24 베타 헤더 사용 시 Batch API에서 최대 300k 출력 토큰

출처: Anthropic 공식 문서 ↗

하나의 프롬프트 - 게이트웨이를 통해 측정됨

프롬프트 Explain to a CFO, in exactly three sentences, why our LLM bill doubled after we enabled reasoning. 확인 정확히 3문장

Claude Sonnet 4.6 통과 · 3 sentences

Here is a three-sentence explanation for a CFO: Reasoning models "think out loud" by generating a long internal chain of thought before producing the final answer, and every token in that thinking process is billed at the same rate as the output you actually see. This means a single user request that previously cost 500 tokens of output may now cost 5,000 tokens once the hidden reasoning steps are counted, multiplying cost per call by roughly 5-10x depending on task complexity. To control this, we can cap reasoning depth, route simpler tasks back to non-reasoning models, and audit which use cases actually require that level of accuracy to ensure we are only paying the premium where it delivers measurable business value.

출력 156 tok 지연 시간 4.9 s

지시 준수(정확히 세 문장 - 셀 수 있음), 독자 맞춤(CFO 어조), 그리고 아래 토큰 계량기가 드러내는 숨은 사고 과금 격차.

프롬프트 This function is supposed to return the longest run of consecutive equal items, but callers report it is off by one on single-element inputs and misses runs that end at the last index. Fix it and explain the bug in one paragraph. 확인 수정이 테스트를 통과

Claude Sonnet 4.6 통과 · 8/8 cases

## The Bug There are two related off-by-one errors: 1. **`cur` starts at `0` instead of `1`** — a single matching pair increments `cur` to `1`, which correctly represents a run of 2, but a single-element list (or any non-repeating list) leaves `cur = 0` and `best = 0`, when the answer should be `1`. 2. **`best` is only updated inside the `if` branch** — a run that ends at the last index is captured correctly *in that branch*, but the initialization problem means the baseline "every element is a run of at least 1" is never established. The root cause is that **`cur` tracks the number of *consecutive equal pairs*, not the length of the run**. Switching to tracking run length directly (starting `cur = 1`, updating `best` on *every* iteration including the `else` branch reset) fixes both issues. […]

출력 685 tok 지연 시간 12.2 s

수정이 실제로 옳은지(실행 가능한지), 설명의 밀도, 그리고 범위가 정해진 작업에서의 토큰 효율.

프롬프트 Extract a JSON object with fields {company, quarter, revenue_usd_m, growth_pct, guidance} from this text. Use null for anything not stated; add no other fields. 확인 유효한 JSON, 스키마 정확

Claude Sonnet 4.6 통과 · 5/5 fields, guidance null

```json { "company": "Meridian Robotics", "quarter": "Q3 (September quarter)", "revenue_usd_m": 412, "growth_pct": 11, "guidance": null } ```

출력 67 tok 지연 시간 1.3 s

스키마 준수(없는 필드를 지어내지 않기), 환각 압력(guidance는 명시적으로 보류됨), 그리고 구조화 출력 경로의 차이.

프롬프트 Write a 120-word product announcement for an API gateway feature that caches prompts across providers. Forbidden words: "seamless", "unlock", "game-changer", "revolutionize", "empower". Exactly one sentence must be a question. 확인 120단어, 금지어 0개

Claude Sonnet 4.6 통과 · 121 words, 0 banned, 1 question

**Introducing Prompt Caching Across Providers** Managing AI costs gets complicated when identical prompts hit multiple providers repeatedly, burning through tokens unnecessarily. Today, we're launching cross-provider prompt caching in our API gateway — a feature that stores prompt responses and serves cached results regardless of which underlying model handles your request. Here's how it works: when your application sends a repeated prompt, the gateway checks its cache first, returning stored outputs in milliseconds rather than forwarding requests to OpenAI, Anthropic, or any connected provider. Why pay for the same generation twice? With configurable TTL settings and cache-key customization, teams processing high-volume or repetitive workloads will see immediate latency improvements and measurable cost reductions starting on day one. Available now on all paid plans.

출력 177 tok 지연 시간 5.4 s

제약 준수(단어 예산, 금지어 목록, 단 하나의 의문문), 문체 지문, 그리고 길이 제어.

30초 만에 Claude Sonnet 4.6 사용하기

OpenAI 호환. base_url만 바꾸면 SDK는 그대로. POST /v1/chat/completions

from openai import OpenAI

client = OpenAI(
    base_url="https://synthorai.io/v1",
    api_key="sk-syn-...",
)

resp = client.chat.completions.create(
    model="claude-sonnet-4-6",
    messages=[{"role": "user", "content": "Summarize this diff"}],
    reasoning_effort="medium",
)
print(resp.choices[0].message.content)

Claude Sonnet 4.6 소개

  • Sonnet 4.5 대비 컨텍스트 윈도우를 200K에서 1M 토큰으로 확장하고, 최대 출력을 128K 토큰으로 두 배로 늘렸으며, 확장 사고와 함께 적응형 사고를 추가했습니다.
  • Anthropic은 일상 과제를 위해 속도와 지능을 결합한 균형형 모델로, 더 적은 토큰을 쓰면서도 에이전틱 검색 성능이 향상되었다고 소개했고, 1M 윈도우는 베타로 막혀 있지 않고 표준 가격의 정식 제공입니다.
  • Sonnet 특유의 빠른 지연 시간 프로필과 100만 토큰당 $3/$15 가격을 유지하며, 비전 입력과 도구 사용을 전반적으로 지원하고, Batch API의 300K 출력 확장 베타 대상이기도 합니다.
  • 추론 강도(effort)는 xhigh 없이 low부터 max까지입니다.
  • 파라미터 기본값은 high이지만 Anthropic은 예기치 못한 지연을 피하려면 이 모델에서 추론 강도를 명시적으로 설정하라고 분명히 권고하며 medium을 실용적인 기본값으로 제안합니다.
  • 확장 사고는 여전히 동작하지만 적응형 사고에 밀려 폐기 예정이고, 두 사고 타입 모두 곧바로 거부되지는 않습니다.
  • 여기서는 어시스턴트 메시지 프리필이 오류를 반환하는 반면, 기본값이 아닌 샘플링 파라미터는 아직 허용됩니다.
  • 그 제한은 Sonnet 5에서 도입됩니다.
  • 구형 토크나이저를 사용하므로 토큰 수는 이전 모델들과 비교 가능한 수준을 유지합니다.
  • Anthropic은 현재 이 모델을 Claude Sonnet 5로 대체된 레거시 모델로 분류합니다.
  • Synthorai의 OpenAI 호환 엔드포인트를 통하면 기존 GPT 스타일 통합에 그대로 끼워 넣을 수 있습니다.

자주 묻는 질문

Claude Sonnet 4.6 API는 무료로 사용해 볼 수 있나요?

네, 신규 계정에는 10회의 체험 호출과 최대 $1의 무료 크레딧이 제공되며, 카드 등록이 필요 없습니다. 입력 토큰 $3/M 기준으로, 이 크레딧만으로도 Claude Sonnet 4.6에 약 8K 토큰 규모의 요청을 대략 41회 보낼 수 있습니다.

Claude Sonnet 4.6은 무엇에 가장 강한가요?

컨텍스트 200K에서 1M 토큰으로 확장, 최대 출력 128K 토큰으로 2배, $3/$15 가격 유지의 적응형 사고. 전체 내용은 벤더의 공식 릴리스 노트를 정리한 소개 섹션을 참고하세요.

Claude Sonnet 4.6의 가격은 얼마인가요?

Synthorai에서 Claude Sonnet 4.6은 입력 토큰 100만 개당 $3, 출력 토큰 100만 개당 $15입니다. 공급사 정가 그대로이며 플랫폼 마진이 없습니다. 캐시된 입력 토큰은 $0.3/M로 과금됩니다.

Claude Sonnet 4.6은 프롬프트 캐싱을 지원하나요?

네, 옵트인 방식으로 안정적인 프리픽스를 cache_control 브레이크포인트로 표시합니다. 캐시된 입력 토큰은 $0.3/M로 과금됩니다(미캐시 시 $3/M); 캐시되려면 프롬프트에 1,024 토큰 이상의 안정적인 프리픽스가 필요합니다 (TTL 기본 5분, 1시간 옵션). 프롬프트 캐싱 가이드 →

Claude Sonnet 4.6은 어떻게 이용하나요?

기존 OpenAI SDK의 base_url을 "https://synthorai.io/v1"로 지정하고 model="claude-sonnet-4-6"로 설정하면 끝입니다. API 키 하나로 게이트웨이의 모든 모델을 사용할 수 있습니다.

Claude Sonnet 4.6의 지식 컷오프는 언제인가요?

벤더 공식 문서에 따르면 Claude Sonnet 4.6의 지식 컷오프는 2025-08입니다(2026-07-09 기준).

관련 모델

비교

이 페이지의 모든 값은 벤더 자체 문서(위 링크)에서 전사했으며 확인 날짜를 함께 표기합니다. 가격은 카탈로그 전체와 비교하지만, 벤더마다 정의가 다른 사양 값은 차이를 명시할 뿐 도표로 비교하지 않습니다. 저희가 측정한 수치는 없으며 점수도 매기지 않습니다.

API 키 받기 내 비용 비교하기 →