Обновлено 2 июля 2026

Claude Fable 5 на AWS Bedrock

После снятия export controls Anthropic снова включает Fable 5 на AWS Bedrock после global restoration 1 июля 2026. Текущая картина доступа и как подготовить аккаунт.

Коротко: Fable 5 вернулась globally 1 июля 2026; Anthropic говорит, что доступ на AWS, Google Cloud и Microsoft Foundry восстанавливается как можно быстрее. Если Bedrock был gated во время suspension (US identity verification + use-case review), approvals сохраняются.

Текущий статус доступа

После suspension 12 июня – 1 июля Claude Fable 5 восстанавливается на AWS Bedrock в рамках global redeployment. В gated late-June window AWS требовал US-entity identity verification плюс Anthropic-reviewed use case — если прошли, вы set; если нет, request model access в Bedrock console (шаги ниже) пока open rollout завершается.

Статус на 2 июля 2026 — evolving rollout; verify против AWS и Anthropic consoles, они override эту страницу при расхождении.

Как получить доступ, по шагам

  1. 1

    Пройдите US identity verification

    В AWS console убедитесь, что у account/organization есть required US-entity identity verification. Gated frontier models Anthropic restricted verified accounts.

  2. 2

    Напишите простой use case

    Короткое concrete описание использования Fable 5 — кто вы, workload, expected volume, data-handling. Шаблон ниже.

  3. 3

    Submit для Anthropic review

    Use case через model-access request в Bedrock (Model access → request access для Anthropic Claude Fable 5). Anthropic reviews и approves accounts individually.

  4. 4

    Enable модель после approval

    После approval enable Claude Fable 5 под Bedrock → Model access для region. Open in playground active; model ID callable.

  5. 5

    Вызов из SDK или Claude Code

    Invoke Bedrock model ID из app, AWS CLI или point Claude Code на Bedrock. Setup snippet ниже.

Шаблон use-case request

Approvals быстрее при specific low-risk use case. Copy, fill brackets, short paragraph — vague или proxy-reseller requests частая rejection reason.

Company / project: <your org or product name>
Primary use case: <e.g. internal coding assistant for a 12-person dev team>
Why Fable 5: long-horizon agentic coding and large-refactor reasoning that
  smaller models cannot complete in one pass.
Expected monthly volume: <e.g. ~40M input / 2M output tokens>
Data handling: prompts contain our own source code only; no end-user PII.
Safety: requests routed through our backend; no public, unmoderated proxy.
Region: <e.g. us-east-1>

Tip: real organization и bounded workload, no end-user PII в prompts, не public unmoderated proxy. Honesty volume/data-handling — что смотрят reviewers.

Вызов Fable 5 на Bedrock

После approval и enable в region — invoke как любую Bedrock model:

# After your account is approved, call the model on Bedrock:
aws bedrock-runtime invoke-model \
  --model-id anthropic.claude-fable-5-v1:0 \
  --region us-east-1 \
  --body '{"anthropic_version":"bedrock-2023-05-31","max_tokens":1024,"messages":[{"role":"user","content":"Hello, Fable 5"}]}' \
  out.json

# Or point Claude Code at Bedrock:
export CLAUDE_CODE_USE_BEDROCK=1
export ANTHROPIC_MODEL=anthropic.claude-fable-5-v1:0

Availability by region — us-east-1 safest first. Access error после approval — confirm enable под Model access в exact region.

Подготовьте промпты до approval

Approval может занять time. Build/test Fable 5 system prompt сейчас — ship moment access opens; same prompt Bedrock, API, Claude Code.

Claude Fable 5 на AWS — FAQ