Skip to main content
OpenAI빠름울트라

GPT-5.2

OpenAI의 최신이자 가장 진보된 GPT 모델입니다. 향상된 기능으로 추론, 코딩, 창의적 작업 전반에서 최첨단 성능을 제공합니다.

4 크레딧
1K 토큰당 (평균)
최신 GPT 아키텍처
256K 컨텍스트 윈도우
32K 최대 출력 토큰
향상된 추론
네이티브 멀티모달 지원
고급 함수 호출

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

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

llms.txt

모델 상세 사양

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

기능 지원

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

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

토큰 종류크레딧달러 환산
입력 토큰3,500$3.50
출력 토큰28,000$28.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.2",
  "messages": [
    {
      "role": "system",
      "content": "You are an expert analyst."
    },
    {
      "role": "user",
      "content": "Analyze the potential economic impacts of widespread AI adoption in healthcare, considering both developed and developing nations."
    }
  ],
  "max_completion_tokens": 4000
}'

파라미터

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

예제

고급 추론

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

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.2",
  "messages": [
    {
      "role": "system",
      "content": "You are an expert analyst."
    },
    {
      "role": "user",
      "content": "Analyze the potential economic impacts of widespread AI adoption in healthcare, considering both developed and developing nations."
    }
  ],
  "max_completion_tokens": 4000
}'

팁 & 모범 사례

1복잡한 작업에 가장 강력한 OpenAI 모델
2사실적/분석적 작업에는 낮은 온도 사용
3GPT-5.1보다 큰 컨텍스트 지원
4긴 응답에는 스트리밍 권장

사용 사례

복잡한 다단계 추론
고급 코드 생성
장문 콘텐츠 제작
연구 및 분석
엔터프라이즈 애플리케이션

모델 정보

제공자OpenAI
버전2025-12
카테고리LLM
가격4 크레딧

API Endpoint

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