Skip to main content
Core.Today
|
Anthropic보통울트라

Claude Opus 4.6

Anthropic의 가장 강력한 모델입니다. 향상된 안전성과 지시 따르기 능력으로 추론, 코딩, 복잡한 분석에서 획기적인 성능을 제공합니다.

5 크레딧
1K 토큰당 (평균)
가장 강력한 Anthropic 모델
200K 컨텍스트 윈도우
향상된 추론 및 코딩
뛰어난 지시 따르기 능력
고급 안전 기능
스트리밍 지원

AI 어시스턴트에서 사용하기

이 모델의 사용법을 Claude, ChatGPT 등에 복사

llms.txt

모델 상세 사양

컨텍스트 윈도우
200K
토큰
최대 출력
32K
토큰
학습 데이터
2025-05
호환 SDK
Anthropic, OpenAI

기능 지원

비전
함수 호출
스트리밍
JSON 모드
시스템 프롬프트

토큰별 가격 (1M 토큰당)

토큰 종류크레딧달러 환산
입력 토큰10,000$10.00
출력 토큰50,000$50.00

* 1 크레딧 ≈ $0.001 (실제 요금은 사용량에 따라 달라질 수 있습니다)

빠른 시작

curl -X POST "https://api.core.today/llm/anthropic/v1/messages" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer cdt_your_api_key" \
  -d '{
  "model": "claude-opus-4-6",
  "messages": [
    {
      "role": "system",
      "content": "You are a research analyst with expertise in technology and economics."
    },
    {
      "role": "user",
      "content": "Provide a comprehensive analysis of how large language models are transforming software development practices, including potential risks and mitigation strategies."
    }
  ],
  "temperature": 0.7,
  "max_tokens": 4000
}'

파라미터

파라미터타입필수기본값설명
messagesarrayYes-메시지 객체 배열 (OpenAI 형식)
temperaturefloatNo1.0샘플링 온도 (0-1)
max_tokensintegerNo4096응답의 최대 토큰 수 (최대 32000)
streambooleanNofalseServer-Sent Events 스트리밍 활성화

예제

복잡한 분석

Claude Opus 4.6을 활용한 심층 분석

curl -X POST "https://api.core.today/llm/anthropic/v1/messages" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer cdt_your_api_key" \
  -d '{
  "model": "claude-opus-4-6",
  "messages": [
    {
      "role": "system",
      "content": "You are a research analyst with expertise in technology and economics."
    },
    {
      "role": "user",
      "content": "Provide a comprehensive analysis of how large language models are transforming software development practices, including potential risks and mitigation strategies."
    }
  ],
  "temperature": 0.7,
  "max_tokens": 4000
}'

코드 생성

프로덕션 수준의 코드 생성

curl -X POST "https://api.core.today/llm/anthropic/v1/messages" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer cdt_your_api_key" \
  -d '{
  "model": "claude-opus-4-6",
  "messages": [
    {
      "role": "system",
      "content": "You are a senior software engineer. Write clean, well-tested code."
    },
    {
      "role": "user",
      "content": "Implement a rate limiter in Python using the sliding window algorithm with Redis backend."
    }
  ],
  "temperature": 0.3,
  "max_tokens": 3000
}'

팁 & 모범 사례

1복잡한 작업에 가장 강력한 Anthropic 모델
2시스템 메시지로 정밀한 동작 제어
3코딩 및 사실적 작업에는 낮은 온도 (0.1-0.3)
4긴 응답에는 스트리밍 권장
5OpenAI SDK 형식 호환

사용 사례

복잡한 연구 및 분석
고급 코드 생성
장문 콘텐츠 제작
다단계 추론 작업
엔터프라이즈급 애플리케이션

모델 정보

제공자Anthropic
버전4.6
카테고리LLM
가격5 크레딧

API Endpoint

POST /llm/anthropic/v1/messages
Playground에서 테스트문서로 돌아가기