product updateAmazon Web Services

Amazon Bedrock adds reinforcement fine-tuning with OpenAI-compatible APIs

TL;DR

Amazon Bedrock now enables reinforcement fine-tuning (RFT) across multiple model families including Amazon Nova, open-weight models like OpenAI's GPT-OSS 20B, and Qwen 3 32B. The service automates the end-to-end customization workflow using GRPO optimization, allowing models to learn from feedback on multiple responses rather than static training datasets, with support for OpenAI-compatible APIs.

3 min read
0

Amazon Bedrock Adds Reinforcement Fine-Tuning with OpenAI-Compatible APIs

Amazon Bedrock now supports reinforcement fine-tuning (RFT) across multiple model families, beginning with Amazon Nova models in December 2025 and expanding to open-weight models including OpenAI's GPT-OSS 20B and Alibaba's Qwen 3 32B in February 2026.

How Reinforcement Fine-Tuning Works

Unlike traditional supervised fine-tuning, which requires large labeled datasets of input-output pairs, RFT enables models to learn through iterative feedback loops. The model generates multiple candidate responses, receives numerical reward scores based on performance criteria, and adjusts weights to favor higher-scoring outputs.

The process mirrors training a chess player: instead of memorizing every possible move, the player learns through practice and feedback on which decisions lead to winning positions. For LLMs, this translates to more efficient customization requiring fewer prompt examples upfront.

Core RFT components include:

  • Actor model: The foundation model being customized (Nova, Llama, Qwen, or others)
  • State: Current context including prompt, conversation history, and metadata
  • Action: The model's generated response
  • Reward function: A numerical scoring function evaluating response quality, which can verify correctness automatically (particularly effective for math and code tasks)

Bedrock's RFT implementation uses GRPO, a state-of-the-art reinforcement learning algorithm, with built-in convergence detection to automatically stop training at optimal points.

Technical Workflow

The end-to-end process leverages standard OpenAI SDK calls pointed at Bedrock's Mantle endpoint:

  1. Authentication: Configure the OpenAI client with Bedrock API keys generated via aws-bedrock-token-generator library
  2. Data upload: Submit training data via the Files API in JSONL format containing messages (prompt in OpenAI message format) and optional reference_answer fields
  3. Reward function: Deploy an AWS Lambda function that scores model-generated responses
  4. Job creation: Initiate fine-tuning through the OpenAI SDK; Bedrock automatically generates candidate responses, invokes the reward function, and updates model weights
  5. Monitoring: Track progress through CloudWatch metrics and the Bedrock console showing reward trends and policy updates
  6. Inference: Call the fine-tuned model on-demand without endpoint provisioning

AWS handles batching, parallelization, resource allocation, and error recovery transparently. Customer data remains within AWS environments and is not used to train Bedrock-provided models.

Key Advantages

RFT's online learning capability allows models to encounter novel scenarios during training, continuously improving without pre-collected labeled examples. This is particularly effective for verifiable tasks where correctness can be automatically evaluated—eliminating the need for human labeling at scale.

The approach addresses a critical limitation of traditional fine-tuning: the model learns from responses it generates during training, not only from static examples, enabling real-time adaptation and superior performance on complex tasks including code generation, mathematical reasoning, and multi-turn conversations.

Requirements

Implementation requires an AWS account with Bedrock access, Python with openai, boto3, and aws-bedrock-token-generator libraries, appropriate IAM roles for Lambda and Bedrock fine-tuning, and an Amazon Bedrock API key.

What This Means

Bedrock RFT lowers the barrier to enterprise-scale model customization by automating infrastructure complexity while maintaining API compatibility with OpenAI's SDK. For organizations with verifiable outputs (math problems, code, SQL queries), the efficiency gains are substantial—no need to pre-generate thousands of labeled examples. The expanding model support (Nova, Llama, Qwen) signals AWS's commitment to supporting both proprietary and open-weight models, though pricing details for RFT jobs have not been disclosed.

Related Articles

product update

Anthropic Makes Auto Mode Default in Claude Code for Pro, Max, and Team Plans Starting August 14

Anthropic will make auto mode the default setting for new Claude Code sessions on Pro, Max, and Team plans starting August 14, 2026. The company cites a 1,053-person study showing auto mode blocked 89% of harmful actions compared to 13.6% for human reviewers, plus a third-party test claiming zero successful prompt injections out of 720 attempts.

product update

Anthropic Makes Claude Code's Auto Mode Default, Cutting Dangerous Command Approvals by 75 Percentage Points

Anthropic will enable Auto Mode by default in Claude Code for Pro, Max, and Team plans starting August 14, 2026. Internal testing with 1,053 paid users found the classifier-based system caught 89% of dangerous commands compared to 13.6% caught by human reviewers, while producing 25% more pull requests.

product update

Anthropic Adds Cross-Session Messaging to Claude Code, Letting Terminal Instances Communicate Directly

Claude Code sessions running on macOS and Linux can now send messages to one another instead of requiring users to manually copy context between terminals. Anthropic says the feature supports both local and cross-machine communication, though it's not yet available on major cloud platforms.

product update

Anthropic Adds Cross-Session Messaging to Claude Code v2.1.224

Claude Code v2.1.224 introduces cross-session messaging, letting separate Claude Code instances on macOS and Linux send each other summaries to coordinate work. The feature does not support approving permissions or executing commands remotely.

Comments

Loading...