惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

罗磊的独立博客
Recent Announcements
Recent Announcements
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
有赞技术团队
有赞技术团队
J
Java Code Geeks
T
The Blog of Author Tim Ferriss
MyScale Blog
MyScale Blog
人人都是产品经理
人人都是产品经理
aimingoo的专栏
aimingoo的专栏
U
Unit 42
The GitHub Blog
The GitHub Blog
云风的 BLOG
云风的 BLOG
T
Tailwind CSS Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 三生石上(FineUI控件)
Apple Machine Learning Research
Apple Machine Learning Research
小众软件
小众软件
Hugging Face - Blog
Hugging Face - Blog
博客园 - 司徒正美
腾讯CDC
I
InfoQ
GbyAI
GbyAI
博客园_首页

Hacker News - Newest: "AI"

AI can't read an investor deck AI as an attorney? Student uses ChatGPT, Gemini to sue UW over alleged racial discrimination Hacking MCP Servers in AI Systems – The Rug Pull: Tool Changes After Approval GitHub - MeepCastana/KubeezCut: Free Web based video editor Can AI judge journalism? A Thiel-backed startup says yes, even if it risks chilling whistleblowers Coming soon: 10 Things That Matter in AI Right Now DARPA built an AI to fact-check enemy weapons claims What explains heterogeneity in AI adoption? When AI Meets Muscle: Context-Aware Electrical Stimulation Promises a New Way to Guide Human Movements - Department of Computer Science AI Changed How We Build. It Did Not Change What Matters. Linux rules on using AI-generated code - Copilot is OK, but humans must take 'full responsibility for the… Meta spins up AI version of Mark Zuckerberg to engage with employees Code Mode: Let Your AI Write Programs, Not Just Call Tools | TanStack Blog GitHub - Delavalom/graft: Go framework for building AI agents. Type-safe tools, multi-provider (OpenAI, Anthropic, Gemini, Bedrock), zero vendor SDKs. India's TCS tops estimates, says new AI models did not dent services demand Gen Z's fading AI hype Strong feeling: we are in a folded AI reality GitHub - machinarii/total-recall-catalog: A reference catalog of latest knowledge retrieval, memory & RAG systems GitHub - mensfeld/code-on-incus: Give each AI agent its own isolated machine with root, Docker, and systemd. Active defense detects and stops threats automatically.. Quantization, LoRA, and the 8% Problem: Benchmarking Local LLMs for Production AI Iran war: We spoke to the man making Lego-style AI videos that experts say are powerful propaganda Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major U.S. banks GitHub - immartian/bellamem: Persistent belief-graph memory for AI agents. Retrieves decisive context by importance — not recency, not RAG, not /compact. recursive-mode: The Repo-Native Operating System for AI Engineering After the attack on Sam Altman's home, will AI CEO's go on the offensive? The biggest advance in AI since the LLM Opus 4.6 vs GPT 5.4 One Prompt Unity World Generation Test “AI polls” are fake polls Client Challenge Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders
DeepSeek Slashes AI Costs to Cents
Business Analytics Newsletter · 2026-05-29 · via Hacker News - Newest: "AI"

In this edition, we will also be covering:

  • Insilico teams up with US firm to build AI models predicting disease decades ahead

  • China unveils auto industry blueprint to set EV, AI vehicle and semiconductor standards

  • OpenAI's Altman says AI unlikely to lead to 'jobs apocalypse’

What happened: DeepSeek has made permanent the 75% price reduction on its flagship V4 Pro model, locking in rates of $0.435/M input and $0.87/M output tokens down from the previous $1.74/$3.48 per million tokens. The model scores 80.6% on SWE-bench Verified and runs 1.6 trillion parameters via Mixture-of-Experts (49B active per forward pass) under an MIT license with full commercial use rights.

Why it matters: At 34x cheaper than GPT-5.5’s estimated output pricing, this permanently shifts the cost calculus for enterprise AI workloads teams running high-volume RAG pipelines, code review agents, or long-context inference can now achieve seven-figure annual savings compared to closed-source alternatives, while self-hosting the open weights for full data sovereignty.

The takeaway: If your team is still defaulting to GPT-5.5 or Claude Opus 4.7 for cost-sensitive batch workloads, benchmark DeepSeek V4 Pro this week the 80.6% SWE-bench score means coding and reasoning quality is now within striking distance of frontier models at a fraction of the cost.

For the past 18 months, enterprise AI budgets have been locked in a predictable pattern: pay frontier prices, accept frontier performance, negotiate volume discounts. DeepSeek just changed the floor permanently.

The original 75% promotional discount on V4 Pro was set to expire May 31, 2026. Instead, DeepSeek announced the rates are now the standing price, not a promotion. The reason: architectural efficiency, not market pressure.

