Price Cut Just 20%, Bill Drops 80%: GPT-5.6 Steps into Claude's Turf to Recalculate the Programming Bill

marsbit发布于2026-08-28更新于2026-08-28

文章摘要

While the official price for GPT-5.6 Terra only dropped by 20%, developer costs for successful coding tasks have reportedly been slashed by 82% when using the model within AWS's Kiro platform. This dramatic reduction stems not from model price cuts alone, but from significant efficiency gains within the integrated "agent + model" system. By optimizing the workflow—reducing unnecessary tokens, tool calls, and failed attempts—the collaboration between OpenAI and AWS has minimized costly computational detours. Key to this efficiency is Kiro's "spec-driven" approach, which refines vague user requests into clear technical specifications before the model begins coding, preventing expensive misunderstandings and rewrites. Benchmark results highlight that the choice of AI agent framework significantly impacts cost, with different frameworks yielding vastly different bills for similar performance scores. The integration marks OpenAI's entry into Kiro, a platform previously dominated by Anthropic's Claude. AWS now offers developers a choice between GPT-5.6 models (Sol, Terra, Luna) and Claude, fostering direct competition. This shift reframes the model selection question from "cost per million tokens" to "total cost to complete the task," emphasizing end-to-end efficiency over raw benchmark scores.

For the same model, the official price is reduced by only 20%, but your bill shrinks by eighty percent.

On August 24th, OpenAI announced test results conducted jointly with AWS:

On Terminal-Bench 2.1, the cost for GPT-5.6 Terra to successfully complete a task in Kiro was reduced by approximately 82%.

Kiro is AWS's intelligent software developer agent platform, covering IDE, CLI, and Web.

The three siblings of the GPT-5.6 family—Sol, Terra, and Luna—have been running inside for over a month.

This 82% reduction is not the official price cut.

Terra's last price adjustment was on July 30th, by 20%.

OpenAI price adjustment announcement on July 30th, Terra lowered by 20%.

The unit price dropped only 20%, but the bill could be slashed by eighty percent.

The source of the remaining sixty percentage points saved in the middle is what truly deserves our attention.

GPT-5.6 landed on Kiro in July this year.

First, on the 13th, AWS announced that GPT-5.6 Sol, Terra, and Luna were officially available on Amazon Bedrock.

The very next day, Kiro published a blog post announcing the availability of the three models on IDE, CLI, and Web.

This marked the first time OpenAI models entered Kiro, coinciding with Kiro's one-year public preview anniversary.

First, put the models on the shelf, then put them to work. Over a month later, OpenAI came back with its homework:

The two companies jointly tuned the Kiro environment and OpenAI models, reducing the cost for Terra to complete a successful task by about 82%.

What's Saved

Is the Money Spent on Detours

During the price adjustment on July 30th, Terra was reduced by 20%, but in Kiro's tests, the cost per task dropped by 82%.

Where did the extra sixty percent savings come from?

The directions are limited:

The model generated fewer tokens, the number of back-and-forth tool calls decreased, and there were fewer retries and detours after failures.

Therefore, the large chunk saved is not the cost per call, but the cost of those calls that would have been wasted.

The logic is simple: if an AI agent fails a task once, the bill is still charged. If it chooses the wrong path, goes off-track three times, and then circles back, those tokens are also billed.

In real development, money often leaks out this way.

OpenAI has pointed out the same logic in its official blog: efficiency comes from three layers:

The agent framework that initiates requests and organizes context, the orchestration system that schedules requests in the middle, and finally the model itself running on GPUs.

OpenAI breaks down the sources of GPT-5.6's efficiency: requests start from the agent framework, are scheduled by the orchestration system, and finally run the model on GPU, saving at every layer.

Savings can also come from model specialization.

OpenAI also gave an example of usage: a coding workflow can first use Sol to think through the problem and define the plan, then switch to Luna to implement the well-defined changes, write tests, and run evaluations.

Same pipeline, different levels of intelligence allocated to different stages.

The Model Accounts for Only Half the Bill

Change the Framework, Change the Price

The Terminal-Bench 2.1 benchmark doesn't ask the model to answer questions alone.

It places the model in a terminal environment with a vague objective, letting it plan its own path, call tools, write scripts, handle errors, and iterate repeatedly.

So the resulting score is the performance of the "agent + model" combination.

The public Terminal-Bench 2.1 leaderboard, with cost added to the right of accuracy. (Source: Terminal-Bench)

The four lines of numbers in the leaderboard illustrate the point best:

Claude Code with Fable 5, 83.8%, $552.67;

Codex with GPT-5.5, 83.1%, $2059.19;

Codex with GPT-5.6 Terra, 78.4%, $421.15;

Codex with GPT-5.6 Luna, 75.7%, $241.45.

The scores in the first two rows differ by only 0.7 percentage points, but the bills differ by nearly 4 times.

The same model, placed into different frameworks with different context organization and tool strategies, results in completely different prices.

According to data provided by Kiro, Terra scored 77.4 on the Coding Agent Index, only slightly higher than Claude Fable 5's 77.2.

