Upgrade to Pro — share decks privately, control downloads, hide ads and more …

JAWS UG AI/ML #32 Amazon BedrockモデルのライフサイクルとEOL...

Avatar for quiver quiver
October 29, 2025

JAWS UG AI/ML #32 Amazon BedrockモデルのライフサイクルとEOL対応/How Amazon Bedrock Model Lifecycle Works

■登壇イベント

JAWS-UG AI/ML #32:Generative AI / ML LT大会 - connpass
https://jawsug-ai.connpass.com/event/371971/

■解説ブログ

https://dev.classmethod.jp/articles/how-bedrock-model-lifecycle-eol-works/

Avatar for quiver

quiver

October 29, 2025
Tweet

More Decks by quiver

Other Decks in Technology

Transcript

  1. 基盤モデルは役⽬を終える⽇が来る 4 $ aws bedrock-runtime converse \ --model-id anthropic.claude-v2:1 \

    --messages '[{"role":"user", "content":[{"text":"Hello!"}]}]' An error occurred (ResourceNotFoundException) when calling the Converse operation: This model version has reached the end of its life. Please refer to the AWS documentation for more details.
  2. Amazon Bedrock ModelのEOLと向き合う 8 • Amazon Bedrockは2023年9⽉にGA • ⽣成AIブームで構築された数多のシステムがいい感じに経年 し、EOLを迎えつつある

    • EOL後は呼び出しが失敗してサービス障害につながる • モデルのライフサイクルを理解し、EOL通知を受けてから慌 てるのではなく、将来のEOLにプロアクティブに備える
  3. 注意:スライドの特記事項 9 • 例に出す基盤モデルはClaude Sonnet系が中⼼ • 例に出すClaude 3/3.5 Sonnetは登壇時点で東京リージョンで はEOLの予告無し

    • 登壇前⽇の2025/10/28にClaude 3.7 Sonnetが東京を含む全 リージョンでEOL予告されたためスライド追記
  4. モデル ステータス Launch Legacy Public Extended Access Date EOL Claude

    3 Sonnet EOL 2024/03/04 2025/01/21 - 2025/07/21 Claude 3.5 v1 Sonnet LEGACY 2024/06/20 2025/08/25 2025/10/01 2026/03/01 Claude 3.7 Sonnet LEGACY 2025/02/24 2025/10/28 2026/01/27 2026/04/28 Clude Sonnet 4.5 ACTIVE 2025/09/25 - - 2026/09/25以降 ※tentative Claude Sonnet系ライフサイクルの抜粋(N. Virginiaリージョン) 20 ※ Claude 3/3.5のLEGACY/EOL状態は欧⽶の⼀部リージョンのみ。3.7は⽇本を含む全リージョン
  5. EOL後はモデル呼び出しに失敗する 33 $ aws bedrock-runtime converse \ --model-id anthropic.claude-v2:1 \

    --messages '[{"role":"user", "content":[{"text":"Hello!"}]}]' An error occurred (ResourceNotFoundException) when calling the Converse operation: This model version has reached the end of its life. Please refer to the AWS documentation for more details. ※ N. Virginia 2025/10/29の実⾏例
  6. EOL後もモデル呼び出しに成功する 36 $ aws bedrock-runtime converse \ --model-id anthropic.claude-3-sonnet-20240229-v1:0 \

    --messages '[{"role":"user", "content":[{"text":"Hello!"}]}]' { "output": { "message": { "role": "assistant", "content": [ { "text": "Hello! It's great to meet you. How can I assist you today?" } … ※ N. Virginia 2025/10/29の実⾏例
  7. EOL後に即時に使えなくなるわけではない 37 On, or soon after the EOL date, the

    model is no longer available for use … ※ https://docs.aws.amazon.com/bedrock/latest/userguide/model-lifecycle.html
  8. Claude Sonnet/Haiku 4.5へのモデル移⾏のポイント 41 • モデルを推論プロファイル経由で呼び出す • Sonnet 4.5の単価はSonnet 3.5/4と同じ

    • ⽇本国内クロスリージョン推論も可能(10%⾼い) • 出⼒が変わるので⼗分な検証を実施
  9. 新しいモデルは推論プロファイルで呼び出すこと 42 $ aws bedrock-runtime converse \ --model-id anthropic.claude-sonnet-4-5-20250929-v1:0 \

    --messages '[{"role":"user", "content":[{"text":"Hello!"}]}]' An error occurred (ValidationException) when calling the Converse operation: Invocation of model ID anthropic.claude-sonnet-4-5-20250929-v1:0 with on-demand throughput isn’t supported. Retry your request with the ID or ARN of an inference profile that contains this model. ※ N. Virginia 2025/10/29の実⾏例