OpenAI의 프론티어 추론 모델입니다. 확장된 사고 연쇄를 사용하여 과학, 코딩, 수학의 복잡한 문제를 경쟁력 있는 가격에 높은 정확도로 해결합니다.
콘솔의 Playground에서 별도 코드 없이 이 모델을 즉시 테스트할 수 있어요
이 모델의 사용법을 Claude, ChatGPT 등에 복사
| 토큰 종류 | 크레딧 | 달러 환산 |
|---|---|---|
| 입력 토큰 | 3,716 | $2.48 |
| 출력 토큰 | 14,864 | $9.91 |
| 캐시된 토큰 | 929 | $0.62 |
* 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",
"messages": [
{
"role": "user",
"content": "Find all integer solutions to x^2 + y^2 = z^2 where x, y, z are consecutive terms of an arithmetic progression. Show your reasoning."
}
],
"reasoning_effort": "high"
}'| 파라미터 | 타입 | 필수 | 기본값 | 설명 |
|---|---|---|---|---|
messages | array | Yes | - | 메시지 객체 배열 |
model | string | Yes | o3 | 모델 식별자 |
max_completion_tokens | integer | No | - | 완성을 위한 최대 토큰 (추론 토큰 포함) |
reasoning_effort | string | No | medium | 추론 노력 수준: low, medium, high lowmediumhigh |
o3로 고급 수학 문제 풀기
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",
"messages": [
{
"role": "user",
"content": "Find all integer solutions to x^2 + y^2 = z^2 where x, y, z are consecutive terms of an arithmetic progression. Show your reasoning."
}
],
"reasoning_effort": "high"
}'단계별 추론을 통한 심층 디버깅
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",
"messages": [
{
"role": "user",
"content": "This async Python function deadlocks intermittently under load. Walk through the possible interleavings and find the bug: [code snippet]"
}
],
"max_completion_tokens": 8000
}'