Model overview
Text generationReasoningAgentNVIDIA Nemotron 3 Super 120B is a 120B-parameter open hybrid MoE text model on AWS Bedrock Mantle, with about 12B active parameters, suited for agent applications, long-context knowledge work, code and data analysis assistance, and content workflows.
Company: NVIDIAProvider: AWS Bedrock
Model capabilities
Input modalityT
Output modalityT
Model experience✓
Function calling✓
Structured output✓
Web search×
Context cache×
Batch inference×
Fine-tuning×
Model pricing
Input$0.15/1M tokens
Output$0.65/1M tokens
Rate limits and context
Context length256K
Maximum output length32K
API reference
EndpointPOST /v1/chat/completions
SDKOpenAI-compatible
API code examples
from openai import OpenAI client = OpenAI( api_key="$WLROUTER_API_KEY", base_url="https://api.wlrouter.com/v1" ) response = client.chat.completions.create( model="nvidia.nemotron-super-3-120b", messages=[ {"role": "user", "content": "Reply with one short sentence."} ], max_tokens=32 ) print(response.choices[0].message.content)