AWS Bedrock logo
AWS Bedrock

Nova Lite

AWS Nova lightweight version, providing fast and economical multimodal capabilities

Category Text Model ID nova-lite
Context Length300K tokens
Model TypeMultimodal Large Language Model
MultimodalSupports text and images

Pricing & Specs

💰 Pricing

Input$0.06 / M tokens
Output$0.24 / M tokens

⚙️ Specs

Context Length300K tokens
Model TypeMultimodal Large Language Model
MultimodalSupports text and images
Special CapabilitiesFast Multimodal Processing

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-lite",
    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-lite",
    "messages": [
      {"role": "user", "content": "Hello!"}
    ]
  }'