@samaltmen注意!5.6是超过272k整个请求双倍计费,不是仅超出部分。一定要限制在272k内,否则2倍消耗速度。 中发帖

注意看定价底部的小提示: 
Prompts with >272K input tokens are priced at 2x input and 1.5x output for the full request. 
对于输入token超过27.2万的提示词,整个请求的输入部分按两倍价格收费,输出部分按一点五倍价格收费。 
知道你额度为啥消耗得快了吧 
解决办法: 
~/.codex/config.toml 加入 
model_context_window = 272000
model_auto_compact_token_limit = 240000
 
 
Back to Top