1M 컨텍스트 윈도우와 128K 출력 토큰을 갖춘 OpenAI의 최신 플래그십 모델입니다. none부터 xhigh까지 조절 가능한 추론 수준으로 모든 영역에서 최상위 추론 성능을 제공합니다.
이 모델의 사용법을 Claude, ChatGPT 등에 복사
| 토큰 종류 | 크레딧 | 달러 환산 |
|---|---|---|
| 입력 토큰 | 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
}'| 파라미터 | 타입 | 필수 | 기본값 | 설명 |
|---|---|---|---|---|
messages | array | Yes | - | role과 content를 포함한 메시지 객체 배열 |
model | string | Yes | gpt-5.4 | 모델 식별자 |
max_completion_tokens | integer | No | 4096 | 응답의 최대 토큰 수 (최대 128000). 주의: max_tokens 대신 max_completion_tokens 사용 |
reasoning_effort | string | No | medium | 추론 노력 수준: none, low, medium, high, xhigh nonelowmediumhighxhigh |
temperature | float | No | 1.0 | 샘플링 온도 (0-2) |
stream | boolean | No | false | Server-Sent Events 스트리밍 활성화 |
top_p | float | No | 1.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
}'POST /llm/openai/v1/chat/completions