DeepSeek-AI/DeepSeek-V4-Pro-0813

Philpax1 pts0 comments

deepseek-ai/DeepSeek-V4-Pro-0813 · Hugging Face

Log In<br>Sign Up

","lstrip":false,"normalized":true,"rstrip":false,"single_word":false},"eos_token":{"__type":"AddedToken","content":"","lstrip":false,"normalized":true,"rstrip":false,"single_word":false},"pad_token":{"__type":"AddedToken","content":"","lstrip":false,"normalized":true,"rstrip":false,"single_word":false},"unk_token":null}},"createdAt":"2026-08-13T03:05:06.000Z","discussionsDisabled":false,"discussionsSorting":"recently-created","downloads":0,"downloadsAllTime":0,"id":"deepseek-ai/DeepSeek-V4-Pro-0813","isLikedByUser":false,"availableInferenceProviders":[],"showHuggingChatEntry":false,"inference":"","lastModified":"2026-08-13T12:25:17.000Z","likes":34,"pipeline_tag":"text-generation","library_name":"transformers","librariesOther":[],"trackDownloads":true,"model-index":null,"private":false,"repoType":"model","gated":false,"tags":["transformers","safetensors","deepseek_v4","text-generation","arxiv:2606.19348","license:mit","endpoints_compatible","8-bit","fp8","region:us"],"tag_objs":[{"id":"text-generation","label":"Text Generation","type":"pipeline_tag","subType":"nlp"},{"id":"transformers","label":"Transformers","type":"library"},{"id":"safetensors","label":"Safetensors","type":"library"},{"id":"deepseek_v4","label":"deepseek_v4","type":"other","clickable":true},{"id":"endpoints_compatible","label":"Inference Endpoints","type":"other","clickable":true},{"id":"8-bit","label":"8-bit precision","type":"other","clickable":true},{"id":"fp8","label":"fp8","type":"other","clickable":true},{"id":"arxiv:2606.19348","label":"arxiv:2606.19348","type":"arxiv","extra":{"paperTitle":"DeepSeek-V4: Towards Highly Efficient Million-Token Context Intelligence"}},{"id":"license:mit","label":"mit","type":"license"},{"type":"region","label":"🇺🇸 Region: US","id":"region:us"}],"transformersInfo":{"auto_model":"AutoModelForCausalLM","pipeline_tag":"text-generation","processor":"AutoTokenizer"},"widgetData":[{"text":"My name is Julien and I like to"},{"text":"I like traveling by train because"},{"text":"Paris is an amazing place to visit,"},{"text":"Once upon a time,"}],"safetensors":{"parameters":{"BF16":2954820352,"I64":2327040,"F32":90530058,"F8_E4M3":23952621568,"I8":1623497637888},"total":1650497936906,"sharded":true,"totalFileSize":892746633694},"hasBlockedOids":false,"region":"us","isQuantized":false,"licenseFilePath":"LICENSE"},"discussionsStats":{"closed":0,"open":3,"total":3},"query":{},"inferenceContextData":{"billableEntities":[],"entityName2Providers":{}},"hasQuantizations":false,"copyToBucketNamespaces":[]}">

DeepSeek-V4-Pro-0813

Technical Report 👁️

Introduction

DeepSeek-V4-Pro-0813 is the official release of DeepSeek-V4-Pro , superseding the preview version, with greatly enhanced agentic capabilities and performance improvements that are especially pronounced in production environments. It is built on the DeepSeek-V4-Pro (Preview) model structure, with a DSpark speculative decoding module attached.

DeepSeek-V4-Pro-0813 outperforms DeepSeek-V4-Pro (Preview) on the benchmarks listed below, and is broadly competitive with the strongest proprietary models available.

Benchmark<br>DeepSeek-V4-Pro-0813<br>DeepSeek-V4-Flash-0731<br>DeepSeek-V4-Pro (Preview)<br>DeepSeek-V4-Flash (Preview)<br>GLM-5.2<br>Kimi K3<br>Opus-4.8<br>Fable-5 (w/ fallback)

HLE (wo / w tools)<br>42.7 / 60.0<br>37.8 / 51.5<br>37.7 / 48.2<br>34.8 / 45.1<br>40.5 / 54.7<br>43.5 / 56.0<br>49.8 / 57.9<br>53.3 / 63.0

Terminal Bench 2.1<br>87.9<br>82.7<br>72.1<br>61.8<br>81.0<br>88.3<br>85.0<br>88.0

NL2Repo<br>61.5<br>54.2<br>38.5<br>39.4<br>48.9<br>69.7

Cybergym<br>83.3<br>76.7<br>52.7<br>38.7<br>80.0<br>78.3<br>83.1

DeepSWE<br>62.7<br>54.4<br>12.8<br>7.3<br>46.2<br>67.5<br>58.0<br>70.0

Toolathlon-Verified<br>74.1<br>70.3<br>55.9<br>49.7<br>59.9<br>76.5<br>76.2<br>77.9

Agents' Last Exam<br>25.7<br>25.2<br>16.5<br>15.8<br>23.8<br>27.6<br>25.7

AutomationBench (Public)<br>31.8<br>25.1<br>12.8<br>10.8<br>12.9<br>30.8<br>27.2<br>29.1

DSBench-FullStack †<br>71.1<br>68.7<br>41.8<br>37.0<br>61.8<br>73.7<br>71.6<br>77.2

DSBench-Hard †<br>67.2<br>59.6<br>31.1<br>25.8<br>54.5<br>63.0<br>71.7<br>68.3

Notes:

For the code-agent tasks among the public benchmarks above, DeepSeek-V4-Pro-0813 is evaluated with the minimal mode of DeepSeek Harness as the agent framework, using the max reasoning effort level with temperature = 1.0, top_p = 0.95.

† DSBench-FullStack is an internal full-stack development test set; DSBench-Hard is an internal test set of difficult coding-agent problems.

Chat Template

This release does not include a Jinja-format chat template. Instead, we provide a dedicated encoding folder with Python scripts and test cases demonstrating how to encode messages in OpenAI-compatible format into input strings for the model, and how to parse the model's text output. Please refer to the encoding folder for full documentation.

The reasoning_effort parameter now supports three levels — low, high, and max — which control how much deliberation the model spends before answering.

A brief example:

from encoding_dsv4 import encode_messages, parse_message_from_completion_text

messages = [<br>{"role": "user", "content": "hello"},<br>{"role":...

deepseek false text label type true

Related Articles