DeepSeek-V4-Flash 是 DeepSeek 最新开源的混合专家(MoE)模型,总参数量达 2840 亿,推理时仅激活 130 亿参数,在保持极快推理速度的同时兼顾强大性能。原生支持 100 万 token 超长上下文,并提供 Non-Think、Think High、Think Max 三种推理模式,可按任务复杂度灵活切换,以 MIT 协议完全开放。
通过智能路由聚合多家服务商,保障调用稳定
curl https://api.tokplus.ai/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $TOKGEN_API_KEY" \
-d '{
"model": "deepseek/deepseek-v4-flash",
"messages": [
{"role": "user", "content": "你好,介绍一下你自己"}
],
"stream": true
}'