Nova Micro 1.0

Amazon chattool_use

API ID: amazon/nova-micro-v1

Input Price
$0.04
/1M tokens
Output Price
$0.14
/1M tokens

About Nova Micro 1.0

Nova Micro is Amazon's most efficient model, designed for maximum cost-effectiveness in high-volume text applications. As the smallest Nova variant, it delivers basic capability at industry-leading low pricing. The model handles straightforward text tasks including classification, simple generation, and basic conversation. Nova Micro features extremely fast inference and minimal per-request costs, making it ideal for applications processing millions of requests. It integrates with AWS services through Bedrock for enterprise deployment. For organizations seeking the most affordable AI option within AWS, Nova Micro provides capable text processing at minimal cost. It's particularly valuable for content filtering, simple automation, and high-throughput pipelines where basic AI suffices.

๐Ÿ’ฐ
Price Ranking
#606 lowest price among 950 Chat models

Model Specifications

Context Length
128k
Max Output
5k
Release Date
2024-12-05
Capabilities
chat tool_use
Input Modalities
text
Output Modalities
text

Best For

  • Conversations, content writing, general assistance

Consider Alternatives For

  • Image understanding (needs vision capability)

๐Ÿ’ฐ Real-World Cost Examples

Estimated monthly costs for common use cases

Personal AI Assistant
$0.06
/month
50 conversations/day, ~500 tokens each
Customer Service Bot
$1.79
/month
1000 tickets/day, ~800 tokens each

Amazon Model Lineup

Compare all models from Amazon to find the best fit

Model Input Output Context Capabilities
Nova Micro 1.0 Current $0.04 $0.14 128k chat tool_use
Nova Lite 1.0 $0.06 $0.24 300k chat vision tool_use
Nova 2 Lite $0.30 $2.50 1.0M chat vision video
Nova Pro 1.0 $0.80 $3.20 300k chat vision tool_use
Nova Premier 1.0 $2.50 $12.50 1.0M chat vision tool_use

Similar Models from Other Providers

Cross-brand alternatives with similar capabilities

Alibaba Qwen Qwen3 8B
Input: $0.04
Output: $0.14
Context: 41k
Zhipu AI GLM 4.1V 9B Thinking
Input: $0.04
Output: $0.14
Context: 66k
Alibaba Qwen Qwen3 235B A22B Instruct 2507
Input: $0.07
Output: $0.10
Context: 262k
Mistral Devstral Small 2505
Input: $0.06
Output: $0.12
Context: 131k

๐Ÿš€ Quick Start

Get started with Nova Micro 1.0 API

OpenAI-compatible SDK
from openai import OpenAI

client = OpenAI(
    base_url="https://api.provider.com/v1",
    api_key="YOUR_API_KEY"
)

response = client.chat.completions.create(
    model="amazon/nova-micro-v1",
    messages=[
        {"role": "user", "content": "Hello!"}
    ]
)
print(response.choices[0].message.content)