Skip to main content
OpenAI빠름울트라

GPT-5

OpenAI의 최신 플래그십 모델입니다. 1M 토큰 컨텍스트 윈도우와 32K 출력 토큰을 갖추고 추론, 코딩, 창의적 작업 전반에서 탁월한 성능을 제공합니다. 비전, 함수 호출, JSON 모드를 지원합니다.

3 크레딧
1K 토큰당 (평균)
1M 토큰 컨텍스트 윈도우
32K 최대 출력 토큰
고급 추론 기능
네이티브 비전 (텍스트 + 이미지)
함수 호출 & JSON 모드
구조화된 출력
스트리밍 지원

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

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

llms.txt

모델 상세 사양

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

기능 지원

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

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

토큰 종류크레딧달러 환산
입력 토큰2,500$2.50
출력 토큰20,000$20.00
캐시된 토큰625$0.63

* 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",
  "messages": [
    {
      "role": "system",
      "content": "You are an expert analyst. Provide thorough, well-structured analysis."
    },
    {
      "role": "user",
      "content": "Analyze the potential impacts of quantum computing on current encryption standards and suggest a migration roadmap for enterprise systems."
    }
  ],
  "max_completion_tokens": 4000
}'

파라미터

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

예제

복잡한 분석

GPT-5를 활용한 다단계 추론 및 분석

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",
  "messages": [
    {
      "role": "system",
      "content": "You are an expert analyst. Provide thorough, well-structured analysis."
    },
    {
      "role": "user",
      "content": "Analyze the potential impacts of quantum computing on current encryption standards and suggest a migration roadmap for enterprise systems."
    }
  ],
  "max_completion_tokens": 4000
}'

코드 생성

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

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",
  "messages": [
    {
      "role": "system",
      "content": "You are an expert software engineer. Write clean, well-documented code."
    },
    {
      "role": "user",
      "content": "Create a TypeScript rate limiter middleware for Express.js that uses a sliding window algorithm with Redis for distributed rate limiting."
    }
  ],
  "max_completion_tokens": 4000
}'

JSON 데이터 추출

비정형 텍스트에서 구조화된 데이터 추출

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",
  "messages": [
    {
      "role": "system",
      "content": "Extract structured data from the given text. Always respond with valid JSON."
    },
    {
      "role": "user",
      "content": "Parse this invoice: 'Invoice #2025-0842 from Acme Corp to Beta LLC, dated August 15 2025. Items: 10x Widget A at $25.00, 5x Widget B at $50.00. Tax: 10%. Shipping: $15.00'"
    }
  ],
  "response_format": {
    "type": "json_object"
  },
  "max_tokens": 1000
}'

팁 & 모범 사례

1최신 플래그십 모델 — 모든 작업에서 최고의 전반적 성능
21M 컨텍스트 윈도우로 전체 코드베이스나 긴 문서 분석에 이상적
3복잡한 추론, 코딩, 창의적 작업에 탁월
4코딩/사실 기반 작업에는 낮은 온도 (0.1-0.3) 사용
5비전은 URL 또는 base64 인코딩 이미지와 함께 작동
6긴 응답에는 스트리밍 권장
7구조화된 도구 상호작용에는 함수 호출 사용

사용 사례

복잡한 다단계 추론 작업
고급 코드 생성 및 리뷰
긴 문서 요약 및 분석
문서/이미지에서 데이터 추출
에이전트 워크플로우 및 도구 사용
기업 콘텐츠 처리

모델 정보

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

API Endpoint

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