利用再開された「Claude Fable 5」をAmazon Bedrockで検証してみた

利用再開された「Claude Fable 5」をAmazon Bedrockで検証してみた

米国輸出規制によりアクセスが一時停止されていたClaude Fable 5について、Amazon Bedrockでの利用再開を確認しました。Converse APIでの推論実行、先行記事時点からの提供リージョンの変化、Global profileとBedrock Mantleの動作状況を検証します。
2026.07.01

はじめに

2026年6月12日、米国政府の輸出規制によりClaude Fable 5およびMythos 5へのアクセスが停止されました。約3週間の中断を経て、6月30日に輸出規制が解除され、7月1日から利用が再開されています。

https://anthropic.com/news/redeploying-fable-5

Anthropicの公式ブログによると、停止の経緯は次のとおりです。Amazonの研究者がFable 5のセーフガードを回避する手法を報告し、米国政府が輸出規制を適用しました。Anthropicは政府と協議の上、新しい安全分類器を訓練し、報告された手法を99%以上のケースでブロックするよう改善しました。

本記事では、利用再開後のAmazon Bedrockでの動作確認と、先行記事(2026-06-10時点)からのリージョン展開の変化を確認します。

https://dev.classmethod.jp/articles/claude-fable-5-bedrock/

先行記事(6/10)からの変化

項目 先行記事(6/10) 現在(7/1)
モデルステータス ACTIVE → 6/12に停止 ACTIVE
モデル提供リージョン(ACTIVE) us-east-1, eu-north-1 us-east-1, us-east-2, us-west-2, eu-west-1, ap-northeast-1
US inference profileルーティング先 未確認 us-east-1, us-east-2, us-west-2
Mantle対応 検証範囲外 検証範囲では呼び出し不可(全リージョン404)
セーフガード 初期版 新しい安全分類器を追加(報告手法を99%以上ブロック)

検証内容

検証環境は以下のとおりです。

  • リージョン: us-east-1(Converse API)、ap-northeast-1(Global profile試行)
  • モデルID: us.anthropic.claude-fable-5(US cross-region inference profile)
  • 検証日時: 2026-07-01 15:50 JST
  • 前提: Agreement / Data Retentionは先行記事で設定済み

リージョン展開の確認

list-foundation-modelsで各リージョンのモデル存在を確認しました。以下はus-east-1での実行例です。--regionを切り替えて各リージョンで実行しています。

aws bedrock list-foundation-models \
  --query "modelSummaries[?contains(modelId, 'fable')].{modelId:modelId,status:modelLifecycle.status}" \
  --output table \
  --region us-east-1

先行記事ではus-east-1とeu-north-1の2リージョンのみでしたが、5リージョンでモデルがACTIVEになっていました。

リージョン ステータス
us-east-1 ACTIVE
us-east-2 ACTIVE
us-west-2 ACTIVE
eu-west-1 ACTIVE
ap-northeast-1 ACTIVE

US inference profileのルーティング先も確認しました。

aws bedrock list-inference-profiles \
  --query "inferenceProfileSummaries[?contains(inferenceProfileId, 'fable')]" \
  --region us-east-1

US profile(us.anthropic.claude-fable-5)はus-east-1、us-east-2、us-west-2の3リージョンにルーティングされます。Global profile(global.anthropic.claude-fable-5)も存在しますが、後述のとおり検証時点では動作確認できませんでした。

Converse APIでの推論実行

US profile(成功)

aws bedrock-runtime converse \
  --model-id "us.anthropic.claude-fable-5" \
  --messages '[{"content":[{"text":"Hello! Reply with exactly one sentence confirming your model name."}],"role":"user"}]' \
  --inference-config '{"maxTokens":100}' \
  --region us-east-1
レスポンス全文
{
    "output": {
        "message": {
            "role": "assistant",
            "content": [
                {
                    "reasoningContent": {
                        "reasoningText": {
                            "text": "",
                            "signature": "CAISiAIKYAgPEAEYAipA..."
                        }
                    }
                },
                {
                    "text": "I am Claude, an AI assistant made by Anthropic."
                }
            ]
        }
    },
    "stopReason": "end_turn",
    "usage": {
        "inputTokens": 28,
        "outputTokens": 49,
        "totalTokens": 77,
        "cacheReadInputTokens": 0
    },
    "metrics": {
        "latencyMs": 2534
    }
}

US profileでConverse APIの呼び出しに成功しました。レスポンスには先行記事と同様にreasoningContenttextが含まれていました。latencyは2,534ms、outputTokens: 49でした(reasoningContent分のトークンが含まれるため、可視テキストに対して多くなっています)。

Global profile(検証時点で成功確認できず)

Global profileでは2種類のエラーを確認しました。

us-east-1から呼び出した場合:

An error occurred (InternalServerException) when calling the Converse operation (reached max retries: 2):
The system encountered an unexpected error during processing. Try your request again.

計3回試行(SDKの自動リトライ含む)しましたが、全て同一のInternalServerExceptionでした。

ap-northeast-1から呼び出した場合:

An error occurred (ValidationException) when calling the Converse operation:
The model returned the following errors: data retention mode 'default' is not available for this model

InternalServerExceptionについては、同条件で3回試行していずれも成功せず、検証時点では原因を切り分けられませんでした。ValidationExceptionはData Retention設定に関連するエラーですが、本検証だけでは原因を特定できていません。

Mantle(Anthropic互換エンドポイント)

先行記事では検証範囲外としていたBedrock Mantle(/anthropic/v1/messages)での呼び出しを確認しました。

from anthropic import AnthropicBedrockMantle

client = AnthropicBedrockMantle(aws_region='us-east-1')

response = client.messages.create(
    model='anthropic.claude-fable-5',
    max_tokens=64,
    messages=[{'role': 'user', 'content': 'Hello! Reply in one sentence.'}]
)
anthropic.NotFoundError: Error code: 404 -
{'type': 'error', 'error': {'type': 'not_found_error',
 'message': "The model 'anthropic.claude-fable-5' does not exist"}}

以下のリージョンとモデルIDパターンを試しましたが、全て404でした。

リージョン 結果
us-east-1 404
us-west-2 404
us-east-2 404
eu-west-1 404
ap-northeast-1 404

試行したモデルID: anthropic.claude-fable-5claude-fable-5us.anthropic.claude-fable-5global.anthropic.claude-fable-5

検証時点では、試行したリージョンおよびモデルIDの組み合わせではBedrock MantleからFable 5を呼び出せませんでした。Converse API(bedrock-runtime)経由での利用が必要です。

まとめ

Claude Fable 5がAmazon Bedrockで利用再開されていることを確認しました。US inference profile(us.anthropic.claude-fable-5)経由では、us-east-1からConverse APIで推論実行に成功しています。

リージョン展開は、list-foundation-models上で先行記事時点の2リージョンから5リージョンに拡大していました。また、US inference profileのルーティング先もus-east-1、us-east-2、us-west-2の3リージョンとして確認できました。

一方、Global profileは存在するものの本検証では成功確認できず、Bedrock Mantleも試行した範囲では404となりました。現時点で本検証において利用確認できたのは、us-east-1からUS inference profileをConverse APIで呼び出す方法です。


Claudeならクラスメソッドにお任せください

クラスメソッドは、Anthropic社とリセラー契約を締結しています。各種製品ガイドから、業種別の活用法、フェーズごとのお悩み解決などサービス支援ページにまとめております。まずはご覧いただき、お気軽にご相談ください。

サービス詳細を見る

この記事をシェアする

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

関連記事