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

Claude Opus 4.6

2026-02-05 출시

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

Claude Opus 4.6은 Opus 라인을 롱 컨텍스트 작업으로 확장한 릴리스입니다.

입력
텍스트 이미지 $5/M
출력
텍스트 $25/M
캐시 읽기
$0.5/M
컨텍스트
1M
지식 컷오프
2025-05

벤치마크

평균 상회최고 점수15 / 222 / 22
Claude Opus 4.6 측정된 다른 모델 측정 대상 평균 더 높은 점수를 낸 모델 없음
SWE-Bench Pro
57.3%
Structural Biology
30.9%
ScreenSpot-Pro
49.5%
GDPval-AA Elo · 1314-1753
1619
GPQA Diamond
90%
MCP-Mark
56.7%
BabyVision
12.6%

벤더 공개: Alibaba (Qwen) Anthropic ByteDance DeepSeek Google MiniMax Moonshot OpenAI Tencent Z.ai

가격의 위치

동종 60개 모델 중 가격 위치

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

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

스펙 및 제한

토큰

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

프롬프트 캐싱

캐싱 방식 명시적(옵트인)
최소 프리픽스 4,096 공급사 기본값 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” 모드에는 인터리브드 사고가 아예 없습니다. 이전 턴의 사고 블록은 컨텍스트에 남아 입력으로 과금됩니다.
파라미터 reasoning_effort
minimal · low · medium · high 게이트웨이 측 파라미터 표면 - 위의 벤더 매핑이 적용됩니다

모델

모달리티 텍스트 + 이미지 → 텍스트
  • 적응형 사고가 권장되는 최초의 Opus
  • 어시스턴트 프리필 미지원
  • 1M 컨텍스트는 2026-03-13부터 GA
  • 패스트 모드는 2026-06-29에 제거

출처: Anthropic 공식 문서 ↗

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

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

Claude Opus 4.6 통과 · 3 sentences

When reasoning is enabled, the model generates extensive internal chain-of-thought tokens that are produced—and billed—before the user-visible answer even begins, often multiplying total token consumption by 5–10× per request. Because our pricing is strictly per-token for both input and output, those hidden "thinking" tokens hit the invoice just as hard as the final response, even though end users never see them. To bring costs back in line, we can tune the reasoning effort parameter, cache common prompts, and route only genuinely complex queries to the reasoning model while handling routine tasks with a lighter, cheaper one.

출력 132 tok 지연 시간 6.3 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 Opus 4.6 통과 · 8/8 cases

```python def longest_run(xs): if not xs: return 0 best = 1 cur = 1 for i in range(1, len(xs)): if xs[i] == xs[i - 1]: cur += 1 best = max(best, cur) else: cur = 1 return best ``` The original code had two related bugs stemming from the fact that it counted additional consecutive elements (starting from 0) rather than the total length of a run (starting from 1): first, `best` and `cur` were initialized to 0 instead of 1, which meant a single-element list (where the loop never executes) returned 0 instead of the correct answer 1; second, when a mismatch was found, `cur` was reset to 0 instead of 1 (failing to count the current element as the start of a new run), which meant that if the longest run occurred at the very end of the list, the comparison `best = max(best, cur)` on the next matching step would be w […]

출력 277 tok 지연 시간 7.0 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 Opus 4.6 통과 · 5/5 fields, guidance "withheld pending the Q4 close"

```json { "company": "Meridian Robotics", "quarter": "September quarter", "revenue_usd_m": 412, "growth_pct": 11, "guidance": "withheld pending the Q4 close" } ```

출력 73 tok 지연 시간 2.6 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 Opus 4.6 통과 · 118 words, 0 banned, 1 question

**Introducing Cross-Provider Prompt Caching** Why pay for the same computation twice? Our new API gateway feature intelligently caches prompt responses across multiple LLM providers, reducing latency by up to 60% and cutting costs significantly for repeated or similar queries. When your application sends a prompt that matches a cached response—regardless of whether it originally came from OpenAI, Anthropic, or Cohere—the gateway serves the stored result instantly. You maintain full control over cache duration, invalidation rules, and provider-specific overrides through a simple configuration dashboard. The feature supports both exact and semantic matching, letting teams optimize for speed or flexibility based on their use case. Available today on all Pro and Enterprise plans with no additional setup required.

출력 163 tok 지연 시간 6.1 s

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

30초 만에 Claude Opus 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-opus-4-6",
    messages=[{"role": "user", "content": "Summarize this diff"}],
    reasoning_effort="medium",
)
print(resp.choices[0].message.content)

Claude Opus 4.6 소개

  • Opus 4.5 대비 컨텍스트 윈도우를 200K에서 1M 토큰으로 키우고, 최대 출력을 128K 토큰으로 두 배로 늘렸으며, 확장 사고와 함께 적응형 사고를 도입했는데 가격은 100만 토큰당 $5/$25로 그대로입니다.
  • Anthropic은 복잡한 에이전틱 과제와 롱 호라이즌 작업을 위한 가장 지능적인 모델로 출시했고, 1M 윈도우는 한 달 뒤 베타에서 표준 가격의 정식 제공으로 전환되었습니다.
  • 비전 입력, 도구 사용, 프롬프트 캐싱이 지원되며, Batch API는 이 모델에 대해 300K 출력 확장 베타를 제공합니다.
  • 컴팩션이 처음 베타로 출시된 것도 이 릴리스로, 긴 에이전트 세션이 윈도우를 넘겨서도 계속 작동할 방법을 마련해 주었습니다.
  • 두 사고 모드 모두 받아들여지며, 확장 사고는 이제 폐기 예정이지만 여전히 동작하고 어느 타입도 거부되지 않습니다.
  • 추론 강도(effort)는 xhigh 없이 low부터 max까지이고 기본값은 high입니다.
  • 마이그레이션에서 걸리는 동작이 두 가지 있습니다.
  • 이 세대부터는 어시스턴트 메시지 프리필이 지원되지 않고, 패스트 모드 리서치 프리뷰는 2026년 6월에 제거되어 이후 요청은 오류를 내는 대신 표준 속도와 표준 요율로 그냥 실행됩니다.
  • 프롬프트 캐싱은 최소 4,096 토큰 프리픽스를 요구합니다.
  • 현재는 Opus 4.7과 4.8 뒤의 레거시 모델로 분류되어 있습니다.
  • Synthorai는 어떤 OpenAI 호환 클라이언트에서도 Claude Opus 4.6을 호출할 수 있게 합니다.

자주 묻는 질문

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

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

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

컨텍스트 윈도우 200K에서 1M으로 확장, 최대 출력 128K 토큰으로 2배, 300K 출력 배치 확장 베타. 전체 내용은 벤더의 공식 릴리스 노트를 정리한 소개 섹션을 참고하세요.

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

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

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

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

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

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

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

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

관련 모델

비교

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

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