翻訳待ち:Introducing Claude Fable 5.1 on AWS
AI サービスが一時的に利用できないため、復旧後に翻訳を補完します。ソース概要:Claude Fable 5.1 is now available on Amazon Bedrock and Claude Platform on AWS. This post covers Claude Fable 5.1's improvements, the Enterprise Frontier Safeguards for keeping your data in a cloud environment you control, and how to start building with the model on Amazon Bedrock.
AI サービスが一時的に利用できないため、復旧後に翻訳を補完します。
Today, we’re excited to announce the availability of Claude Fable 5.1 on Amazon Bedrock and Claude Platform on AWS. Claude Fable 5.1 delivers frontier intelligence for ambitious tasks across coding, scientific research, and enterprise workflows. Given its capabilities, Anthropic has designated Fable 5.1 a Covered Model, a category of Claude models that carry additional data retention, safety review, and access policies wherever they’re offered. For more information, see Amazon Bedrock abuse detection and Anthropic’s Covered Models page. Anthropic also announced the Enterprise Frontier Safeguards, a solution that will give customers the option to safely deploy Anthropic’s most capable models while keeping their data in cloud infrastructure they control. The Enterprise Frontier Safeguards section that follows covers what this means on Amazon Bedrock. This post covers Claude Fable 5.1’s improvements, the Enterprise Frontier Safeguards, and how to start building with the model on Amazon Bedrock. What makes Claude Fable 5.1 different Anthropic reports Fable 5.1 is a clear improvement over Fable 5 on the hardest reasoning tests Anthropic runs. These tests include competition mathematics, graduate-level questions in engineering and the sciences, and long multi-step problems where reliability is key. In day-to-day use that shows up as better judgment on ambiguous tasks and fewer confident wrong answers: Agentic coding. Carries more of a project on its own, from code base-spanning features to code review and performance work, across multi-hour sessions. It is also more honest: if it gets stuck it says so, and it is less likely to disable a failing test to pass. Autonomous operation. Built for multi-hour jobs that span many applications. It plans, uses the tools it needs, recovers when a step fails, and keeps you updated without being asked. End-to-end knowledge work. Takes an analysis from first question to finished document, doing the research, building the spreadsheet, writing the memo or deck, and checking its numbers as it goes. Built for everyday finance, accounting, and healthcare work. Scientific research. Supports research campaigns from literature and hypotheses to models, experiments, and formal verification. Improved usability. Keeps you updated on long tasks, writes more clearly, and follows instructions more closely. Data retention Because Claude Fable 5.1 is a Covered Model, its use is subject to data retention for up to 30 days and human review by Amazon personnel. With Amazon Bedrock, you can control data retention through a mode on your account or Amazon Bedrock project, which you configure with the data retention API. Using Claude Fable 5.1 requires the aws_review mode, which you set before you invoke the model. In this mode, AWS retains your prompts and outputs for human safety review within the AWS boundary. Claude Fable 5.1 does not require sharing with the model provider. See Amazon Bedrock data retention for more details. Enterprise Frontier Safeguards Enterprise Frontier Safeguards (EFS), built in partnership between AWS and Anthropic, will help eligible customers use Claude Fable 5 and Claude Fable 5.1 models while keeping their data in a cloud environment they control. If you are an EFS-eligible customer, you can use Claude Fable 5 and Claude Fable 5.1 with zero data retention (ZDR) on Amazon Bedrock and Claude Platform on AWS. This is available for internal use through December 31, 2026. Additional Enterprise Frontier Safeguards will be available later this year, you will be able to keep your prompts and outputs in your AWS account, under your own encryption keys, access policies, and audit logging. Safety monitoring will be through automated review with no human review required. Getting started with Claude Fable 5.1 on Amazon Bedrock To try Fable 5.1, open the Amazon Bedrock console, go to Test > Playground, and select Fable 5.1 as the model. From there, you can run a prompt directly against it. Programmatically, you can call the model with the Anthropic Messages API against bedrock-runtime (through the Anthropic SDK). You can also stay on the Invoke and Converse APIs on bedrock-runtime through the AWS Command Line Interface (AWS CLI) and AWS SDK. Prerequisites Active AWS account with Amazon Bedrock access. AWS Command Line Interface (AWS CLI) installed and configured. Python 3.10+. Boto3 installed: pip install boto3. AWS Identity and Access Management (IAM) permissions: bedrock:InvokeModeland bedrock:InvokeModelWithResponseStream. Here’s a quick example using the AWS SDK for Python (Boto3): import boto3 import json # Create a Bedrock Runtime client bedrock_runtime = boto3.client( service_name="bedrock-runtime", region_name="us-east-1" ) # Invoke Claude Fable 5.1 response = bedrock_runtime.invoke_model( modelId="global.anthropic.claude-fable-5-1", contentType="application/json", accept="application/json", body=json.dumps({ "anthropic_version": "bedrock-2023-05-31", "max_tokens": 4096, "messages": [ { "role": "user", "content": "An S3 bucket serves 40 TB/month egress. Estimate the monthly egress cost at $0.09/GB, and state one architecture change to cut it. Show the calculation, keep it under 120 words." } ] }) ) result = json.loads(response["body"].read()) # Fable 5.1 is a reasoning model: the response may include a thinking block # before the text block, so select the text block rather than a fixed index. print(next(b["text"] for b in result["content"] if b["type"] == "text")) You can explore the Getting Started notebook for more examples. Availability Claude Fable 5.1 is available today on Amazon Bedrock through the US Geo CRIS (us.) and Global CRIS (global.) inference profiles. In AWS GovCloud (US), it is available on both the bedrock-runtime and bedrock-mantle endpoints. See the Bedrock documentation for the full list of supported Regions. For pricing information, see Amazon Bedrock pricing. It is also available through Claude Platform on AWS in North America. Give Claude Fable 5.1 a try in the Amazon Bedrock console, in Claude Platform on AWS, or explore the Getting Started notebooks on GitHub. About the authors