레거시 프로 티어 추론 모델입니다. o1보다 더 많은 컴퓨트를 사용하여 어려운 문제에서 가장 신뢰할 수 있는 답변을 제공합니다. o3-pro의 전신이며, o3-pro가 더 나은 가성비를 제공합니다.
콘솔의 Playground에서 별도 코드 없이 이 모델을 즉시 테스트할 수 있어요
이 모델의 사용법을 Claude, ChatGPT 등에 복사
| 토큰 종류 | 크레딧 | 달러 환산 |
|---|---|---|
| 입력 토큰 | 278,700 | $185.80 |
| 출력 토큰 | 1,114,800 | $743.20 |
* 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": "o1-pro",
"messages": [
{
"role": "user",
"content": "Prove or disprove: every planar graph is 4-colorable. Outline the structure of the argument step by step."
}
],
"max_completion_tokens": 8000
}'| 파라미터 | 타입 | 필수 | 기본값 | 설명 |
|---|---|---|---|---|
messages | array | Yes | - | 메시지 객체 배열 |
model | string | Yes | o1-pro | 모델 식별자 |
max_completion_tokens | integer | No | - | 완성을 위한 최대 토큰 (추론 토큰 포함) |
reasoning_effort | string | No | - | 추론 노력 수준: low, medium, high lowmediumhigh |
o1 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": "o1-pro",
"messages": [
{
"role": "user",
"content": "Prove or disprove: every planar graph is 4-colorable. Outline the structure of the argument step by step."
}
],
"max_completion_tokens": 8000
}'