Models
Open Playground
nemotron-3-120b-a12b
Text Generation · NVIDIA · Hosted
nemotron-3-120b-a12bNVIDIA Nemotron 3 Super is a hybrid MoE model with leading accuracy for multi-agent applications and specialized agentic AI systems.
Function callingReasoningDeprecated
Model Info
Task Type
Text Generation
Author
NVIDIA
Endpoint
/api/v1/chat/completionsTerms and License
Function calling
Yes
Reasoning
Yes
Vision
No
Unit Pricing
$0.50 per M input tokens, $1.50 per M output tokens
Playground
Try this model
Use the marketplace playground with this public slug.
Usage
curl
curl https://devix.one/api/v1/chat/completions \
-H "Authorization: Bearer mak_..." \
-H "Content-Type: application/json" \
-d '{
"model": "nemotron-3-120b-a12b",
"messages": [
{
"role": "user",
"content": "Explain this model in one sentence."
}
],
"max_tokens": 256
}'Parameters
Request Body
{
"model": "nemotron-3-120b-a12b",
"messages": [
{
"role": "user",
"content": "Explain this model in one sentence."
}
],
"max_tokens": 256
}Response
Text models return OpenAI-compatible chat completions. Image models return data[0].url. Other model types return a normalized result object.
Internal credentials and routing fields are never exposed here.
API Schemas (Raw)
json
{
"model": "string",
"messages": [
{
"role": "system | user | assistant",
"content": "string"
}
],
"max_tokens": "number | optional",
"stream": "boolean | optional"
}