Its selling point isn't the score, but the price corresponding to that score.

This is also where Kiro's spec-driven focus lies. The core approach is simple: don't start writing code immediately.

It first breaks down the user's vague goal into a formal requirements document, technical design, and executable task list before handing it over to the model.

Thus, the model receives not a vague statement, but a well-defined job.

Those familiar with Agents will immediately realize that this step saves the most expensive part of the expenditure.

Models going off-track, reworking, and starting over often burn more tokens than doing the actual work.

Kiro also includes two checkpoints in the process: pause for human review before code is actually modified; and automatically run a round of tests after the work is done to verify correctness.

Each rework stopped by these two checkpoints saves real money.

Claude in Amazon's Territory

GPT Takes Half

A year ago, Kiro was just a spec-driven IDE, and the model selector was Anthropic's domain.

A year later, AWS placed three tiers of OpenAI models into its own developer agent platform at once.

Sol, Terra, Luna listed alongside Claude in the same dropdown menu—a scene hard to imagine a year ago.

Although GPT-5.6 is "fully deployed" this time, it's not "fully open."

The three models are released progressively and experimentally, targeting Pro, Pro+, Pro Max, and Power users. Availability is limited to two regions: US North Virginia and Europe Frankfurt, supporting cross-region inference.

There's also a point many find hard to adjust to: these models in Kiro operate with a hidden chain-of-thought; you can't see its reasoning steps, only the final result.

Those accustomed to watching the Agent reason step-by-step feel like throwing work into an opaque box.

The official statement is that this is expected behavior and doesn't affect output quality.

The three model tiers are clearly priced in Kiro.

When they first launched on July 14th, the same task cost 2.4x for Sol, 1.2x for Terra, and 0.6x for Luna.

After OpenAI's price reduction on July 30th took effect, Kiro followed the next day: Luna was slashed from 0.6x all the way to 0.1x, Terra reduced from 1.2x to 1.0x, with only Sol unchanged.

AWS's stance is clear: a development platform cannot be tied to just one model.

In the same selector, two cutting-edge models are beginning to undercut each other on price.

The evaluation criteria for models is also changing: a higher score no longer guarantees a win; spending less can also win.

For developers, the question used to be "How much per million tokens for this model?" Now it must be "How much will it actually cost me to get this thing done?"

References:

https://x.com/OpenAIDevs/status/2091966982015103068

https://openai.com/index/gpt-5-6-in-kiro/

This article is from WeChat Official Account "AI_era" (ID: AI_era), author: ASI Revelation, editor: Yuanyu

热门币种推荐

相关问答

QAccording to the article, the cost of completing a successful task with GPT-5.6 Terra in Kiro decreased by 82%, but the official price reduction was only 20%. Where did the additional 60% cost saving come from?

AThe additional 60% cost saving primarily came from optimizations that reduced wasted token usage. These savings were achieved by minimizing the number of tokens generated, reducing unnecessary tool calls, and decreasing the frequency of failed attempts and inefficient detours. Essentially, the savings came from avoiding the costs associated with the AI agent making mistakes, choosing wrong paths, or having to backtrack, all of which would have incurred charges.

QWhat is the primary difference in how Kiro approaches coding tasks compared to a traditional AI agent, and how does this contribute to cost savings?

AKiro uses a spec-driven approach. Instead of letting the AI write code immediately from a vague user instruction, it first breaks down the instruction into a formal requirements document, technical design, and a list of executable tasks. This provides the model with a clear and structured job description upfront. This method saves costs by significantly reducing the expensive overhead of the model going off-track, needing rework, or starting over, which consumes a large number of tokens.

QWhat was a notable change in the Kiro platform's model offerings one year after its public preview, and what does this signify?

AA notable change was the introduction of three OpenAI GPT-5.6 models (Sol, Terra, Luna) into Kiro's model selector, where previously Anthropic's Claude models were dominant. This signifies a strategic move by AWS to avoid being tied to a single model provider on its development platform. It creates direct competition between leading models, which can drive performance improvements and price reductions for developers.

QHow does the article explain the layered efficiency improvements for AI agents like GPT-5.6 in platforms such as Kiro?

AThe article explains that efficiency gains come from three layers: 1) The agent framework that initiates requests and organizes context. 2) The orchestration system that schedules and dispatches these requests. 3) The model itself running on the GPU. Cost savings are achieved through optimizations at every one of these layers, not just the model's raw processing cost.

QAccording to the Terminal-Bench 2.1 data cited, why might a developer's choice of agent framework be as important as the choice of model itself for overall cost?

AThe Terminal-Bench 2.1 data shows that different frameworks paired with the same or similar models can result in vastly different costs. For example, Claude Code with Fable 5 achieved 83.8% accuracy at a cost of $552.67, while Codex with GPT-5.5 achieved 83.1% accuracy but at a much higher cost of $2059.19. This demonstrates that the framework's context organization, tool strategies, and workflow efficiency have a massive impact on the final bill, making the framework choice critically important.

你可能也喜欢

每周编辑精选 Weekly Editor's Picks(0822-0828)

