Amazon Bedrock adds reinforcement fine-tuning with OpenAI-compatible APIs
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.
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:
- Authentication: Configure the OpenAI client with Bedrock API keys generated via
aws-bedrock-token-generatorlibrary - Data upload: Submit training data via the Files API in JSONL format containing
messages(prompt in OpenAI message format) and optionalreference_answerfields - Reward function: Deploy an AWS Lambda function that scores model-generated responses
- Job creation: Initiate fine-tuning through the OpenAI SDK; Bedrock automatically generates candidate responses, invokes the reward function, and updates model weights
- Monitoring: Track progress through CloudWatch metrics and the Bedrock console showing reward trends and policy updates
- 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
GitHub Copilot Adds Whole-Codebase Indexing for Faster C++ Code Intelligence
GitHub has updated Copilot CLI's C++ code intelligence with whole codebase indexing, targeting performance in large repositories with millions of lines of code. The change addresses navigation and context challenges specific to deeply interconnected C++ source trees.
Rabbit Launches OS3, a Cloud-Based AI Agent That Runs Without the R1 Device
Rabbit is rolling out OS3, a standalone AI agent that runs across Windows, Mac, and Linux devices without requiring its R1 hardware. The company has stopped manufacturing the R1 and is instead building a new 'cyberdeck' device to run OS3.
OpenAI Lists GPT-6 Luna Pro: A High-Reasoning Mode for Its Budget GPT-6 Model, Not a New Checkpoint
GPT-6 Luna Pro, listed on OpenRouter with a Sep 22, 2026 release date, is not a distinct model but GPT-6 Luna run with reasoning.mode set to 'pro' for higher-quality outputs on complex tasks. It carries a 1.1M token context window and costs $0.10 per 1M input tokens and $0.50 per 1M output tokens under standard routing.
Anthropic Builds Physical Biology Lab Where Claude Directs Robots to Run Drug Experiments
Anthropic is setting up a physical biology lab in the San Francisco area where Claude will guide robots through drug experiments with minimal human involvement. The move follows the company's $400 million acquisition of Coefficient Bio and the addition of Novartis CEO Vas Narasimhan to its board.
Comments
Loading...