Skip to main content
OpenAI빠름높음

GPT-5 Mini

GPT-5의 빠르고 효율적인 변형 모델입니다. 1M 토큰 컨텍스트 윈도우와 32K 출력 토큰을 갖추고 GPT-5 대비 훨씬 저렴한 비용으로 추론, 코딩, 창의적 작업 전반에서 우수한 성능을 제공합니다.

1 크레딧
1K 토큰당 (평균)
1M 토큰 컨텍스트 윈도우
32K 최대 출력 토큰
빠른 추론 속도
네이티브 비전 (텍스트 + 이미지)
함수 호출 & JSON 모드
구조화된 출력
비용 효율적인 GPT-5 성능

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

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

llms.txt

모델 상세 사양

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

기능 지원

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

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

토큰 종류크레딧달러 환산
입력 토큰500$0.50
출력 토큰4,000$4.00
캐시된 토큰125$0.13

* 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-mini",
  "messages": [
    {
      "role": "system",
      "content": "You are a helpful assistant. Be concise and clear."
    },
    {
      "role": "user",
      "content": "Explain the difference between REST and GraphQL APIs, including when to use each."
    }
  ],
  "max_completion_tokens": 2000
}'

파라미터

파라미터타입필수기본값설명
messagesarrayYes-role과 content를 포함한 메시지 객체 배열
modelstringYesgpt-5-mini모델 식별자
max_completion_tokensintegerNo4096응답의 최대 토큰 수 (최대 32768). 주의: max_tokens 대신 max_completion_tokens 사용
reasoning_effortstringNomedium추론 노력 수준: low, medium, high
streambooleanNofalseServer-Sent Events 스트리밍 활성화
response_formatobjectNo-응답 형식: JSON 모드의 경우 { type: 'json_object' }
toolsarrayNo-모델이 호출할 수 있는 도구(함수) 목록

예제

빠른 채팅

GPT-5 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-mini",
  "messages": [
    {
      "role": "system",
      "content": "You are a helpful assistant. Be concise and clear."
    },
    {
      "role": "user",
      "content": "Explain the difference between REST and GraphQL APIs, including when to use each."
    }
  ],
  "max_completion_tokens": 2000
}'

코드 디버깅

GPT-5 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-mini",
  "messages": [
    {
      "role": "system",
      "content": "You are an expert debugger. Find and fix bugs in the provided code."
    },
    {
      "role": "user",
      "content": "This Python function should return the nth Fibonacci number but it's running too slowly for large n. Optimize it:\n\ndef fib(n):\n    if n <= 1:\n        return n\n    return fib(n-1) + fib(n-2)"
    }
  ],
  "max_completion_tokens": 2000
}'

팁 & 모범 사례

1대부분의 일상 작업에 최고의 가성비 — 저비용으로 우수한 성능
2GPT-5 대비 입력 토큰 5배, 출력 토큰 5배 저렴
3긴 문서 처리를 위한 GPT-5와 동일한 1M 컨텍스트 윈도우
4비용이 중요한 대량 애플리케이션에 이상적
5채팅, 요약, 코드 작업에 활용
6반응형 사용자 경험을 위해 스트리밍 권장

사용 사례

범용 채팅 및 어시스턴스
코드 생성 및 디버깅
문서 요약
콘텐츠 제작 및 편집
데이터 추출 및 분류
API 통합 및 자동화

모델 정보

제공자OpenAI
버전2025-08-07
카테고리LLM
가격1 크레딧

API Endpoint

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