DeepReasoning API

Pairs DeepSeek R1 chain-of-thought 推理与Anthropic Claude在统一,数据控制的界面背后的创意和代码生成.

WinFunc文本生成发布日期 2025年1月26日专有端点

关于 DeepReasoning

Pairs DeepSeek R1 chain-of-thought 推理与Anthropic Claude在统一,数据控制的界面背后的创意和代码生成.

也称为 WinFunc DeepReasoning

reasoningthinking

DeepReasoning 规格

模型 ID
deepreasoning
提供方
WinFunc
类别
文本生成
发布日期
2025年1月26日
最大输出
32,000 个 token
输入
文本
输出
文本
结构化输出
JSON 模式
端点
POST/v1/chat/completionsPOST/v1/responsesPOST/v1/messagesPOST/v1beta/models/deepreasoning:generateContent

DeepReasoning API 价格

来自 EmpirioLabs 目录的实时按量计费价格。只为实际用量付费,没有月度最低消费。

类型
规格
价格
R1-0528 + Claude Sonnet 4.5 (过失)
每1K个令牌
In $0.012 / Out $0.058
R1-0528 + 克劳德·海库 4.5
每1K个令牌
In $0.0048 / Out $0.023
R1-0528 + 克劳德·奥普斯 4.5
每1K个令牌
In $0.019 / Out $0.092
R1-0528 + 克劳德·索内 4
每1K个令牌
In $0.012 / Out $0.058
R1-0528 + 克劳德·奥普斯 4.1
每1K个令牌
In $0.053 / Out $0.26
R1-0528 + 克劳德·奥普斯 4
每1K个令牌
In $0.053 / Out $0.26
网络搜索(链接)
引用时每次呼叫
$0.013
在完整价格页比较

如何调用 DeepReasoning API

DeepReasoning 提供 OpenAI 兼容的 Chat Completions API。用你的 EmpirioLabs API 密钥把任意 OpenAI SDK 指向 https://api.empiriolabs.ai/v1,并使用模型 ID deepreasoning。 在EmpirioLabs 控制台获取 API 密钥。

cURL
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."}
    ]
  }'
Python (OpenAI SDK)
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)
DeepReasoning API 完整参考

DeepReasoning API 参数

EmpirioLabs 上 DeepReasoning API 支持的请求参数。省略字段时使用默认值。

参数类型默认值范围 / 值描述
temperaturenumber0.70 到 2采样温度。适用于R1推理阶段和Claude综合阶段。
top_pnumber0.90 到 1核采样。适用于R1推理阶段和Claude综合阶段。
max_tokensnumber81921 到 65536Claude合成阶段的最大输出令牌数。
anthropic_modelenumclaude-sonnet-4-5-20250929claude-sonnet-4-5-20250929, claude-haiku-4-5-20251001, claude...选择Claude型号与DeepSeek R1 0528推理配合。R1型号生产chain-of-thought;克劳德模型综合了最终答案。
response_formatenum--返回输出为有效的 JSON 对象(JSON 模式)。描述你在提示词中想要的字段。
web_search_linkupbooleanfalse-可选的网页搜索由Linkup提供。启用后,最近的网页源会通过最新的用户消息作为查询检索,并作为额外上下文提供给模型。每次调用时,在模型正常的令牌成本基础上额外增加$0.013。默认为禁用。
disable_formattingbooleanfalse-启用后,网关不会在使用Linkup网页搜索的助理响应中附加“来源”脚部。当模型输出被传输到另一个不需要装饰的系统时,这很有用。

须知

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.

About "Native Inference" for this model

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.

DeepReasoning API:常见问题

DeepReasoning API 收费多少?

在 EmpirioLabs,DeepReasoning 按量计费。本页的实时价格表始终与 API 的实际计费一致。

DeepReasoning API 兼容 OpenAI 吗?

兼容。DeepReasoning 提供 OpenAI 兼容的 Chat Completions API,现有 OpenAI SDK 只需把 base_url 指向 https://api.empiriolabs.ai/v1 并把模型 ID 设为 deepreasoning 即可使用。

集成之前可以在浏览器里试用 DeepReasoning 吗?

可以。EmpirioLabs Playground在浏览器中以与 API 相同的参数运行 DeepReasoning,你可以在写代码之前先测试提示词。

如何获取 DeepReasoning API 密钥?

创建 EmpirioLabs 账户,然后在控制台的 API Keys生成密钥。计费使用按量付费的额度,只为实际发出的请求付费。

准备好使用更好的终端了吗?

查看我们的定价,或者如果你想将自己的模型部署到我们的堆栈中,请联系我们。