- Home
- Resources
- Integrations
- Google PaLM Language Model
n8n Google PaLM Language Model nodeConfigure Google PaLM Language Model in n8n.
The n8n Google PaLM Language Model node turns a prompt into generated text without leaving your workflow. Version 1 exposes 5 parameters: the model itself, a token ceiling, and three sampling controls. Nothing to authenticate on the node, which suits builders already running n8n.
Verified Trustpilot reviews · AI, automation & growth agency
What does the n8n Google PaLM Language Model node actually do?
It runs a Google PaLM completion on the items that reach it. You pick the model which will generate the completion, you decide how long the answer can get, and you steer how predictable the wording should be. The node ships inside the n8n AI package, so it is there on n8n Cloud and on a self-hosted instance alike, with nothing to install and no extra cost on the n8n side.
Drafting comes first. A workflow reads fresh rows, sends each one through the node with Sampling Temperature kept low, and writes a factual one-line summary back beside the original row in Google Sheets. Same input, same tone, every run.
Classification is the second shape. Maximum Number of Tokens stays small because the answer is a single label, and Top K cuts the improbable words that turn a clean label into a sentence. The routing happens after the node, on the field it returns.
Variation is the third. Top P widens the pool of candidate words, so a batch of short product blurbs does not read like 5 copies of one sentence. Expressions such as {{ $json.prompt }} feed each item its own text, and a required field left empty stops the node instead of generating noise.
When to reach for something else. This node produces one completion per incoming item and nothing more. If you need a loop that picks its own next step and calls tools on its own, the root node is AI Agent, and a model sub-node plugs onto its port. If the answer has to come back as strict JSON, an Auto-fixing Output Parser belongs in that chain. Another provider means another node, such as OpenAI.
Limits worth knowing before you build on it. The node carries no credential of its own and has no sub-node port, and the catalog lists a single version, so an older workflow shows the same 5 parameters. Google bills its own API calls under its own terms; n8n adds nothing on top. Still weighing platforms? The n8n review covers that ground.
Which parameters matter on this node?
The Google PaLM Language Model node has 5 parameters. For each one: the node as you configure it in n8n, what the parameter changes, and our field notes.
Parameters index
Model
modelNameWhat you see in n8n
Notes & use cases
This is where the node learns what to call. The value names the model which will generate the completion, and it applies to every item the node processes in that execution.
Key parameters
- Model: the model which will generate the completion. Leave the stored value alone until a workflow gives you a reason to change it, or pass
{{ $json.model }}when the choice travels with the incoming item.
Maximum Number of Tokens
options.maxOutputTokensWhat you see in n8n
Notes & use cases
Length gets its ceiling here. The field sets the maximum number of tokens to generate in the completion, tokens being the chunks a model reads and writes rather than whole words.
Key parameters
- Maximum Number of Tokens: the cap on generated text. Keep it tight for a one-line label, raise it for a paragraph, or read it from the item with
{{ $json.maxTokens }}.
Sampling Temperature
options.temperatureWhat you see in n8n
Notes & use cases
Predictability lives on this dial. It controls randomness: lowering it results in less random completions, and as the temperature approaches zero the model becomes deterministic and repetitive.
Key parameters
- Sampling Temperature: near zero for extraction and reformatting, where two runs on the same row should agree; higher when repetition is the thing you are trying to avoid.
Top K
options.topKWhat you see in n8n
Notes & use cases
Think of it as a filter on the candidate words. It is used to remove long tail low probability responses, the odd choices that make an otherwise usable answer wander.
Key parameters
- Top K: it defaults to
-1, which disables it, so nothing is filtered until you set a value. Worth reaching for when completions drift off format rather than off topic.
Top P
options.topPWhat you see in n8n
Notes & use cases
Diversity gets its own control, through nucleus sampling. A value of 0.5 means half of all likelihood-weighted options are considered, so the pool the model draws from shrinks or widens with the number.
Key parameters
- Top P: the recommendation is to alter this or Sampling Temperature, but not both, since the two overlap and moving them together makes results hard to read.
Need help automating Google PaLM Language Model with n8n?
A person reads every message.
Google PaLM Language Model and n8n: common questions
01Is the n8n Google PaLM Language Model node included for free?
02What do you need for it to work?
03What are the limits of this node?
04What should you plug in to get started?
05n8n or Make for this kind of AI step?
Get our weekly integration tips.
No spam. Unsubscribe anytime.

