DeepSeek V4 Pro 0813 API

Official 0813 Pro release with major gains across coding, repository work, tool use, and agent tasks, plus hybrid thinking and a 1M context window.

DeepSeek文本生成1M 上下文发布日期 2026年8月13日Singapore专有端点

关于 DeepSeek V4 Pro 0813

Official 0813 Pro release with major gains across coding, repository work, tool use, and agent tasks, plus hybrid thinking and a 1M context window.

Supports text input, hybrid thinking with enable_thinking and thinking_budget, function calling, strict JSON Schema output, and optional Linkup web search. Thinking tokens are billed as output tokens.

也称为 DeepSeek Pro 0813, DeepSeek 0813

reasoningfunction callingstructured outputagentic coding

DeepSeek V4 Pro 0813 规格

模型 ID
deepseek-v4-pro-0813
提供方
DeepSeek
类别
文本生成
发布日期
2026年8月13日
上下文窗口
1M 个 token
最大输出
393,216 个 token
输入
文本
输出
文本
结构化输出
JSON Schema
区域
Singapore
端点
POST/v1/chat/completionsPOST/v1/responsesPOST/v1/messagesPOST/v1beta/models/deepseek-v4-pro-0813:generateContent
备用模型 ID
deepseek/deepseek-v4-pro-0813deepseek-ai/deepseek-v4-pro-0813

DeepSeek V4 Pro 0813 API 价格

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

类型
规格
价格
输入
per 1M prompt tokens
$1.32
输出
per 1M generated tokens
$3.96
Web Search (Linkup)
per call when invoked
$0.013
在完整价格页比较

如何调用 DeepSeek V4 Pro 0813 API

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

cURL
curl https://api.empiriolabs.ai/v1/chat/completions \
  -H "Authorization: Bearer $EMPIRIOLABS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "deepseek-v4-pro-0813",
    "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="deepseek-v4-pro-0813",
    messages=[{"role": "user", "content": "Write a haiku about the ocean."}],
)
print(response.choices[0].message.content)
DeepSeek V4 Pro 0813 API 完整参考

DeepSeek V4 Pro 0813 API 参数

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

参数类型默认值范围 / 值描述
temperaturenumber0.70 到 2Sampling temperature. 0 = deterministic, 2 = maximum randomness.
top_pnumber0.90 到 1Nucleus sampling probability mass. Lower = more focused.
max_tokensnumber40961 到 393216Maximum output tokens.
stopstring--Up to 4 strings where the model will stop generating further tokens.
enable_thinkingbooleantrue-Enable step-by-step reasoning before answering.
thinking_budgetnumber327681 到 393216Maximum tokens reserved for the reasoning process. Up to 393216.
reasoning_effortenummediumnone, low, medium, high, maxReasoning effort level. none disables thinking. low, medium, high, and max set bounded thinking budgets sized to the selected model. Sent as an OpenAI-style...
response_formatenum--Constrain the output to JSON. Use JSON mode for any valid JSON object, or JSON schema to force output that matches a schema you provide.
web_search_linkupbooleanfalse-Optional web search powered by Linkup. When enabled, recent web sources are retrieved using your latest user message as the query and provided to the model as additional context. Adds $0.013 per call when invoked on top of the model's normal token cost. Disabled by default.
disable_formattingbooleanfalse-When enabled, the gateway will not append the "Sources" footer to assistant responses that used Linkup web search. Useful when the model output is piped to another...

须知

Thinking is enabled by default and can be disabled. Reasoning tokens are billed as output tokens. Optional Linkup web search is billed only when invoked.

DeepSeek V4 Pro 0813 API:常见问题

DeepSeek V4 Pro 0813 API 收费多少?

在 EmpirioLabs,DeepSeek V4 Pro 0813 按量计费:Input $1.32 per 1M prompt tokens; Output $3.96 per 1M generated tokens; Web Search (Linkup) $0.013 per call when invoked。本页的实时价格表始终与 API 的实际计费一致。

DeepSeek V4 Pro 0813 的上下文窗口有多大?

DeepSeek V4 Pro 0813 支持 1M token 的上下文窗口,每次响应最多 393,216 个输出 token。

DeepSeek V4 Pro 0813 API 兼容 OpenAI 吗?

兼容。DeepSeek V4 Pro 0813 提供 OpenAI 兼容的 Chat Completions API,现有 OpenAI SDK 只需把 base_url 指向 https://api.empiriolabs.ai/v1 并把模型 ID 设为 deepseek-v4-pro-0813 即可使用。

集成之前可以在浏览器里试用 DeepSeek V4 Pro 0813 吗?

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

如何获取 DeepSeek V4 Pro 0813 API 密钥?

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

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

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