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/

Avatar for quiver

quiver

October 29, 2025
Tweet

More Decks by quiver

Other Decks in Technology

Transcript

  1. 基盤モデルは役⽬を終える⽇が来る 3 $ 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と向き合う 6 • Amazon Bedrockは2023年9⽉にGA • ⽣成AIブームで構築された数多のシステムがいい感じに経年 •

    欧⽶リージョンではモデルのEOL対応は⾝近な課題 • モデルのライフサイクルを理解し、EOL通知を受けてから慌 てるのではなく、将来のEOLにプロアクティブに備えよう
  3. モデル ステータス Launch Legacy Public Extended Access Date EOL Claude

    v2 EOL 2023/08/01 2024/01/21 - 2025/07/21 Claude 3 Sonnet LEGACY 2024/03/04 2025/01/21 - 2025/07/21 Claude 3.5 v1 Sonnet LEGACY 2024/06/20 2025/08/25 2025/12/01 ※EOLが2026/02以降のモ デルがExtended対象 2026/03/01 Clude Sonnet 4.5 ACTIVE 2025/09/25 - - 2026/09/25以降 ※tentative Claude Sonnet系ライフサイクルの抜粋(N. Virginiaリージョン) 18 ※ Claude 3/3.5のLEGACY/EOL状態は欧⽶の⼀部リージョンのみ。⽇本国内リージョンではACTIVE
  4. EOL後はモデル呼び出しに失敗する 27 $ 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の実⾏例
  5. EOL後もモデル呼び出しに成功する 30 $ 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の実⾏例
  6. EOL後に即時に呼び出しが失敗するわけではない 31 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
  7. Claude Sonnet/Haiku 4.5へのモデル移⾏のポイント 35 • モデルを推論プロファイル経由で呼び出す • Sonnet 4.5の単価はSonnet 3.5/4と同じ

    • ⽇本国内クロスリージョン推論も可能(10%⾼い) • 出⼒が変わるので⼗分な検証を実施
  8. 新しいモデルは推論プロファイルで呼び出すこと 36 $ 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の実⾏例