TotalApp Docs

AI Agents

Standard, reasoning, autonomous, multimodal, and specialist AI agent nodes.

Overview

The AI Agents group holds nodes that call a large language model to reason over upstream data, generate content, or take autonomous action within a pipeline. Each node type trades off autonomy, cost, and predictability differently — from a single-turn Standard call to a fully Autonomous agent that plans its own steps.

Writer Engine routing applies here too

AI Agent nodes route through the same Writer Engine setting (Local CLI / Local LLM / Web LLM / Ollama / API) as the rest of the app. Whichever engine is selected in Settings → Agentic is used when the node executes.

Nodes in This Group

NodeDescription
StandardA single-turn LLM call: send a prompt (with upstream data injected), receive a response.
ReasoningUses an extended-reasoning model configuration for tasks that benefit from step-by-step thinking before answering.
AutonomousAn agent that can plan and execute a sequence of steps on its own, rather than producing a single response.
MultimodalAccepts image or file input alongside text in the prompt.
SpecialistA pre-configured agent tuned for a specific task type (e.g. code review, data extraction).
Domain-SpecificA pre-configured agent tuned for a specific business domain (e.g. legal, finance, HR).
CustomA user-defined agent built from a saved persona and tool configuration in Agent Persona Editor.
Document AnalyzerExtracts structured information from an upstream document.
Map ColumnsUses an LLM to map upstream column names/values onto a target schema.
Sentiment ScorerScores the sentiment of upstream text (positive/neutral/negative or a numeric score).

Usage Tips

Start with Standard

Reach for the Standard node first for most single-step generation or extraction tasks. Move to Reasoning or Autonomous only when the task genuinely needs multi-step planning.

Custom agents come from Agent Persona Editor

Build and save a persona (system prompt, tool access, model choice) in AI Orchestration → Agent Persona Editor, then reference it from a Custom node in the workflow.

Frequently Asked Questions

Can an Autonomous agent call other nodes in the workflow directly?
No. An Autonomous node plans and executes its own internal steps using the tools it has been given access to, but it does not reach outside the node to invoke other workflow nodes — data still flows through normal node connections.
What happens if the configured Writer Engine is unavailable when the node runs?
The node fails with an error rather than silently falling back to a different engine — check Settings → Agentic to confirm the selected engine (e.g. Ollama) is running before executing the workflow.