# Pricing Related Articles

HTX News Center provides the latest articles and in-depth analysis on "Pricing", covering market trends, project updates, tech developments, and regulatory policies in the crypto industry.

Anthropic's New Models 'Catch the Gossip', The Strongest Fable 5 Unexpectedly Falls Flat

Anthropic has been discovered working on two new, previously unknown models codenamed "Marshmallow" (claude-marshmallow-eap) and "Melon" (claude-melon-eap), with early tests showing Marshmallow potentially surpassing Claude Opus 5 in conversational naturalness. Their emergence coincides with surprising new data revealing that Anthropic's flagship Fable 5 model, released two months ago as its strongest and most expensive offering, is being largely ignored by the enterprise market. According to spending data from Ramp tracking over 70,000 US companies, Fable 5 accounts for only about 11% of total token spending on Anthropic's models. This pales in comparison to OpenAI's flagship GPT-5.6 Sol, which commands roughly 25% of token spending in the same period. The tepid adoption is largely attributed to Fable 5's extremely high cost—double that of Opus 4.8 and ten times that of Haiku 4.5—without delivering proportionally superior performance for most business applications. Compounding the issue, the later-released Claude Opus 5, priced at half the cost of Fable 5, has achieved comparable or even better results in key benchmarks like programming and knowledge work, quickly surpassing Fable 5 in enterprise spending share. Furthermore, the rapid rise of powerful, low-cost open-source models—whose token usage share surged from 11% in April to 62% in August while costing less than 4% of enterprise AI budgets—applies additional pressure. Analysts suggest the sudden appearance of Marshmallow and Melon may be an urgent move by Anthropic to address this gap in its lineup. The goal is to offer models that are not only powerful but also cost-effective enough for businesses to adopt widely and sustainably, moving beyond a flagship that serves more as a showcase than a workhorse.

marsbitYesterday 01:05

Anthropic's New Models 'Catch the Gossip', The Strongest Fable 5 Unexpectedly Falls Flat

marsbitYesterday 01:05

Breaking News: DeepSeek Announces All-Day Off-Peak Pricing on Weekends, Making Weekend Work More Cost-Effective?

DeepSeek has announced a significant change to its API pricing model, effective August 23. The new policy removes peak/off-peak distinctions on weekends (Saturdays and Sundays), charging the lower off-peak rate for the entire two-day period. This adjustment has sparked mixed reactions within the developer and professional communities. For developers and businesses heavily reliant on DeepSeek's V4-Flash and V4-Pro APIs, this is welcome news. It allows them to schedule bulk processing tasks on weekends without the higher peak-hour costs, potentially halving their API bills for such workloads. Some users have celebrated the move for making weekend work more cost-effective. However, the announcement has also raised concerns among employees. There is apprehension that companies, particularly in cost-sensitive sectors like AI-powered short drama production, might reorganize work schedules to align with these new cost incentives. Instances are already emerging where teams schedule high-token tasks during cheaper nighttime hours or adjust staff shifts. This has led to worries about a potential shift towards weekend workdays and weekday time-off, prioritizing cost savings over traditional work-life balance. Debate has ensued regarding the practicality of such schedule changes, with questions about increased communication overhead and overall efficiency. Speculation about DeepSeek's motives for the change includes theories that peak pricing correlates with internal model training schedules, though others counter that training is largely automated. The new pricing structure is now in effect, prompting users to reconsider their task scheduling strategies.

marsbit2 days ago 01:36

Breaking News: DeepSeek Announces All-Day Off-Peak Pricing on Weekends, Making Weekend Work More Cost-Effective?

marsbit2 days ago 01:36

Same $5 Rate, Bill Differs by 30%, OpenAI Exec: Token Pricing Is Never Directly Comparable

Here is a summary of the article in English: **Title: Priced at $5, Bills Vary by 30%. OpenAI Executive: Token Prices Are Not Directly Comparable** A key takeaway from OpenAI's Codex lead, Tibo, is that a "token" is not a standardized unit for comparing AI model costs, akin to grams or kilowatt-hours. He uses an analogy: two identical pizzas priced per slice can yield different total costs depending on how they're cut. Similarly, different models use different "tokenizers" to segment text, meaning the same input text can produce vastly different token counts. For instance, the same text was tokenized as 766 tokens by GPT-5.6 Sol and 1170 tokens by Claude Opus 5—a 34.5% difference—despite both models advertising the same input price of $5 per million tokens. This discrepancy arises because each company trains its own tokenizer based on its training data, affecting how common or rare word combinations are split. The problem isn't cross-vendor only. Even Anthropic warns that its newer models (Claude 4.7+) use a different tokenizer, producing roughly 30% more tokens for the same text than earlier versions, so cost estimates shouldn't be reused across model generations. Bill differences stem from four main factors: 1) Tokenizer efficiency (input token count), 2) Caching (e.g., GPT-5.6 Sol offers a much lower cache input rate), 3) Output pricing (which can outweigh input savings in agent workflows), and 4) Context length pricing tiers (e.g., GPT-5.6 Sol charges double the input rate for entire requests exceeding 272K tokens). Tibo also addressed user reports of GPT-5.6 Sol's context window being limited in practice, sharing configuration code to manually expand it to 1 million tokens. However, he cautioned that larger windows increase the risk of hitting higher pricing tiers as longer session histories are processed repeatedly. The article concludes that the true metric should shift from "price per million tokens" to "price per successful outcome." The most accurate way to compare costs is to run identical real-world tasks (with the same prompts, tools, and data) through different models, accounting for all variables like tokenization, caching, output length, and context pricing. Ultimately, what matters is the total cost to complete a specific job, not the nominal token price.