《每周编辑精选》旨在从海量信息中筛选深度分析,为读者提炼有价值的内容与洞察。 **宏观局势**:华尔街关注美国财政部可能调整国债发行策略以应对长期收益率压力,市场波动性或将增加。高盛分析黄金在央行购金、ETF流入及期权资金共振下突破高位,维持看涨预期,并提及白银市场出现高执行价期权需求。 **投资与创业**:Arthur Hayes 看好加密货币作为央行印钞的流动性出口,预测 ETH 有望涨至 3 万美元,并认为本轮反弹中 ETH 将跑赢其他大市值资产。加密杠杆股中 MSTR 弹性最强,COIN 相对均衡。Circle 股价大涨,市场关注其 USDC 增长与 Arc 区块链生态潜力。山寨币市场普遍复苏,资金向头部集中。ZEC 因灰度信托转 ETF 预期创新高。Hyperliquid 与 Ethena 均推出新回购机制,旨在缓解代币抛压。 **AI & 存储**:英伟达 AI 算力需求持续强劲,正过渡至下一代产品周期,但供给成为增长瓶颈。SK 海力士在股价回撤后宣布大规模回购,投资者需关注内存周期分歧及竞争风险。 **CeFi & DeFi**:DeFi 板块反弹强劲,可关注 UNI、AAVE 等高收入协议。Galaxy Digital 推出加密资产抵押信贷产品,为用户提供流动性工具。 **其他热点**:BitMine 持续增持 ETH 引发对质押集中度的讨论。SOL 生态或通过投票大幅提升代币销毁量。特朗普相关加密货币传言被其子否认,市场出现“杀猪盘”式波动。 **一周要闻速览**:比特币重回 8 万美元;渣打银行看涨比特币至 12.6 万美元;Vitalik 发布新密码学研究;山寨币总市值大幅回升;市场安全事件频发,需保持警惕。

marsbit20分钟前

每周编辑精选 Weekly Editor's Picks(0822-0828)

marsbit20分钟前

Strive 高管:重新理解比特币的价格飞轮

比特币早期周期涨幅巨大,但近几轮涨幅收窄,波动率下降,呈现幂律衰减趋势。作者认为,这并非比特币的终局,而是其成熟过程中的一个阶段。 文章以金属疲劳裂纹扩展的三个阶段作类比:第一阶段(发现期)收益与波动率极高;第二阶段(成熟期)两者同步收窄,比特币风险调整后收益改善,成为更具吸引力的抵押品;第三阶段(金融体系驱动的货币化)可能因信贷大规模介入而重新加速。 当前,比特币波动率已显著降低(从历史峰值147%降至约44%),最大回撤幅度也在收窄。这对持有者意味着收益下降,但对贷方而言,比特币正成为更优质的抵押品。波动率越低,同等抵押品能支撑的信贷规模就越大,融资成本也更低。Strategy的信用模型显示,波动率从60%降至40%,其优先股利差可从非投资级跃升至投资级。 由此可能形成自我强化的飞轮:比特币成熟→波动率下降→风险收益改善吸引更多存量资金、抵押品质量提升支撑更大信贷规模→资金与信贷争夺固定供应的比特币→推动价格上涨→抵押品价值升高释放更多融资→循环继续。即使比特币采用率趋于饱和,用于购买或为其融资的美元信贷规模没有上限,最终可能推动比特币价格向上突破原有的幂律增长轨迹,进入加速上升的“第三阶段”。

marsbit40分钟前

Strive 高管:重新理解比特币的价格飞轮

marsbit40分钟前

交易

现货

热门文章

如何购买BILL

欢迎来到HTX.com!我们已经让购买Billions Network(BILL)变得简单而便捷。跟随我们的逐步指南,放心开始您的加密货币之旅。第一步:创建您的HTX账户使用您的电子邮件、手机号码注册一个免费账户在HTX上。体验无忧的注册过程并解锁所有平台功能。立即注册第二步:前往买币页面,选择您的支付方式信用卡/借记卡购买:使用您的Visa或Mastercard即时购买Billions Network(BILL)。余额购买:使用您HTX账户余额中的资金进行无缝交易。第三方购买:探索诸如Google Pay或Apple Pay等流行支付方法以增加便利性。C2C购买:在HTX平台上直接与其他用户交易。HTX场外交易台(OTC)购买:为大量交易者提供个性化服务和竞争性汇率。第三步:存储您的Billions Network(BILL)购买完您的Billions Network(BILL)后,将其存储在您的HTX账户钱包中。您也可以通过区块链转账将其发送到其他地方或者用于交易其他加密货币。第四步:交易Billions Network(BILL)在HTX的现货市场轻松交易Billions Network(BILL)。访问您的账户,选择您的交易对,执行您的交易,并实时监控。HTX为初学者和经验丰富的交易者提供了友好的用户体验。

1.1k人学过发布于 2026.05.07更新于 2026.06.02

如何购买BILL

相关讨论

欢迎来到HTX社区。在这里,您可以了解最新的平台发展动态并获得专业的市场意见。以下是用户对BILL(BILL)币价的意见。

活动图片