Loading model details...
Fetching the latest models and pricing from the API.
Loading model details...
Fetching the latest models and pricing from the API.
Nemotron 3 Nano 30B-A3B is NVIDIA's flagship open reasoning model, featuring a revolutionary hybrid Mamba-Transformer Mixture-of-Experts architecture. With 31.6B total parameters but only 3.2B active per forward pass, it delivers up to 3.3× higher throughput than comparable models while achieving state-of-the-art accuracy on reasoning, coding, and agentic benchmarks. The model supports up to 1M token context length and features configurable reasoning depth with thinking budget control.
/ 1M input tokens
/ 1M output tokens
from openai import OpenAI
# Initialize the OpenAI client with Qubrid base URL
client = OpenAI(
base_url="https://qubrid.com/v1",
api_key="QUBRID_API_KEY",
)
response = client.chat.completions.create(
model="nvidia/NVIDIA-Nemotron-3-Nano-30B-A3B-BF16",
messages=[
{
"role": "user",
"content": "Explain the main benefits of using a chat completion API for text generation."
}
],
max_tokens=8192,
temperature=0.3,
top_p=1,
stream=False,
extra_body={
"enable_thinking": True,
"thinking_budget": 16384,
}
)
print(response.choices[0].message.content)from openai import OpenAI
# Initialize the OpenAI client with Qubrid base URL
client = OpenAI(
base_url="https://qubrid.com/v1",
api_key="QUBRID_API_KEY",
)
response = client.chat.completions.create(
model="nvidia/NVIDIA-Nemotron-3-Nano-30B-A3B-BF16",
messages=[
{
"role": "user",
"content": "Explain the main benefits of using a chat completion API for text generation."
}
],
max_tokens=8192,
temperature=0.3,
top_p=1,
stream=False,
extra_body={
"enable_thinking": True,
"thinking_budget": 16384,
}
)
print(response.choices[0].message.content)Example response
A chat completion API provides a standard way to send conversational input and receive model-generated text in a single request. Key benefits include: • Interoperability: any client can use HTTP with JSON request and response bodies. • Flexibility: system prompts, user messages, and parameters such as temperature and max tokens are easy to configure. • Observability: responses typically include token usage fields for cost and performance tracking. A typical integration sends a POST request with the model name and messages array, then reads the assistant message from the first choice in the response.
from openai import OpenAI
# Initialize the OpenAI client with Qubrid base URL
client = OpenAI(
base_url="https://qubrid.com/v1",
api_key="QUBRID_API_KEY",
)
response = client.chat.completions.create(
model="nvidia/NVIDIA-Nemotron-3-Nano-30B-A3B-BF16",
messages=[
{
"role": "user",
"content": "Explain the main benefits of using a chat completion API for text generation."
}
],
max_tokens=8192,
temperature=0.3,
top_p=1,
stream=False,
extra_body={
"enable_thinking": True,
"thinking_budget": 16384,
}
)
print(response.choices[0].message.content)from openai import OpenAI
# Initialize the OpenAI client with Qubrid base URL
client = OpenAI(
base_url="https://qubrid.com/v1",
api_key="QUBRID_API_KEY",
)
response = client.chat.completions.create(
model="nvidia/NVIDIA-Nemotron-3-Nano-30B-A3B-BF16",
messages=[
{
"role": "user",
"content": "Explain the main benefits of using a chat completion API for text generation."
}
],
max_tokens=8192,
temperature=0.3,
top_p=1,
stream=False,
extra_body={
"enable_thinking": True,
"thinking_budget": 16384,
}
)
print(response.choices[0].message.content)Example response
A chat completion API provides a standard way to send conversational input and receive model-generated text in a single request. Key benefits include: • Interoperability: any client can use HTTP with JSON request and response bodies. • Flexibility: system prompts, user messages, and parameters such as temperature and max tokens are easy to configure. • Observability: responses typically include token usage fields for cost and performance tracking. A typical integration sends a POST request with the model name and messages array, then reads the assistant message from the first choice in the response.
Streaming supported • Function calling supported • See all examples in Playground Open in Playground for streaming, files, and all parameters.
Open in Playground