Skip to main content
OpenAI빠름울트라

GPT-5.4

1M 컨텍스트 윈도우와 128K 출력 토큰을 갖춘 OpenAI의 최신 플래그십 모델입니다. none부터 xhigh까지 조절 가능한 추론 수준으로 모든 영역에서 최상위 추론 성능을 제공합니다.

5 크레딧
요청당
1M 토큰 컨텍스트 윈도우
128K 최대 출력 토큰
조절 가능한 추론 (none/low/medium/high/xhigh)
함수 호출, 웹 검색, 파일 검색, 컴퓨터 사용
네이티브 비전 지원

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

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

llms.txt

모델 상세 사양

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

기능 지원

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

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

토큰 종류크레딧달러 환산
입력 토큰2,500$2.50
출력 토큰15,000$15.00

* 1 크레딧 ≈ $0.001 (실제 요금은 사용량에 따라 달라질 수 있습니다)

빠른 시작

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.4",
  "messages": [
    {
      "role": "system",
      "content": "You are an expert analyst with deep domain knowledge."
    },
    {
      "role": "user",
      "content": "Compare the architectural trade-offs between microservices and monolithic architectures for a fintech startup processing 10M transactions per day."
    }
  ],
  "reasoning_effort": "high",
  "max_completion_tokens": 4000
}'

파라미터

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

예제

고급 추론

GPT-5.4를 활용한 복잡한 다단계 분석

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.4",
  "messages": [
    {
      "role": "system",
      "content": "You are an expert analyst with deep domain knowledge."
    },
    {
      "role": "user",
      "content": "Compare the architectural trade-offs between microservices and monolithic architectures for a fintech startup processing 10M transactions per day."
    }
  ],
  "reasoning_effort": "high",
  "max_completion_tokens": 4000
}'

코드 생성

GPT-5.4로 프로덕션 품질 코드 생성

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.4",
  "messages": [
    {
      "role": "system",
      "content": "You are a senior software engineer. Write clean, well-tested, production-ready code."
    },
    {
      "role": "user",
      "content": "Implement a rate limiter using the token bucket algorithm in Go with Redis backend."
    }
  ],
  "temperature": 0.3,
  "max_completion_tokens": 4000
}'

팁 & 모범 사례

1가장 복잡한 추론 작업에는 reasoning_effort 'xhigh' 사용
2128K 출력 토큰으로 매우 긴 콘텐츠 생성 가능
3에이전트 워크플로우를 위한 컴퓨터 사용 및 웹 검색 도구 지원
4코딩 및 분석 작업에는 낮은 온도(0.2-0.5) 권장

사용 사례

복잡한 다단계 추론 및 분석
고급 코드 생성 및 아키텍처 설계
긴 문서 처리 및 요약
도구 사용 에이전트 워크플로우
엔터프라이즈급 콘텐츠 처리

모델 정보

제공자OpenAI
버전2026-03
카테고리LLM
가격5 크레딧

API Endpoint

POST /llm/openai/v1/chat/completions
Playground에서 테스트문서로 돌아가기