매우 복잡한 작업을 위한 Anthropic의 가장 강력한 모델입니다. 깊은 전문성이 필요한 연구, 분석 및 창의적 프로젝트에 탁월합니다.
| 토큰 종류 | 크레딧 | 달러 환산 |
|---|---|---|
| 입력 토큰 | 15,000 | $15.00 |
| 출력 토큰 | 75,000 | $75.00 |
| 캐시된 토큰 | 1,500 | $1.50 |
* 1 크레딧 ≈ $0.001 (실제 요금은 사용량에 따라 달라질 수 있습니다)
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: YOUR_API_KEY" \
-d '{
"model": "claude-3-opus",
"input": {
"model": "claude-3-opus-20240229",
"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 | - | 응답의 최대 토큰 수 (최대 4096) |
system | string | No | - | 시스템 프롬프트 |
temperature | float | No | 1.0 | 샘플링 온도 (0-1) |
심층 연구 분석
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: YOUR_API_KEY" \
-d '{
"model": "claude-3-opus",
"input": {
"model": "claude-3-opus-20240229",
"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