재현 가능한 결과를 위한 GPT-5.1의 날짜별 스냅샷입니다. 반복 컨텍스트에 대한 캐시된 입력 토큰으로 비용 절감을 지원합니다. 모델 버전 고정이 필요한 프로덕션 배포에 적합합니다.
이 모델의 사용법을 Claude, ChatGPT 등에 복사
| 토큰 종류 | 크레딧 | 달러 환산 |
|---|---|---|
| 입력 토큰 | 1,250 | $1.25 |
| 출력 토큰 | 10,000 | $10.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.1-2025-11-13",
"messages": [
{
"role": "system",
"content": "You are a data analyst. Provide consistent, structured analysis."
},
{
"role": "user",
"content": "Analyze the key factors driving cloud computing adoption in 2026."
}
],
"temperature": 0,
"max_completion_tokens": 2000
}'| 파라미터 | 타입 | 필수 | 기본값 | 설명 |
|---|---|---|---|---|
messages | array | Yes | - | role과 content를 포함한 메시지 객체 배열 |
model | string | Yes | gpt-5.1-2025-11-13 | 모델 식별자 |
max_completion_tokens | integer | No | 4096 | 응답의 최대 토큰 수 (최대 32768). 주의: 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) |
실행 간 일관된 결과를 위한 모델 버전 고정
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.1-2025-11-13",
"messages": [
{
"role": "system",
"content": "You are a data analyst. Provide consistent, structured analysis."
},
{
"role": "user",
"content": "Analyze the key factors driving cloud computing adoption in 2026."
}
],
"temperature": 0,
"max_completion_tokens": 2000
}'POST /llm/openai/v1/chat/completions