The Problem: Long-context inference is expensive. As enterprise AI workloads grow RAG pipelines with large retrieval prefixes, code review agents scanning full repositories, legal document analysis token costs compound fast. A team running 500M input tokens/month at standard frontier rates could pay over $1,000/month in input costs alone, before output.

The Solution: V4 Pro was engineered from the ground up to cut long-context inference cost, using a Mixture-of-Experts design that activates only 49 billion of its 1.6 trillion parameters per forward pass. Combined with a 1M-token context window and aggressive caching (cache-hit input now at $0.003625/M), the architecture makes the price cut structurally sustainable.

  • Mixture-of-Experts (MoE) routing: Only 3% of total parameters fire per token, reducing compute per forward pass dramatically while maintaining near-full-model quality on reasoning and coding benchmarks.

  • Context caching: Cache-hit input tokens at $0.003625/M roughly 120x cheaper than standard input mean agent loops and RAG systems that resend the same system prompt or retrieval prefix pay almost nothing on repeat tokens.

  • Open weights under MIT license: Full commercial use with no restrictions, enabling on-premises or air-gapped deployment for regulated industries where data sovereignty rules out managed APIs.

The Results Speak for Themselves:

  • Baseline: GPT-5.5 estimated at ~$30/M output tokens; V4 Pro original price at $3.48/M output

  • After Optimization: V4 Pro permanent pricing at $0.87/M output tokens (75% reduction from original)

  • Business Impact: At 1B output tokens/month, switching from GPT-5.5 to V4 Pro saves approximately $2.4M/year; enterprise deployments with cache-heavy workloads can realize even greater savings via the $0.003625/M cache-hit rate

Practical topic: Optimizing token costs in production RAG pipelines with prompt caching

The shift to permanent low-cost inference makes token efficiency more important than ever now the savings are real and compounding. Here are two techniques worth benchmarking this week:

  1. Prefix caching for static system prompts and retrieval context. Most RAG implementations resend the full system prompt and top-k retrieved chunks on every query. With DeepSeek V4 Pro’s cache-hit pricing at $0.003625/M input tokens, structuring your prompt so the static prefix (instructions + persistent context) comes first and user queries come last can reduce effective input costs by 80–90% on high-volume workloads. The pattern: cache the retrieval corpus summary once, append only the dynamic user query. Tested on a 500-token system prompt + 1,500-token retrieval context at 100K requests/day, this reduces monthly input token costs from ~$378 to under $40.

  2. V4-Flash for classification, V4-Pro for generation. V4-Flash (284B total / 13B active) costs $0.14/$0.28 per million tokens use it as a router to classify query complexity and intent, then escalate only genuinely complex reasoning tasks to V4-Pro. A two-stage pipeline where 70% of queries route to Flash and 30% to Pro reduces blended output cost to under $0.35/M, while maintaining V4-Pro quality on the tasks that need it. Practical tip: the Flash classification call adds ~80ms latency; worth it at scale, not worth it for real-time interactive use cases.

This Week’s Game-Changers

  • DeepSeek V4 Pro API Frontier-class coding and reasoning at $0.435/$0.87 per million input/output tokens, permanently. 80.6% SWE-bench Verified score, 1M-token context, MIT-licensed open weights for self-hosting. Check it out

  • Adobe Analytics MCP Server (Production) Adobe Analytics now ships a production MCP server enabling any compatible LLM or agentic workflow to query your Analytics data directly no SQL, no API boilerplate. Update beta endpoints to production URLs before May 31. Check it out

  • BigQuery Graph (Preview) Google Cloud’s new graph analytics layer inside BigQuery enables analysts to model, query, and visualize massive-scale entity relationships without leaving their existing data warehouse. Useful for fraud detection, recommendation systems, and knowledge graph analytics. Check it out

3 Things to Know Before Signing Off

Insilico, US partner to build AI models predicting disease decades ahead
Insilico Medicine and Human Longevity will co-develop large-scale AI foundation models to predict diseases years before symptoms, combining Insilico’s algorithms with Human Longevity’s genomic data to accelerate personalised prevention and drug discovery.

China unveils new blueprint that could reshape global EV and AI standards
China’s MIIT released a 2026 automotive standardisation plan to set technical rules for EVs, vehicle AI, chips, batteries and autonomous driving aiming to shape global standards and strengthen domestic supply chains.

OpenAI’s Altman Says AI Unlikely to Lead to ‘Jobs Apocalypse’
OpenAI CEO Sam Altman said rapid AI progress probably won’t cause a global “jobs apocalypse,” noting AI has displaced fewer white‑collar roles than feared and human engagement remains essential in many jobs.

Important Update (Exclusively for the PAID members)-We are having a weekly live session on AI (tomorrow).
All the participants will have a healthy discussion with each other.
Everyone will learn a different perspective while also putting forward their own point.

Agenda of the session - How practical implementation of AI tools can increase efficiency of our day to day tasks as a student, professional, founder etc.