marsbit08/19 08:21

Same $5 Rate, Bill Differs by 30%, OpenAI Exec: Token Pricing Is Never Directly Comparable

marsbit08/19 08:21

Programmers Around the World Are Giving Money Away to Anthropic for Free, and the Company Finally Can't Stand It Anymore

Anthropic's recent blog post urges developers using Claude Code to stop wasting money on tokens. The core issue is inefficient usage that inflates costs, often unbeknownst to users. The article outlines six key optimization strategies: 1) Use `/clear` after completing a task to prevent irrelevant previous context from bloating future interactions. 2) Set the model and reasoning effort level at the start of a session; changing them mid-conversation invalidates the prompt cache, forcing a full-price recomputation of the entire history. 3) Attach files with `@` instead of typing paths manually to avoid unnecessary tool calls and exploratory file reads that add to the context. 4) Add quiet flags to noisy commands (e.g., in `CLAUDE.md`) to minimize lengthy output that fills the context window. 5) Use `/compact` before a break while the cache is still hot, as it costs only one-tenth of compressing after the cache expires. 6) Offload large-output tasks to sub-agents, which run in isolated contexts and only return conclusions, keeping the main conversation lean. The cost structure is explained: output tokens are 5x more expensive than input tokens due to serial "decoding." Pricing depends on the model (Opus, Sonnet, Haiku) and reasoning effort level. The most powerful cost-saving tool is the **prompt cache**, which allows reusing previously computed prefixes at 10% of the input cost. However, the cache is fragile and invalidated by switching models, changing effort levels, toggling Fast mode, using `/compact`, session timeout, or resuming old sessions. A critical problem is **context bloat (O(n²) growth)**, where each interaction accumulates files read and command outputs, making every subsequent round more expensive. Strategies to combat this include using `@` for files, quiet flags for commands, employing sub-agents, and using `/clear` or `/compact`. The `/rewind` command is also noted for trimming recent off-track turns without breaking the cache. The post frames efficient token management as a new essential skill for developers in the AI era, crucial for maximizing productivity within a budget.

marsbit08/17 03:46

Programmers Around the World Are Giving Money Away to Anthropic for Free, and the Company Finally Can't Stand It Anymore

marsbit08/17 03:46

The Biggest AI Black Hole: After Anthropic's Annual Revenue Hits $1 Trillion, Compute Power Prices Soar 10x

The article explores the potential for a dramatic surge in compute prices driven by the AI industry's explosive growth. It highlights a provocative prediction by tech podcaster Dwarkesh Patel: if AI labs like Anthropic continue their rapid revenue growth (projected to reach $1 trillion annually) while compute supply only expands at about 3x per year, the price of computing power could skyrocket by 10x or more. The core argument is a paradigm shift: GPUs are transitioning from mere hardware tools to carriers of "digital labor." If a single H100 GPU can host an AI agent capable of replacing a top-tier software engineer (with a Silicon Valley salary of $250k), its economic value should be recalibrated accordingly. Currently, the annual rental cost of an H100 is around $16k, creating a massive 15x valuation gap—a "labor arbitrage black hole." This imbalance stems from a critical mismatch: AI capabilities and commercial revenue are growing faster than the physical infrastructure (chips, data centers) can be built. With compute supply constrained by physical limits like chip manufacturing capacity, and demand soaring, prices are pressured upward. The piece further argues that expensive compute incentivizes using the most capable (and expensive) AI models, as cheaper, less efficient models waste more costly compute time—a phenomenon linked to the Alchian-Allen effect. Counterarguments are noted, suggesting AI's value may be capped in physical-world applications and that history often disproves predictions of resource scarcity. However, the response is that compute supply lacks the elasticity of traditional commodities. The conclusion is that before compute potentially becomes cheap and abundant, the industry may face an intense period of compute inflation and an arms race for this strategic resource.

marsbit08/04 13:56

