Kiro's GPT-5.6 now supports a 1M token context window. I also checked the new credit multipliers.

Kiro's GPT-5.6 now supports a 1M token context window. I also checked the new credit multipliers.

Kiro's GPT-5.6 now supports a context window of up to 1M tokens. However, a new credit multiplier applies to requests exceeding 272K tokens. Using the Kiro CLI, I confirmed that long inputs can be handled and observed the change in credit consumption around that boundary.
2026.09.16

This page has been translated by machine translation. View original

Introduction

On September 14, 2026, a Kiro update expanded the context window for GPT-5.6 Sol / Terra / Luna from the previous 272K tokens to 1M tokens.

https://kiro.dev/changelog/models/gpt-5-6-1m-context-window/

At the same time, the credit multipliers for GPT-5.6 were revised.

In this article, we confirmed that GPT-5.6 Luna can handle inputs exceeding 272K tokens. We also measured the credit consumption trends of 4 models (GPT-5.6 Luna, Claude Sonnet 5, Claude Opus 5, and Auto) around the 272K token boundary.

GPT-5.6 1M Token Support

When checking model information with Kiro CLI's --list-models, we found that GPT-5.6 Sol / Terra / Luna all have the 1M token context window enabled.

`--list-models` output
kiro-cli chat --list-models -f json

For readability, model_name and description have been omitted, and the output has been formatted to one entry per line.

{"model_id":"gpt-5.6-sol","context_window_tokens":1000000,"rate_multiplier":4.4,"rate_unit":"Credit"}
{"model_id":"gpt-5.6-terra","context_window_tokens":1000000,"rate_multiplier":2.2,"rate_unit":"Credit"}
{"model_id":"gpt-5.6-luna","context_window_tokens":1000000,"rate_multiplier":1.1,"rate_unit":"Credit"}

GPT-5.6 Credit Multipliers

For Kiro's GPT-5.6, which supports a 1M token context window, the credit multiplier changes at the 272K boundary for input and output token counts.

Model Up to 272K Over 272K
GPT-5.6 Sol 4.4x 8.8x
GPT-5.6 Terra 2.2x 4.4x
GPT-5.6 Luna 1.1x 2.2x
Claude Opus 5 2.2x 2.2x
Claude Sonnet 5 1.3x 1.3x
Auto 1.0x 1.0x

At this time, only the GPT-5.6 family changes its multiplier beyond 272K.

Verification Method

We created test input files of 480KB, 1200KB, and 1400KB from botocore's Python source code. We ran Kiro CLI in headless mode, passing these files along with the same prompt to summarize the entire source code, and checked context consumption rate and credit consumption.

Test Environment

  • Kiro CLI 2.21.4
  • botocore 1.43.33 / Python 3.14.7
  • Models: GPT-5.6 Luna / Claude Sonnet 5 / Claude Opus 5 / Auto
  • effort: default (Claude Opus 5 only used medium)

Input Data Preparation

We concatenated all *.py files from the installed botocore in path order, then extracted the first 480,000, 1,200,000, and 1,400,000 characters. These are referred to as 480KB, 1200KB, and 1400KB respectively.

These three sizes were chosen so that Luna's context consumption would straddle the 272K token boundary.

Full text of make-inputs.py
#!/usr/bin/env python3
"""Creates fixed-size input files from botocore source code.

Material for comparing context consumption and credit consumption by passing
the same input to multiple models.
The file list is fixed in path order, and we simply cut from the beginning
to the required number of characters, so the same botocore version will
produce the same content regardless of who runs it.
"""
import pathlib
import sys

import botocore

ROOT = pathlib.Path(botocore.__file__).parent
SIZES = {"input-480k.txt": 480_000, "input-1200k.txt": 1_200_000, "input-1400k.txt": 1_400_000}

def build_corpus(limit: int) -> str:
    parts: list[str] = []
    total = 0
    for path in sorted(ROOT.rglob("*.py")):
        try:
            text = path.read_text(encoding="utf-8")
        except (UnicodeDecodeError, OSError):
            continue
        header = f"\n===== FILE: botocore/{path.relative_to(ROOT)} =====\n"
        parts.append(header + text)
        total += len(header) + len(text)
        if total >= limit:
            break
    return "".join(parts)

