Agent Node

Agent node Initialise
Agent node: run a TinyAgent sub-agent in your workflow

The Agent Node runs a TinyAgent as a step in your workflow. Instead of using fixed AI prompts (TinyGPT), the agent can use its full capabilities (tools, sub-agents, knowledge base) to process the input.

Type: AGENT_WORKFLOW / AGENT_WORKFLOW_V3 Credits: Varies (depends on the agent's model and tool usage)

When to use Agent Node vs TinyGPT

FeatureTinyGPTAgent Node
PromptFixed, defined in the nodeAgent's full instructions + identity
ToolsNoneAll agent tools (API, workflows, sub-agents)
Knowledge baseNoneAgent's uploaded documents
Multi-step reasoningSingle passCan call tools, reason, call more tools
Cost10 creditsVaries (depends on complexity)
SpeedFast (one API call)Slower (multiple tool calls possible)

Use TinyGPT for simple, single-step AI tasks (classify, extract, format). Use Agent Node for complex tasks that need tools, knowledge, or multi-step reasoning.

Configuration

FieldDescription
AgentSelect which TinyAgent to run
MessageThe input message/query to send to the agent (FX formula; use variables)

How it works

  1. The workflow reaches the Agent Node
  2. It sends the message to the selected agent
  3. The agent processes it using its instructions, tools, and knowledge
  4. The agent may call tools (APIs, workflows) as part of its reasoning
  5. The final response becomes the node's output
  6. Downstream nodes can reference the response

Example: Intelligent support routing

Webhook (support ticket) → Agent Node (support triage agent) → 
  If-Else (agent.result.action) →
    "escalate": Create JIRA (P0) + Send Slack (#urgent)
    "respond": Send Email (agent's drafted response)
    "info_needed": Send Email (request more details)

The agent reads the ticket, checks the knowledge base, uses tools to look up the customer, and decides the best action.

Example: Research + write pipeline

Manual Trigger (topic) → Agent Node (research agent with Scout + Composer) →
  The agent researches the topic, then writes a draft →
  HITL (review) → Send Email
Note

The Agent Node is more powerful but slower and more expensive than TinyGPT. Use it when the task genuinely needs tools and multi-step reasoning, not for simple classification or extraction.