A configuration node โ not executed โ that specifies which AI model and provider an Agent node uses
in graph mode. Connect its output edge to the model_in port of an Agent node. Every
Agent node in graph mode requires exactly one Model Config connection.
model_config
ยท Graph mode only
In graph mode, the way an Agent node gets its model settings is different from linear mode. Instead of configuring the provider, model, temperature, and token limit directly inside the Agent node's drawer, you create a separate Model Config node and draw an edge from it to the Agent.
This separation has several benefits:
The Model Config node carries no state and produces no output at runtime. It is purely a configuration carrier. When the workflow executes, Flusso reads the model settings from the connected Model Config node and applies them to the Agent before it runs.
model_in port. If this connection is missing, the workflow will fail
pre-run validation before any steps execute.
| Field | Status | Description |
|---|---|---|
| Provider | Required | Select one of your configured AI Providers. You can add providers in Settings โ AI Providers. The provider must support the model you enter below. |
| Model | Required | The model identifier string, for example gpt-4o, claude-sonnet-4-6, llama3.2, or mistral-large. This must exactly match the model name your provider accepts. |
| Temperature | Optional | Controls response randomness on a scale from 0 to 2. Low values (0โ0.3) produce consistent, focused output. Higher values (0.7โ1.5) produce more varied, creative responses. Default is 0.7. |
| Max Tokens | Optional | The maximum number of tokens the model may generate in its response. Leave blank to use the model's built-in default. Setting a value helps control response length and manage API costs. |
{{ model_config.output.* }}
in other steps.
gpt-4o), and set Temperature to 0.2 for a factual, consistent assistant.
model_in (M) port on the Agent node. The port is marked with a small M indicator on the agent card.
If your workflow has several Agent nodes that should all use the same model, you only need one
Model Config node. Draw edges from that single Model Config to each Agent's model_in port.
Changing the temperature or model in one place updates all of them simultaneously.
model_in connection. You cannot connect two different Model Config nodes to the same agent. If you want two agents to use different models, create two separate Model Config nodes.