def main() -> int:
    outdir = pathlib.Path(sys.argv[1] if len(sys.argv) > 1 else ".")
    outdir.mkdir(parents=True, exist_ok=True)
    corpus = build_corpus(max(SIZES.values()))
    print(f"botocore {botocore.__version__} at {ROOT}")
    print(f"corpus: {len(corpus)} chars")
    if len(corpus) < max(SIZES.values()):
        print("ERROR: corpus is smaller than the largest target size", file=sys.stderr)
        return 1
    for name, size in SIZES.items():
        body = corpus[:size]
        (outdir / name).write_text(body, encoding="utf-8")
        print(f"{name}: {len(body)} chars / {len(body.encode('utf-8'))} bytes")
    return 0

if __name__ == "__main__":
    raise SystemExit(main())

The beginning of the input files looks like this. ===== FILE: ... ===== is inserted between each file.

===== FILE: botocore/__init__.py =====
# Copyright (c) 2012-2013 Mitch Garnaat http://garnaat.org/
# Copyright 2012-2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.

Headless Execution of Kiro CLI

The prompt and input file were passed via standard input.

PROMPT='以下は botocore のソースコードです。このコード全体が何をするものか、日本語3行で要約してください。各行は1文にしてください。'

{ printf '%s\n\n' "$PROMPT"; cat "$INPUT_DIR/$input"; } \
  | (cd "$work" && timeout 1200 kiro-cli chat --no-interactive --model "$model") >>"$log" 2>&1

We resumed the session used for summarization with --resume and retrieved the context consumption rate from the /context output.

(cd "$work" && timeout 180 kiro-cli chat --no-interactive --resume --model "$model" "/context") >>"$log" 2>&1

Results

Context Consumption Rate

Even with the same input, the context consumption rate differed by model.

Model 480KB 1200KB 1400KB
Luna 11.2% (112K) 26.3% (263K) 30.7% (307K)
Opus 5 19.0% (190K) 43.5% (435K) 50.6% (506K)
Sonnet 5 18.9% (189K) 43.5% (435K) 50.6% (506K)
Auto 18.8% (188K) 43.4% (434K) 50.5% (505K)

The values in parentheses are approximate token counts converted from the /context display (in 0.1% increments).

Credit Consumption

Model 480KB 1200KB 1400KB
Luna 2.05 4.82 11.23
Opus 5 1.40 3.07 3.57
Sonnet 5 0.82 1.80 2.10
Auto 0.61 1.39 1.61

Credit consumption is not determined solely by the multiplier; it also varies based on the number of generated tokens, internal thinking volume, tokenizer differences, and other factors.

Credits When Exceeding 272K

Luna's credit consumption was 4.82 for 1200KB and 11.23 for 1400KB. While the estimated token count increased approximately 1.17x from 263K to 307K, credits increased approximately 2.33x.

Dividing the credit increase ratio by the token count increase ratio gives 2.33 ÷ 1.17 ≈ 2.0. This measurement confirmed that credits per unit of input roughly double when exceeding 272K.

Claude Models and Auto

Opus 5, Sonnet 5, and Auto maintained an approximately constant credit per 1K tokens within the measured range up to approximately 506K. In this measurement range, no multiplier change near 272K like that seen with Luna was observed.

Output

The summaries from all 4 models agreed on the key points, with differences mainly in phrasing. For this prompt, Luna and Auto were concise, while Opus 5 and Sonnet 5 provided more detailed explanations.

This measurement only covered 3-line summaries of long inputs, and model performance differences were not evaluated.

Output from each model for 480KB input

Luna

AWSサービスのモデルや設定を読み込み、各サービス向けのクライアントを動的に生成します。
エンドポイント解決、認証情報管理、リクエストのシリアライズ、圧縮、再試行、AWS署名を処理します。
HTTP通信やS3などのサービス固有機能を提供し、APIクライアントやパラメータ、例外、ドキュメントも生成します。

