DeepSeek의 최상위 V4 모델입니다 (체크포인트 V4-Pro-0813). thinking 모드가 기본인 고급 추론 모델로, 1M 토큰 컨텍스트와 캐시 읽기 할인을 지원하면서도 동급 프론티어 모델 대비 훨씬 저렴합니다.
콘솔의 Playground에서 별도 코드 없이 이 모델을 즉시 테스트할 수 있어요
이 모델의 사용법을 Claude, ChatGPT 등에 복사
| 토큰 종류 | 크레딧 | 달러 환산 |
|---|---|---|
| 입력 토큰 | 808 | $0.54 |
| 출력 토큰 | 1,616 | $1.08 |
| 캐시된 토큰 | 6.7 | $0.00 |
* 1,500 크레딧 ≈ $1 (실제 요금은 사용량에 따라 달라질 수 있습니다)
curl -X POST "https://api.core.today/llm/deepseek/v1/chat/completions" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer cdt_your_api_key" \
-d '{
"model": "deepseek-v4-pro",
"messages": [
{
"role": "user",
"content": "Prove that the sum of two even numbers is even."
}
],
"max_tokens": 2048
}'| 파라미터 | 타입 | 필수 | 기본값 | 설명 |
|---|---|---|---|---|
model | string | Yes | - | 모델 ID입니다. 예: "deepseek-v4-pro". |
messages | array | Yes | - | OpenAI 형식의 대화 메시지 배열입니다 (system/user/assistant 역할). |
temperature | number | No | 0.7 | 샘플링 온도입니다 (0~2). |
max_tokens | integer | No | 2048 | 최대 완성 토큰 수입니다. |
stream | boolean | No | false | SSE 스트리밍 응답 여부입니다. |
OpenAI 호환 챗 컴플리션 요청
curl -X POST "https://api.core.today/llm/deepseek/v1/chat/completions" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer cdt_your_api_key" \
-d '{
"model": "deepseek-v4-pro",
"messages": [
{
"role": "user",
"content": "Prove that the sum of two even numbers is even."
}
],
"max_tokens": 2048
}'