amazonVision
Amazon: Nova 2 Lite
Nova 2 Lite is a fast, cost-effective reasoning model for everyday workloads that can process text, images, and videos to generate text. Nova 2 Lite demonstrates standout capabilities in processing...
Context
1M tokens
Input / 1M tokens
$0.30
Output / 1M tokens
$2.50
Benchmark
—
Pricing
Input tokens$0.30 per 1M tokens
Output tokens$2.50 per 1M tokens
Technical details
Model IDamazon/nova-2-lite-v1
Context window1M tokens
Input modalitiestext, image, video, file
Output modalitiestext
TokenizerNova
Max output tokens65,535
Use with MegaBrain
import OpenAI from 'openai'
const client = new OpenAI({
baseURL: 'https://getmegabrain.com/api/gateway/v1',
apiKey: process.env.MEGABRAIN_API_KEY,
})
const response = await client.chat.completions.create({
model: 'amazon/nova-2-lite-v1',
messages: [{ role: 'user', content: 'Hello!' }],
})