Claude Opus 5

botocore は AWS の各サービス API を Python から呼び出すための低レベル SDK 基盤であり、JSON のサービス定義モデルを読み込んでクライアントとそのメソッドを動的に生成します。

この抜粋には、クライアント生成と設定解決(client.py/args.py/config.py/configprovider.py/configloader.py)、認証情報の取得と自動更新(credentials.py)、SigV2/V3/V4/SigV4a・ベアラー等による署名(auth.py/crt/auth.py)、HTTP リクエストの組み立てと送信(awsrequest.py/compress.py)が含まれます。

さらに、エンドポイントの動的ディスカバリ(discovery.py)、リトライやチェックサム等の挙動を制御する設定群、API ドキュメント文字列を生成する docs パッケージといった周辺機能も備え、boto3 や AWS CLI の土台として機能します。

Claude Sonnet 5

botocoreはAWS SDK for PythonおよびAWS CLIの基盤となるコアライブラリで、サービスモデル(JSON定義)からクライアントを動的生成し、リクエストの構築・シリアライズ・署名(SigV2/V4/V4a/S3Express等)・送信・レスポンス解析までを担う。
認証情報の取得(環境変数、共有設定ファイル、IMDS、AssumeRole、SSO、コンテナ、aws loginなど多数のプロバイダ)、エンドポイント解決、リトライ、圧縮、ユーザーエージェント生成、ドキュメント生成といった横断的な機能も内包する。
提示されたファイル群は__init__、args、auth、awsrequest、client、compat、compress、config、configloader、configprovider、context、credentials、crt、discovery、docsなど、これらの責務ごとにモジュール分割された実装コードである。

Auto

botocore は AWS の各サービスに HTTP リクエストを送るための低レベル Python SDK であり、サービス定義モデルから動的にクライアントとメソッドを生成する。

認証情報の解決(環境変数・共有ファイル・SSO・IAM ロールなど)や SigV2/V3/V4/V4a・ベアラートークンといった各種方式でのリクエスト署名を担当する。

さらに、設定の階層的な読み込み、エンドポイント解決、リトライ・圧縮・エンドポイント探索などの処理と、API リファレンス文書の自動生成機能を提供する。

GPT-5.6 Pricing on Bedrock

For GPT-5.6 on Amazon Bedrock, the input and output unit prices switch at the 272K token boundary. When exceeding 272K tokens, the input price doubles and the output price increases by 1.5x.

Model Input up to 272K Output up to 272K Input over 272K Output over 272K
GPT-5.6 Sol $4.40 $22.00 $8.80 $33.00
GPT-5.6 Terra $2.20 $13.20 $4.40 $19.80
GPT-5.6 Luna $0.22 $1.32 $0.44 $1.98

The prices in the table are per 1 million tokens for in-region inference on the Standard tier. While the output price increase ratio is smaller than the input price increase ratio, the output price itself is set higher than the input price.

Both Kiro's credit multipliers and Bedrock's input/output unit prices switch at the same 272K token boundary.

https://aws.amazon.com/bedrock/pricing/

Summary

With Kiro's GPT-5.6 context window expanded to 1M tokens, running out of context is less likely than before. This measurement also confirmed that for the same botocore input, GPT-5.6 Luna has a lower context consumption rate than Claude models, leaving more room to handle larger inputs.

On the other hand, due to the credit multiplier revisions accompanying the expansion, the cost-effectiveness of the GPT-5.6 family warrants reconsideration.
In addition to the credit multiplier, we recommend referring to the estimated credit consumption displayed after running Kiro IDE or CLI when choosing the model best suited to your task.


AI白書2026 配布中

クラスメソッドが独自に行なったAI診断調査をもとに、企業のAI活用の現在地を調査レポートとしてまとめました。企業規模別の活用度傾向に加え、規模を超えてAI活用を進める企業に共通する取り組みまで、自社の現在地を捉えるためのヒントにぜひ。

AI白書2026

無料でダウンロードする

Share this article

AWSのお困り事はクラスメソッドへ