AWS Bedrock logo
AWS Bedrock

Nova Micro

AWS Nova ultra-lightweight version, providing extreme cost-effectiveness for text processing

Category Text Model ID nova-micro
Context Length128K tokens
Model TypeLarge Language Model (LLM)
Special CapabilitiesExtreme Cost-Effectiveness

Pricing & Specs

💰 Pricing

Input$0.035 / M tokens
Output$0.14 / M tokens

⚙️ Specs

Context Length128K tokens
Model TypeLarge Language Model (LLM)
Special CapabilitiesExtreme Cost-Effectiveness
Response SpeedUltra-Fast Inference

API Examples

Python

from openai import OpenAI

client = OpenAI(
    base_url="https://api.xairouter.com/v1",
    api_key="your-api-key"
)

response = client.chat.completions.create(
    model="nova-micro",
    messages=[
        {"role": "user", "content": "Hello!"}
    ]
)

print(response.choices[0].message.content)

cURL

curl https://api.xairouter.com/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "model": "nova-micro",
    "messages": [
      {"role": "user", "content": "Hello!"}
    ]
  }'