매우 복잡한 작업을 위한 Anthropic의 가장 강력한 모델입니다. 깊은 전문성이 필요한 연구, 분석 및 창의적 프로젝트에 탁월합니다.
이 모델의 사용법을 Claude, ChatGPT 등에 복사
| 토큰 종류 | 크레딧 | 달러 환산 |
|---|---|---|
| 입력 토큰 | 5,000 | $5.00 |
| 출력 토큰 | 25,000 | $25.00 |
| 캐시된 토큰 | 500 | $0.50 |
* 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-5",
"max_tokens": 4000,
"system": "You are a world-class researcher with deep expertise across multiple domains.",
"messages": [
{
"role": "user",
"content": "Provide a comprehensive analysis of recent advances in quantum error correction, including implications for practical quantum computing."
}
]
}'| 파라미터 | 타입 | 필수 | 기본값 | 설명 |
|---|---|---|---|---|
messages | array | Yes | - | 메시지 객체 배열 |
max_tokens | integer | Yes | - | 응답의 최대 토큰 수 (최대 32768) |
system | string | No | - | 시스템 프롬프트 |
temperature | float | No | 1.0 | 샘플링 온도 (0-1) |
심층 연구 분석
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-5",
"max_tokens": 4000,
"system": "You are a world-class researcher with deep expertise across multiple domains.",
"messages": [
{
"role": "user",
"content": "Provide a comprehensive analysis of recent advances in quantum error correction, including implications for practical quantum computing."
}
]
}'POST /llm/anthropic/v1/messages