Close Menu
    Facebook X (Twitter) Instagram
    • Privacy Policy
    • Terms Of Service
    • Social Media Disclaimer
    • DMCA Compliance
    • Anti-Spam Policy
    Facebook X (Twitter) Instagram
    Fintech Fetch
    • Home
    • Crypto News
      • Bitcoin
      • Ethereum
      • Altcoins
      • Blockchain
      • DeFi
    • AI News
    • Stock News
    • Learn
      • AI for Beginners
      • AI Tips
      • Make Money with AI
    • Reviews
    • Tools
      • Best AI Tools
      • Crypto Market Cap List
      • Stock Market Overview
      • Market Heatmap
    • Contact
    Fintech Fetch
    Home»AI News»DeepSeek Upgrades DeepSeek-V4-Flash-0731 with Major Agentic and Coding Gains
    DeepSeek Upgrades DeepSeek-V4-Flash-0731 with Major Agentic and Coding Gains
    AI News

    DeepSeek Upgrades DeepSeek-V4-Flash-0731 with Major Agentic and Coding Gains

    August 1, 20264 Mins Read
    Share
    Facebook Twitter LinkedIn Pinterest Email
    aistudios

    rewrite this content and keep HTML tags as is. This is content from rss feed and I don’t need their *Daily Debrief Newsletter*, their tags from bottom like this *Share this articleCategoriesTags*, Editorial Process section, phrases like *Featured image from Peakpx, chart from Tradingview.com*, SPECIAL OFFERS and similar sections – just remove such sections and save only article itself:

    DeepSeek published DeepSeek-V4-Flash-0731 on Hugging Face and moved the official V4-Flash API into public beta on July 31, 2026. The model card is explicit that this is the official release superseding the preview, and that the architecture and size are unchanged. The gains come from re-post-training, not a new design.

    The checkpoint ships with the DSpark speculative decoding module attached, matching the structure of DeepSeek-V4-Flash-DSpark. Hugging Face reports 304B parameters for the repo, which includes that draft module on top of the 284B base.

    On the API side, deepseek-v4-flash now natively supports the Responses API format and is adapted for Codex. The V4-Pro API and the app and web models were not updated.

    Is it deployable?

    Yes, in two very different ways.

    ledger

    Via API, it is deployable by almost anyone: DeepSeek’s pricing page lists deepseek-v4-flash at $0.14 per 1M input tokens on a cache miss, $0.0028 on a cache hit, and $0.28 per 1M output tokens, with a 2,500 concurrency limit. That is roughly a third of deepseek-v4-pro output pricing ($0.87). Seed-stage startups, indie developers, and internal platform teams can run agent loops at this price without a GPU budget.

    Via self-hosting, the bar is much higher: The weights are MIT-licensed and ungated, but every expert stays resident in memory even though only 13B activate per token. DeepSeek’s vLLM example serves it on a single 4×GB300 node. Unsloth’s dynamic GGUFs put the lossless 8-bit build at 162 GB and a 3-bit build at 103 GB, needing roughly 110 GB of combined RAM plus VRAM. Self-hosting suits mid-size and large enterprises with a serving cluster, or one well-specced workstation at aggressive quantization.

    Architecture

    Per the DeepSeek-V4 technical report, V4-Flash is a 284B-parameter MoE with 13B activated per token and a 1M-token context window. Each MoE layer holds 1 shared expert and 256 routed experts with an intermediate dimension of 2048, and 6 routed experts fire per token. The first three MoE layers use hash routing. Multi-token prediction depth is 1.

    Attention is hybrid, combining Compressed Sparse Attention (CSA) and Heavily Compressed Attention (HCA). Manifold-Constrained Hyper-Connections (mHC) replace conventional residual connections, with expansion factor 4 and 20 Sinkhorn-Knopp iterations. Pre-training used more than 32T tokens and the Muon optimizer. The paper’s headline efficiency figure — 27% of single-token inference FLOPs and 10% of KV cache versus DeepSeek-V3.2 at 1M context — is stated for V4-Pro, not Flash.

    r) return 0;
    if (mode === ‘dense’) return 1;
    if (mode === ‘csa’){
    if (c >= r-1) return 1; /* local window */
    if (Math.floor(c/4) === 0) return 1; /* sink block */
    return ((r + Math.floor(c/4)) % 3 === 0) ? 2 : 0;
    }
    if (c >= r) return 1;
    return (c % 5 === 0) ? 2 : 0;
    }
    function drawAtt(mode){
    curAtt = mode;
    if (attTimer) clearInterval(attTimer);
    for (var i=0;i= N){ clearInterval(attTimer); attTimer = null; return; }
    for (var c=0;c’ + lit + ”;
    }
    var attBtns = document.querySelectorAll(‘[data-att]’);
    for (var a=0;a= 1000) return ‘$’ + Math.round(x).toLocaleString();
    if (x >= 100) return ‘$’ + x.toFixed(0);
    return ‘$’ + x.toFixed(2);
    }
    function calc(){
    var inM = +document.getElementById(‘rIn’).value;
    var outM = +document.getElementById(‘rOut’).value;
    var hit = +document.getElementById(‘rHit’).value / 100;
    document.getElementById(‘vIn’).textContent = inM;
    document.getElementById(‘vOut’).textContent = outM;
    document.getElementById(‘vHit’).textContent = Math.round(hit*100);
    function cost(p){
    return inM*hit*p.hit + inM*(1-hit)*p.miss + outM*p.out;
    }
    var f = cost(P.flash), pr = cost(P.pro);
    document.getElementById(‘cFlash’).textContent = money(f);
    document.getElementById(‘cPro’).textContent = money(pr);
    document.getElementById(‘cSave’).textContent = money(pr – f);
    document.getElementById(‘cPct’).textContent = pr > 0 ? Math.round((1 – f/pr)*100) + ‘% cheaper’ : ‘\u2014’;
    var mx = Math.max(f, pr) || 1;
    document.getElementById(‘cb1’).style.width = (f/mx*100) + ‘%’;
    document.getElementById(‘cb2’).style.width = (pr/mx*100) + ‘%’;
    document.getElementById(‘cbv1’).textContent = money(f);
    document.getElementById(‘cbv2’).textContent = money(pr);
    }
    var rs = [‘rIn’,’rOut’,’rHit’];
    for (var s=0;s

    aistudios
    Share. Facebook Twitter Pinterest LinkedIn Tumblr Email
    Fintech Fetch Editorial Team
    • Website

    Related Posts

    Gartner outlines four AI tiers in warehouse automation

    Gartner outlines four AI tiers in warehouse automation

    September 20, 2026
    GGUF vs GPTQ vs AWQ vs EXL2: LLM Model Formats Explained (2026)

    GGUF vs GPTQ vs AWQ vs EXL2: LLM Model Formats Explained (2026)

    September 19, 2026
    New AI technique could make minimally invasive surgeries safer and more precise | MIT News

    New AI technique could make minimally invasive surgeries safer and more precise | MIT News

    September 18, 2026
    Photo of Microsoft AI CEO Mustafa Suleyman as he warns that Anthropic risks AI alignment failures by training Claude to view itself as a conscious entity deserving of legal rights.

    Microsoft AI CEO criticises Anthropic over model ‘rights’

    September 17, 2026
    Add A Comment

    Comments are closed.

    Join our email newsletter and get news & updates into your inbox for free.


    Privacy Policy

    Thanks! We sent confirmation message to your inbox.

    synthesia
    Latest Posts
    I Make $100K a Month With AI (by keeping it simple)

    I Make $100K a Month With AI (by keeping it simple)

    September 20, 2026
    The ONLY 10 Ways to Make Money with AI in 2026 (Ranked List)

    The ONLY 10 Ways to Make Money with AI in 2026 (Ranked List)

    September 20, 2026
    Google's Gemini hacks 3 companies

    Google’s Gemini hacks 3 companies

    September 20, 2026
    Warren Buffett Steps Down After 60 Years

    Warren Buffett Resigns After Six Decades in Leadership

    September 20, 2026
    Cointelegraph

    Bitcoin Rises to $81,000 Alongside Increasing US Bond Yields

    September 19, 2026
    notion
    LEGAL INFORMATION
    • Privacy Policy
    • Terms Of Service
    • Social Media Disclaimer
    • DMCA Compliance
    • Anti-Spam Policy
    Top Insights
    Optimism Releases Required Op Batcher V1 17 0 Upgrade

    Optimism Launches Essential Op Batcher V1.17.0 Update

    September 20, 2026

    DOGE Price Forecast: $1 Remains Possible, But DOGE Must First Overcome $0.09

    September 20, 2026
    notion
    Facebook X (Twitter) Instagram Pinterest
    © 2026 FintechFetch.com - All rights reserved.

    Type above and press Enter to search. Press Esc to cancel.