GPT-5.2 베이스 위에 구축된 최신 Codex 세대입니다. GPT-5.2의 강화된 추론 능력을 에이전틱 코딩 하네스에 제공하며 OpenAI Responses API로 제공됩니다.
콘솔의 Playground에서 별도 코드 없이 이 모델을 즉시 테스트할 수 있어요
이 모델의 사용법을 Claude, ChatGPT 등에 복사
| 토큰 종류 | 크레딧 | 달러 환산 |
|---|---|---|
| 입력 토큰 | 3,251.5 | $2.17 |
| 출력 토큰 | 26,012 | $17.34 |
| 캐시된 토큰 | 325.15 | $0.22 |
* 1,500 크레딧 ≈ $1 (실제 요금은 사용량에 따라 달라질 수 있습니다)
curl -X POST "https://api.core.today/llm/openai/v1/responses" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer cdt_your_api_key" \
-d '{
"model": "gpt-5.2-codex",
"input": "Diagnose why this async job queue occasionally drops tasks under load, then propose and implement a fix:\n\n<code snippet>",
"max_output_tokens": 6000
}'| 파라미터 | 타입 | 필수 | 기본값 | 설명 |
|---|---|---|---|---|
model | string | Yes | gpt-5.2-codex | 모델 식별자 |
input | string | array | Yes | - | Responses API 입력: 문자열 또는 입력 아이템 배열 (메시지, 도구 결과) |
instructions | string | No | - | 실행에 적용할 시스템 수준 지시문 |
max_output_tokens | integer | No | - | 응답의 최대 토큰 수 (Responses API 필드; max_tokens 아님) |
stream | boolean | No | false | Server-Sent Events 스트리밍 활성화 |
최신 Codex 세대를 활용한 Responses API 요청
curl -X POST "https://api.core.today/llm/openai/v1/responses" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer cdt_your_api_key" \
-d '{
"model": "gpt-5.2-codex",
"input": "Diagnose why this async job queue occasionally drops tasks under load, then propose and implement a fix:\n\n<code snippet>",
"max_output_tokens": 6000
}'