A cheaper AI model is not necessarily cheaper once retries are counted

Reddit r/artificial News

Summary

A side-by-side coding experiment comparing GPT-5.6 Luna and DeepSeek V4 Flash shows that DeepSeek's apparent 5x price advantage shrinks when retries are included. The article argues for more comprehensive benchmarks reporting cost per attempt and cost per verified success.

​ I ran a small side-by-side coding experiment with GPT-5.6 Luna and DeepSeek V4 Flash. The task was to generate a playable browser-based camouflage game from the same prompt. Both runs were made through AIHubMix using the same API gateway. The recorded results were: - GPT-5.6 Luna: $0.10, 691 seconds, flawless first run - DeepSeek V4 Flash: $0.02, 729 seconds, successful on the third run The result looks simple: DeepSeek was 5x cheaper. But that conclusion depends entirely on how retries are accounted for. If $0.02 was charged per attempt, then the observed cost to reach a successful result was closer to $0.06. If the displayed figure was cumulative, then the 5x comparison is valid. This distinction matters because real AI systems rarely pay only for successful generations. They also pay for failed calls, retries, validation, human review, and downstream recovery. A more informative benchmark would report both: Cost per individual attempt Cumulative cost and time to first verified success It should also separate visual success from functional correctness, maintainability, security, and edge-case behavior. This was only one task, so it is not evidence that either model is generally better. A proper follow-up would use fixed model versions, identical settings, automated functional tests, at least 20 trials per model, and median and p95 reporting. What should be the primary metric for production AI systems: lowest inference price, first-pass success rate, or expected cost per verified result?
Original Article

Similar Articles

DeepSeek just popped the American AI bubble.

Reddit r/ArtificialInteligence

DeepSeek's V4 Pro model undercuts rivals like GPT-5.5 and Claude Opus by 10-35x on pricing, signaling a deflationary pressure on the AI bubble as margins compress with 'good enough' models at significantly lower cost.

How to measure cost of models for programming

Reddit r/AI_Agents

An explainer analyzing the real-world cost of AI models for programming, comparing DeepSeek Flash and OpenAI's Luna via token pricing, caching distributions, and subscription math.