All models
Amazon: Nova Lite
amazon/nova-liteby Amazontextimage
Very low-cost multimodal model that processes text, images and video quickly. A strong default for high-volume workloads.
- Input
- $0.06/M
- Output
- $0.24/M
- Context
- 300K tokens
- Max output
- 10K tokens
- Released
- Dec 2024
Providers
| Provider | Model ID | Input | Output | Context |
|---|---|---|---|---|
| Amazon Bedrock | us.amazon.nova-lite-v1:0 | $0.06/M | $0.24/M | 300K |
API
Use any OpenAI-compatible SDK. Create a key in your dashboard.
shell
curl https://getopentoken.com/v1/chat/completions \
-H "Authorization: Bearer $OPEN_TOKEN_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "amazon/nova-lite",
"messages": [{"role": "user", "content": "What is the meaning of life?"}]
}'