Skip to main content
Core.Today
|
OpenAI빠름높음

GPT-5.6 Luna

OpenAI GPT-5.6 패밀리(2026년 7월 GA)의 고속·저비용 티어입니다. 백만 토큰당 $1/$6의 가격으로 고처리량 워크로드에 최적화되어 있으며, 1M 토큰 컨텍스트 윈도우, 128K 최대 출력 토큰, 90% 할인된 캐시 입력을 지원합니다.

1,858/11,148크레딧
입력 / 출력 · 100만 토큰당
GPT-5.6 패밀리의 고속·저비용 티어
1M 토큰 컨텍스트 윈도우
128K 최대 출력 토큰
학습 기준일: 2026년 2월
캐시 입력 가격 (90% 할인)
조절 가능한 추론 노력 수준
함수 호출 및 네이티브 비전 지원

지금 바로 실행해보세요

콘솔의 Playground에서 별도 코드 없이 이 모델을 즉시 테스트할 수 있어요

로그인 후 사용해보기

AI 어시스턴트에서 사용하기

이 모델의 사용법을 Claude, ChatGPT 등에 복사

모델 상세 사양

컨텍스트 윈도우
1M
토큰
최대 출력
128K
토큰
학습 데이터
2026-02
호환 SDK
OpenAI

기능 지원

비전
함수 호출
스트리밍
JSON 모드
시스템 프롬프트

토큰별 가격 (1M 토큰당)

토큰 종류크레딧달러 환산
입력 토큰1,858$1.24
출력 토큰11,148$7.43
캐시된 토큰186$0.12

* 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-luna",
  "messages": [
    {
      "role": "system",
      "content": "Classify the ticket as: billing, bug, feature_request. Respond with only the label."
    },
    {
      "role": "user",
      "content": "I was charged twice for my subscription this month."
    }
  ],
  "max_completion_tokens": 20,
  "temperature": 0
}'

파라미터

파라미터타입필수기본값설명
messagesarrayYes-role과 content를 포함한 메시지 객체 배열
modelstringYesgpt-5.6-luna모델 식별자
max_completion_tokensintegerNo4096응답의 최대 토큰 수 (최대 128000). 주의: max_tokens 대신 max_completion_tokens 사용
reasoning_effortstringNomedium추론 노력 수준: none, low, medium, high, xhigh
nonelowmediumhighxhigh
temperaturefloatNo1.0샘플링 온도 (0-2)
streambooleanNofalseServer-Sent Events 스트리밍 활성화

예제

대량 분류

GPT-5.6 최저 가격으로 고처리량 라벨링

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-luna",
  "messages": [
    {
      "role": "system",
      "content": "Classify the ticket as: billing, bug, feature_request. Respond with only the label."
    },
    {
      "role": "user",
      "content": "I was charged twice for my subscription this month."
    }
  ],
  "max_completion_tokens": 20,
  "temperature": 0
}'

실시간 챗

인터랙티브 UI를 위한 저지연 스트리밍 응답

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-luna",
  "messages": [
    {
      "role": "user",
      "content": "Give me three taglines for a coffee subscription."
    }
  ],
  "stream": true,
  "max_completion_tokens": 500
}'

팁 & 모범 사례

1백만 토큰당 $1/$6의 최저가 GPT-5.6 티어 — 대량 호출의 기본값으로 적합
2반복되는 시스템 프롬프트에는 캐시 입력($0.10/M, 90% 할인) 활용
3단순 작업에는 reasoning_effort 'none'/'low'로 처리량 극대화
4더 깊은 추론이 필요하면 Terra나 Sol로 승격
5결정적 분류·추출에는 temperature 0 사용

사용 사례

대량 분류 및 라우팅
실시간 채팅 애플리케이션
대량 요약 및 추출
경량 에이전트 단계 및 도구 선택
비용에 민감한 RAG 파이프라인