- Home
- Resources
- Integrations
- NVIDIA Nemotron Chat Model
n8n NVIDIA Nemotron Chat Model nodeConfigure NVIDIA Nemotron Chat Model in n8n.
Nemotron runs your prompts, the agent does the rest. The n8n NVIDIA Nemotron Chat Model node is a sub-node, a small node you attach to a bigger one instead of running it alone. It exposes 9 parameters, from the model list to retries, and plugs into any root node that asks for a language model.
Verified Trustpilot reviews · AI, automation & growth agency
What does the n8n NVIDIA Nemotron Chat Model node do in a workflow?
It gives another node its brain. On its own the node produces nothing: it has no main input and never runs by itself. You attach it to a root node, an AI Agent or a chain, through the port marked Model, and from then on every completion that root node needs is generated by a Nemotron model, either hosted on build.nvidia.com or served by a self-hosted NIM container on your own infrastructure.
Take a support assistant. An incoming message reaches an AI Agent, the agent decides what to answer, and the wording comes from the model you selected in Model. Keep Sampling Temperature low here: a support reply that changes tone on every run is a support reply nobody trusts.
Second case, product copy at volume. A workflow reads rows from Google Sheets, sends each row to a chain backed by this node, and writes the generated description back into the sheet. Maximum Number of Tokens is what stops one long-winded run from producing a paragraph where a line was expected, and Frequency Penalty keeps the model from repeating the same selling point on every row.
Third case, routing. A message lands in Slack, a classifier node decides which team owns it, and the answer has to be machine readable. Set Response Format to json_object, ask for JSON in the prompt of the chain or agent, and the next node can read the result with an expression such as {{ $json.category }}, the n8n syntax that pulls a field out of the item coming in.
When would you pick something else? The node only talks to Nemotron models through an OpenAI-spec compatible endpoint. If your account and your keys sit with another provider, the matching sub-node is the honest choice: OpenAI or Anthropic plug into exactly the same port, and swapping one chat model for another is a matter of dragging a connection. Staying on Nemotron makes sense when you want the same model available on build.nvidia.com and inside a NIM container you control.
The limits are worth knowing before you build. There is no main input, so a Nemotron node dropped on a blank canvas stays idle. n8n loads the model list from the endpoint configured in your credential, and falls back to a curated list of known Nemotron IDs when it cannot reach that endpoint. NVIDIA bills its own API calls under its own terms, n8n adds nothing on top. If you are still weighing the platform itself rather than the node, the n8n review goes through that question.
How do you authenticate the Nemotron node in n8n?
- 01
Create the NVIDIA build account
Cloud access starts with an account on build.nvidia.com. Open a Nemotron model in the catalogue, select Get API Key, and copy the key straight away. One credential covers both deployment modes, so this is also the account you keep if you later move part of the traffic to your own hardware. Nothing is installed in n8n at this stage.
- 02
Add the credential in n8n
In the Credentials menu, create an NVIDIA Nemotron credential. Two fields matter. Base URL is the OpenAI-spec compatible endpoint to call, and the default
https://integrate.api.nvidia.com/v1points at build.nvidia.com. API Key takes the key you just copied. Saved once, the credential is reusable across every workflow in the instance. - 03
Point it at a self-hosted NIM instead
Running a NVIDIA Inference Microservice on your own infrastructure changes one thing: replace Base URL with your NIM endpoint, keeping the
/v1path, for examplehttp://localhost:8000/v1. If that NIM enforces authentication, paste its token into API Key. If it does not, leave the field blank, which is allowed here and rare enough to be worth saying out loud.
Where does this sub-node plug in?
n8n splits AI work between a root node, which receives the workflow items, and sub-nodes attached to its ports, one type of sub-node per port. This node is a sub-node, and it has a single outgoing connection.
Output (what it plugs into)
- Model
ai_languageModel
01Model
This is the language model port, the socket a root node exposes when it needs text generated. Drag the Nemotron node onto it and the root node stops asking where its completions come from.
Key parameters
- Required: a root node without a chat model attached to this port cannot execute at all.
- AI Agent and AI Agent Tool: the usual starting points, an agent that decides and acts.
- Basic LLM Chain: one prompt in, one completion out, with no tool calling in between.
- Text Classifier and Information Extractor: narrower root nodes that sort an item or pull structured fields out of free text.
What can you configure on the node?
The NVIDIA Nemotron Chat Model node has 9 parameters. For each one: the node as you configure it in n8n, what the parameter changes, and our field notes.
Parameters index
Model
modelWhat you see in n8n
Notes & use cases
Picks the Nemotron model that generates the completion. n8n loads the list dynamically from the endpoint set in your credential, and falls back to a curated list of well-known Nemotron IDs when that endpoint is unreachable.
Key parameters
- Model: the dropdown itself, from the small
nvidia/nvidia-nemotron-nano-9b-v2up tonvidia/nemotron-3-super-120b-a12b, with reasoning and vision variants such asnvidia/nemotron-nano-12b-v2-vlin between.
Frequency Penalty
options.frequencyPenaltyWhat you see in n8n
Notes & use cases
Controls how often the model repeats itself. Positive values penalize tokens, the word fragments a model works with, based on how often they already appeared in the text, so the higher you go the less the model repeats the same line verbatim.
Key parameters
- Frequency Penalty: a number you raise when generated text loops back on the same phrasing.
Maximum Number of Tokens
options.maxTokensWhat you see in n8n
Notes & use cases
Caps the completion length. The value is a token count, not a character count, and -1 hands the decision back to the model default.
Key parameters
- Maximum Number of Tokens: leave it at
-1unless something downstream has a size limit to respect.
Response Format
options.responseFormatWhat you see in n8n
Notes & use cases
Decides whether the node returns prose or parseable data. JSON mode should guarantee that what the model produces is valid JSON.
Key parameters
- Text (
text): a regular text response, the default behavior. - JSON (
json_object): valid JSON, on one condition, the wordjsonhas to appear in the prompt of the chain or agent above.
Presence Penalty
options.presencePenaltyWhat you see in n8n
Notes & use cases
Pushes the model towards new subjects. Positive values penalize tokens that have already appeared at all, regardless of how often, which raises the chance the answer moves on rather than circling.
Key parameters
- Presence Penalty: raise it for exploration, keep it down when the answer must stay on one topic.
Sampling Temperature
options.temperatureWhat you see in n8n
Notes & use cases
Sets how random the sampling process is. As the value approaches zero the model becomes deterministic and repetitive; a higher temperature creates more diverse sampling and increases the risk of hallucinations.
Key parameters
- Sampling Temperature: the single most useful option on this node, and the first one to check when output quality moves around between runs.
Timeout
options.timeoutWhat you see in n8n
Notes & use cases
Sets the maximum time a single request is allowed to take, in milliseconds. Past that, the request is abandoned rather than left hanging.
Key parameters
- Timeout: a number in milliseconds, so
2000means two seconds, not two thousand.
Max Retries
options.maxRetriesWhat you see in n8n
Notes & use cases
Says how many times n8n retries a request before giving up on it.
Key parameters
- Max Retries: the retry count for one request, worth raising on a shared endpoint and worth lowering when a failure should surface fast.
Top P
options.topPWhat you see in n8n
Notes & use cases
Controls diversity through nucleus sampling. At 0.5, half of all likelihood-weighted options are considered, so a lower value makes the model ignore its less probable choices.
Key parameters
- Top P: the probability mass the completion is allowed to draw from.
Need help automating NVIDIA Nemotron Chat Model with n8n?
A person reads every message.
Questions people ask before building
01Is the n8n NVIDIA Nemotron Chat Model node included in n8n?
02What do you need to make it work?
03What are the limits of this node?
04What is the minimum you have to plug in, and where should you start?
05n8n or Make for running Nemotron models?
Get our weekly integration tips.
No spam. Unsubscribe anytime.


