product updateAmazon Web Services

Amazon Nova Micro Fine-Tuned Text-to-SQL Models Now Available on Bedrock On-Demand Inference at $0.80/Month for 22,000 Q

TL;DR

AWS has enabled fine-tuned Amazon Nova Micro models to run on Bedrock's on-demand inference for text-to-SQL generation. According to AWS testing, a sample workload of 22,000 queries per month costs $0.80 monthly using the serverless approach, compared to higher costs with persistent model hosting. The solution uses LoRA fine-tuning on the sql-create-context dataset containing over 78,000 SQL examples.

2 min read
0

Amazon Nova Micro Fine-Tuned Models Available on Bedrock On-Demand Inference for Text-to-SQL

Amazon Web Services has announced that fine-tuned Amazon Nova Micro models can now be deployed on Bedrock's on-demand inference infrastructure for custom text-to-SQL generation. According to AWS testing, a sample workload of 22,000 queries per month incurred costs of $0.80 monthly, compared to higher costs with persistent model hosting infrastructure.

The solution applies LoRA (Low-Rank Adaptation) fine-tuning to Nova Micro, enabling organizations to customize the model for proprietary SQL dialects and domain-specific database schemas while maintaining serverless, pay-per-token pricing.

Technical Implementation

AWS provides two implementation paths for fine-tuning Nova Micro:

Bedrock Model Customization: Fully managed fine-tuning through the AWS console or API, with training data uploaded to S3. AWS handles underlying infrastructure and the resulting custom model deploys with the same token-based pricing as base Nova Micro with no additional markup.

SageMaker AI Training Jobs: Provides granular control over hyperparameters and training infrastructure for organizations requiring customization beyond managed options.

Both approaches use the same data preparation pipeline and deploy to Bedrock for on-demand inference.

Training Configuration

The demonstration uses the sql-create-context dataset, combining WikiSQL and Spider datasets with over 78,000 examples of natural language questions paired with SQL queries. Training data is formatted as JSONL files with system prompts, user queries, and SQL responses.

Configurable hyperparameters for Nova Micro fine-tuning:

  • Epochs: 1-5 (AWS used 5 in testing)
  • Batch Size: Fixed at 1 for Nova Micro
  • Learning Rate: 0.000001-0.0001 (AWS used 0.00001)
  • Learning Rate Warmup Steps: 0-100 (AWS used 10)

Training completion time: approximately 2-3 hours according to AWS.

Infrastructure Requirements

Deployment requires:

  • AWS account with billing enabled
  • IAM permissions for Bedrock Nova Micro, SageMaker AI, and Bedrock Model Customization
  • Quota for ml.g5.48xl instance for SageMaker AI training

Amazon Bedrock automatically generates training and validation loss metrics, stored in S3. AWS reports that successful training shows both losses decreasing consistently and converging to comparable final values.

What This Means

The on-demand inference option removes the primary cost barrier to deploying fine-tuned models for specialized use cases. Organizations with variable text-to-SQL workloads can now customize models for proprietary SQL dialects without maintaining persistent infrastructure. The $0.80/month cost figure for 22,000 queries demonstrates viability for production workloads with intermittent usage patterns, though AWS does not disclose baseline costs for comparison or specify whether this includes only inference costs or total end-to-end expenses. The LoRA approach trades higher per-query latency for zero idle costs, making it suitable for applications where sub-second response times are acceptable.

Related Articles

product update

AWS Details Reference Architecture for Multi-Tenant Document Chat on Amazon Bedrock Knowledge Bases

AWS has published a reference architecture showing how to build multi-tenant agentic document chat applications using Amazon Bedrock Managed Knowledge Base. The design handles per-user document isolation, asynchronous ingestion up to 50 MB, and agentic multi-hop retrieval with citations, offloading infrastructure work from development teams.

product update

t54 Processes 20 Million Autonomous Agent Payments Using Amazon Bedrock AgentCore

t54's x402-secure trust layer, running on Amazon Bedrock AgentCore payments, has processed over 20 million agent-initiated micropayments without human approval. The system uses a deterministic risk-scoring gate to block payments to unsafe endpoints before funds settle.

product update

Anthropic Brings Background Computer Use to Claude Code and Cowork on Mac

Anthropic has enabled background computer use for Claude Code and Claude Cowork on macOS, available to Pro and Max subscribers. The feature lets Claude click, type, and open apps on a Mac without taking over the user's active cursor, following a similar launch by OpenAI's ChatGPT earlier in 2026.

product update

GitHub Explains How Copilot Cuts AI Coding Costs Without Lowering Task Quality

GitHub published an engineering breakdown of how Copilot reduces cost per coding task by targeting wasted work across the full task lifecycle, not just shortening model outputs. The post argues that shorter responses alone don't guarantee lower cost or better efficiency.

Comments

Loading...