OpenAI GPT-5.6 패밀리(2026년 7월 GA)의 균형 티어입니다. Sol의 절반 가격으로 플래그십에 근접한 품질을 제공하며, 1M 토큰 컨텍스트 윈도우, 128K 최대 출력 토큰, 90% 할인된 캐시 입력을 지원합니다.
콘솔의 Playground에서 별도 코드 없이 이 모델을 즉시 테스트할 수 있어요
이 모델의 사용법을 Claude, ChatGPT 등에 복사
| 토큰 종류 | 크레딧 | 달러 환산 |
|---|---|---|
| 입력 토큰 | 4,645 | $3.10 |
| 출력 토큰 | 27,870 | $18.58 |
| 캐시된 토큰 | 464 | $0.31 |
* 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": "gpt-5.6-terra",
"messages": [
{
"role": "system",
"content": "You are a helpful customer support assistant."
},
{
"role": "user",
"content": "My webhook deliveries started failing with 403 yesterday. What should I check?"
}
],
"max_completion_tokens": 2000
}'| 파라미터 | 타입 | 필수 | 기본값 | 설명 |
|---|---|---|---|---|
messages | array | Yes | - | role과 content를 포함한 메시지 객체 배열 |
model | string | Yes | gpt-5.6-terra | 모델 식별자 |
max_completion_tokens | integer | No | 4096 | 응답의 최대 토큰 수 (최대 128000). 주의: max_tokens 대신 max_completion_tokens 사용 |
reasoning_effort | string | No | medium | 추론 노력 수준: none, low, medium, high, xhigh nonelowmediumhighxhigh |
temperature | float | No | 1.0 | 샘플링 온도 (0-2) |
stream | boolean | No | false | Server-Sent Events 스트리밍 활성화 |
대량 어시스턴트 트래픽에 맞는 품질·비용 균형
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": "gpt-5.6-terra",
"messages": [
{
"role": "system",
"content": "You are a helpful customer support assistant."
},
{
"role": "user",
"content": "My webhook deliveries started failing with 403 yesterday. What should I check?"
}
],
"max_completion_tokens": 2000
}'절반 비용으로 플래그십급 추론 코드 리뷰
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": "gpt-5.6-terra",
"messages": [
{
"role": "system",
"content": "You are a strict code reviewer. Report bugs first."
},
{
"role": "user",
"content": "<unified diff>"
}
],
"reasoning_effort": "high",
"max_completion_tokens": 4000
}'