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

GPT-5.4 Mini

400K 컨텍스트 윈도우와 128K 출력 토큰을 갖춘 GPT-5.4의 빠르고 비용 효율적인 변형 모델입니다. 일상적인 작업에서 성능과 가성비의 탁월한 균형을 제공합니다.

2 크레딧
요청당
400K 컨텍스트 윈도우
128K 최대 출력 토큰
빠른 추론 속도
합리적인 가격
완전한 함수 호출 지원

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

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

llms.txt

모델 상세 사양

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

기능 지원

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

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

토큰 종류크레딧달러 환산
입력 토큰750$0.75
출력 토큰4,500$4.50

* 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-mini",
  "messages": [
    {
      "role": "system",
      "content": "You are a helpful assistant."
    },
    {
      "role": "user",
      "content": "Explain the difference between REST and GraphQL APIs with pros and cons."
    }
  ],
  "temperature": 0.7,
  "max_completion_tokens": 2000
}'

파라미터

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

예제

빠른 채팅

GPT-5.4 Mini를 활용한 효율적인 대화

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-mini",
  "messages": [
    {
      "role": "system",
      "content": "You are a helpful assistant."
    },
    {
      "role": "user",
      "content": "Explain the difference between REST and GraphQL APIs with pros and cons."
    }
  ],
  "temperature": 0.7,
  "max_completion_tokens": 2000
}'

팁 & 모범 사례

1대부분의 일상 작업에서 속도와 품질의 탁월한 균형
2GPT-5.4 대비 훨씬 저렴한 비용으로 128K 출력 토큰
3채팅, 코드 생성, 콘텐츠 제작에 활용
4긴 응답에는 스트리밍 권장

사용 사례

범용 채팅 및 어시스턴트
코드 생성 및 리뷰
콘텐츠 제작 및 편집
데이터 추출 및 분류
실시간 애플리케이션

모델 정보

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

API Endpoint

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