400K 컨텍스트와 128K 출력을 갖춘 초경량 최고속 GPT-5.4 변형 모델입니다. 최소 비용으로 고처리량, 저지연 애플리케이션을 위해 설계되었습니다. 도구 통합을 위한 MCP를 지원합니다.
이 모델의 사용법을 Claude, ChatGPT 등에 복사
| 토큰 종류 | 크레딧 | 달러 환산 |
|---|---|---|
| 입력 토큰 | 200 | $0.20 |
| 출력 토큰 | 1,250 | $1.25 |
* 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-nano",
"messages": [
{
"role": "system",
"content": "Classify the following text into one of these categories: positive, negative, neutral. Respond with only the category."
},
{
"role": "user",
"content": "The new product launch exceeded all expectations, with record-breaking sales in the first week."
}
],
"max_completion_tokens": 50,
"temperature": 0
}'| 파라미터 | 타입 | 필수 | 기본값 | 설명 |
|---|---|---|---|---|
messages | array | Yes | - | role과 content를 포함한 메시지 객체 배열 |
model | string | Yes | gpt-5.4-nano | 모델 식별자 |
max_completion_tokens | integer | No | 4096 | 응답의 최대 토큰 수 (최대 128000). 주의: max_tokens 대신 max_completion_tokens 사용 |
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 Nano를 활용한 고속 텍스트 분류
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-nano",
"messages": [
{
"role": "system",
"content": "Classify the following text into one of these categories: positive, negative, neutral. Respond with only the category."
},
{
"role": "user",
"content": "The new product launch exceeded all expectations, with record-breaking sales in the first week."
}
],
"max_completion_tokens": 50,
"temperature": 0
}'POST /llm/openai/v1/chat/completions