
Pairs DeepSeek R1 chain-of-thought 는 Anthropic Claude 크리에이티브와 코딩되지 않은 인터페이스 뒤에 코드 생성을 주장합니다.
Pairs DeepSeek R1 chain-of-thought 는 Anthropic Claude 크리에이티브와 코딩되지 않은 인터페이스 뒤에 코드 생성을 주장합니다.
다른 이름 WinFunc DeepReasoning
deepreasoning/v1/chat/completionsPOST/v1/responsesPOST/v1/messagesPOST/v1beta/models/deepreasoning:generateContentEmpirioLabs 카탈로그의 실시간 종량제 요금입니다. 사용한 만큼만 결제하며 월 최소 요금이 없습니다.
DeepReasoning은(는) OpenAI 호환 Chat Completions API를 제공합니다. 아무 OpenAI SDK나 EmpirioLabs API 키와 함께 https://api.empiriolabs.ai/v1로 지정하고 모델 ID deepreasoning를 사용하세요. EmpirioLabs 대시보드에서 API 키를 발급받으세요.
curl https://api.empiriolabs.ai/v1/chat/completions \
-H "Authorization: Bearer $EMPIRIOLABS_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "deepreasoning",
"messages": [
{"role": "user", "content": "Write a haiku about the ocean."}
]
}'from openai import OpenAI
client = OpenAI(
base_url="https://api.empiriolabs.ai/v1",
api_key="YOUR_EMPIRIOLABS_API_KEY",
)
response = client.chat.completions.create(
model="deepreasoning",
messages=[{"role": "user", "content": "Write a haiku about the ocean."}],
)
print(response.choices[0].message.content)EmpirioLabs에서 DeepReasoning API가 지원하는 요청 파라미터입니다. 필드를 생략하면 기본값이 적용됩니다.
| 파라미터 | 유형 | 기본값 | 범위 / 값 | 설명 |
|---|---|---|---|---|
| temperature | number | 0.7 | 0 ~ 2 | 샘플링 온도. R1 추론 단계와 Claude 합성 단계 모두에 적용됩니다. |
| top_p | number | 0.9 | 0 ~ 1 | 핵 샘플링. R1 추론 단계와 Claude 합성 단계 모두에 적용됩니다. |
| max_tokens | number | 8192 | 1 ~ 65536 | Claude 합성 단계의 최대 출력 토큰. |
| anthropic_model | enum | claude-sonnet-4-5-20250929 | claude-sonnet-4-5-20250929, claude-haiku-4-5-20251001, claude... | DeepSeek R1 0528 추론과 조합할 Claude 모델을 선택하세요. R1 모델은 chain-of-thought을 생산합니다; 클로드 모델은 최종 답을 종합합니다. |
| response_format | enum | - | - | 출력을 유효한 JSON 객체(JSON 모드)로 반환합니다. 프롬프트에 원하는 필드를 설명하세요. |
| web_search_linkup | boolean | false | - | Linkup이 제공하는 선택적 웹 검색. 활성화되면 최신 웹 소스를 쿼리로 최신 사용자 메시지를 검색하여 모델에 추가 맥락으로 제공합니다. 모델의 일반적인 토큰 비용 외에 호출당 $0.013 추가 비용이 발생합니다. 기본적으로 비활성화되어 있습니다. |
| disable_formatting | boolean | false | - | 활성화되면 게이트웨이는 Linkup 웹 검색을 사용한 어시스턴트 응답에 "Sources" 풋을 추가하지 않습니다. 모델 출력이 장식이 전혀 예상되지 않는 다른 시스템으로 전송될 때 유용합니다. |
R1-0528 reasoning paired with one of: Claude Sonnet 4.5 (default), Haiku 4.5, Opus 4.5, Sonnet 4, Opus 4.1, Opus 4, Sonnet 3.7, Haiku 3.5, Opus 3.
EmpirioLabs hosts the project's open-source API/orchestration logic from its GitHub repo on our own infrastructure, that's the "native" part. The underlying models (R1-0528 reasoning + the Claude completion model you pick) are still dialed via their respective official APIs. We don't host the model weights themselves.
EmpirioLabs에서 DeepReasoning은(는) 종량제로 청구됩니다. 이 페이지의 실시간 요금표는 항상 API 청구 금액과 일치합니다.
네. DeepReasoning은(는) OpenAI 호환 Chat Completions API를 제공하므로, 기존 OpenAI SDK에서 base_url을 https://api.empiriolabs.ai/v1로 지정하고 모델 ID를 deepreasoning로 설정하면 바로 동작합니다.
네. EmpirioLabs 플레이그라운드에서 API와 동일한 파라미터로 DeepReasoning을(를) 브라우저에서 실행하므로 코드를 작성하기 전에 프롬프트를 테스트할 수 있습니다.
EmpirioLabs 계정을 만든 다음 대시보드의 API Keys에서 키를 생성하세요. 요금은 종량제 크레딧이라 실행한 요청에 대해서만 결제합니다.