o3의 최고 강도 버전입니다. 더 많은 컴퓨트로 더 오래 사고하여 가장 어려운 과학, 수학, 코딩 문제에서 가장 신뢰할 수 있는 답변을 제공합니다.
콘솔의 Playground에서 별도 코드 없이 이 모델을 즉시 테스트할 수 있어요
이 모델의 사용법을 Claude, ChatGPT 등에 복사
| 토큰 종류 | 크레딧 | 달러 환산 |
|---|---|---|
| 입력 토큰 | 37,160 | $24.77 |
| 출력 토큰 | 148,640 | $99.09 |
* 1,500 크레딧 ≈ $1 (실제 요금은 사용량에 따라 달라질 수 있습니다)
curl -X POST "https://api.core.today/llm/openai/v1/chat/completions" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer cdt_your_api_key" \
-d '{
"model": "o3-pro",
"messages": [
{
"role": "user",
"content": "Verify whether this cryptographic key-exchange protocol is vulnerable to man-in-the-middle attacks. Enumerate every assumption and attack vector."
}
],
"max_completion_tokens": 16000
}'| 파라미터 | 타입 | 필수 | 기본값 | 설명 |
|---|---|---|---|---|
messages | array | Yes | - | 메시지 객체 배열 |
model | string | Yes | o3-pro | 모델 식별자 |
max_completion_tokens | integer | No | - | 완성을 위한 최대 토큰 (추론 토큰 포함) |
reasoning_effort | string | No | - | 추론 노력 수준: low, medium, high lowmediumhigh |
o3 Pro를 활용한 가장 신뢰할 수 있는 추론
curl -X POST "https://api.core.today/llm/openai/v1/chat/completions" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer cdt_your_api_key" \
-d '{
"model": "o3-pro",
"messages": [
{
"role": "user",
"content": "Verify whether this cryptographic key-exchange protocol is vulnerable to man-in-the-middle attacks. Enumerate every assumption and attack vector."
}
],
"max_completion_tokens": 16000
}'