The Biggest AI Black Hole: After Anthropic's Annual Revenue Hits $1 Trillion, Compute Power Prices Soar 10x

marsbit08/04 13:56

Qualcomm Wants to Expand the Market with Dual Flagship Chips but Hits Memory Price Hikes

Qualcomm is reportedly planning to launch a dual-flagship chip strategy for its upcoming 2nm-based Snapdragon 8 Elite Gen 6 platform in 2026, featuring both a standard and a Pro version. This move aims to expand the reach of its premium chipsets beyond just ultra-high-end phones into more mainstream flagship models, similar to Apple's approach with its A-series chips. However, this expansion plan coincides with a significant and likely prolonged surge in memory prices, driven by AI data centers consuming production capacity for HBM and server DRAM. This cost increase squeezes the entire smartphone market, particularly price-sensitive segments. While Pro-tier chips might still find a place in expensive Ultra models, the standard version—intended to make the new platform more accessible—may not result in meaningfully lower phone prices. The savings from using a less powerful chip could be offset by higher memory costs. Consequently, consumers might face a scenario where phones with the standard chip are still expensive but lack the "best" specs, creating a perception gap. With Qualcomm also hinting at potential price hikes for its chips, smartphone makers are caught in a difficult position: use the Pro version and risk prohibitively high prices, use the standard version and market a "lesser" flagship, or rely on previous-generation chips and struggle with marketing. Ultimately, Qualcomm's strategy to broaden its flagship lineup through product segmentation is being undermined by market forces that are shrinking consumer demand and raising overall device costs. This could lead to a more expensive and confusing premium Android market, potentially pushing consumers towards older, discounted models instead.

marsbit08/04 01:31

Qualcomm Wants to Expand the Market with Dual Flagship Chips but Hits Memory Price Hikes

marsbit08/04 01:31

OpenAI No Longer Sells Its Most Expensive Model for Profit

OpenAI is shifting its business strategy away from promoting its most expensive, flagship models for every task. Recent price cuts—80% for GPT-5.6 Luna and 20% for Terra—signal a deeper change: the company now actively advises users that many tasks don't require the most powerful model. Instead, OpenAI recommends a tiered approach: use the high-end GPT-5.6 Sol for complex planning and analysis, then delegate execution to cheaper models like Luna. This mirrors moves by Anthropic, which recently launched Claude Opus 5 at half the price of its top model, Fable 5. Both companies are de-emphasizing flagship models as primary revenue drivers, using them instead for brand prestige and technological showcases. The industry is entering a "mass-market" phase, similar to automotive, where high-volume, cost-effective models handle daily operations and drive scale. OpenAI's price reductions are partly enabled by AI models themselves optimizing underlying code and infrastructure, creating a self-reinforcing cycle of efficiency gains and cost reduction. Competition is shifting from "who is smartest" to "who offers the best value." The goal is no longer selling individual models but fostering widespread API adoption and ecosystem lock-in. By making AI calls cheap and ubiquitous, companies like OpenAI aim to become the indispensable, utility-like infrastructure powering automated workflows—the "water and electricity" of software, quietly embedded everywhere.

marsbit08/03 02:21

OpenAI No Longer Sells Its Most Expensive Model for Profit

marsbit08/03 02:21

DeepSeek V4 'Full-Blooded Edition' Leaked, Could Be Released As Early As Tomorrow

The highly anticipated full release of DeepSeek V4 is imminent, expected to launch as early as tomorrow after nearly three months of waiting. A select group has already received access to the GA (General Availability) beta, which includes two versions: DeepSeek V4 Flash and DeepSeek V4 Pro. Early testers report that V4's overall performance is close to the level of Opus 4.8, with coding capabilities rivaling GPT-5.6 Sol. Its agent abilities are significantly enhanced, and 3D/SVG generation has improved notably. While it may not surpass the recently released Kimi K3 in performance, its expected price point is significantly lower. The official release will introduce a new "peak/off-peak" pricing model for its API. For example, deepseek-v4-pro will cost $0.87 per million output tokens during standard times and $1.74 during peak hours. The flash version is even more aggressive at $0.28/$0.56 per million tokens, with cached input tokens priced extremely low at $0.0028. This makes V4 a strong contender in terms of cost-effectiveness, potentially offering Opus-level capabilities at a fraction of the cost, continuing DeepSeek's reputation as a "price disruptor" in the AI market. Initial demos showcasing V4's capabilities have begun circulating, including generated 3D simulation games, HTML games blending elements of Minecraft and No Man's Sky, and classic games like a "Cut the Rope" clone. The final GA version is set to replace the older deepseek-chat and deepseek-reasoner models, which will be retired on July 24th.

marsbit07/19 05:31

DeepSeek V4 'Full-Blooded Edition' Leaked, Could Be Released As Early As Tomorrow

marsbit07/19 05:31

活动图片