Skip to Content
Agentic WorkspaceOverview

Agentic Workspace Overview

The Agentic Workspace is the section of your project where you build, test, and manage AI agents. It lives in the project sidebar under Agentic Workspace and contains three tabs: Agents, MAS Systems, and Agent Personas.

What you can build

Task Agent

A Task Agent is a graph-based workflow agent. You build it on a visual canvas by connecting nodes β€” each node performs one action (call an LLM, query a table, branch on a condition, etc.). Task Agents are deterministic: they follow the graph exactly as you wired it.

Use a Task Agent when you need a predictable, auditable pipeline β€” customer onboarding, data enrichment, approval workflows, RAG-powered Q&A.

AI Agent

An AI Agent is an LLM-driven agent that uses tool calling and autonomous planning. Instead of a fixed graph, you give it a goal, a set of tools, and policies. The LLM decides which tools to call and in what order.

Use an AI Agent when the problem is open-ended β€” research tasks, multi-step reasoning, complex information retrieval where the path isn’t known in advance.

MAS (Multi-Agent System)

A Multi-Agent System coordinates two or more agents working together on a shared goal. You choose an orchestration pattern and assign agents to roles.

Available patterns:

PatternHow it works
Router SpecialistsA Router agent dispatches tasks to specialized agents
Planner-Executor-VerifierA Planner breaks work into steps, Executors run them, a Verifier checks results
HierarchicalA Manager delegates to sub-managers or workers
Debate-JudgeAgents debate, a Judge picks the best answer
Map-ReduceWork is split (mapped) across agents, then combined (reduced)
ReActAn Executor agent reasons and acts in a loop
ℹ️

MAS requires at least 2 agents and supports up to 20 agents per system.

Agent Personas

A Persona defines the personality, tone, and behavior guidelines for an agent. You can assign a persona to any agent β€” it shapes how the agent communicates with users. Personas include instructions on voice, vocabulary, response length, and guardrails.

The agent lifecycle

Every agent follows the same lifecycle:

  1. Create β€” Pick a type (Task or AI), name it, define its goal.
  2. Build β€” For Task Agents: wire nodes on the canvas. For AI Agents: configure tools and policies.
  3. Test β€” Run the agent in a chat session. Inspect traces, replay, debug.
  4. Version β€” Save a snapshot. Compare versions. Promote to production.
  5. Deploy β€” Push to a Preview or Production environment.
  6. Monitor β€” Watch runs, costs, errors. Iterate.

Task Agent canvas at a glance

The Task Agent canvas is a full-screen visual graph editor (the Agent Builder). You drag nodes from the palette, connect them with edges, and configure each node via its settings panel.

Node palette categories

CategoryNodesPurpose
Flow ControlStart, End, Parallel, MergeEntry/exit points, parallel branching
ActionsAgent Call, Tools Call, Quick PromptSub-agent invocation, tool execution, LLM calls
LogicCondition, SwitchConditional branching and multi-way routing
LoopsLoopIterate over arrays or repeat until a condition
DataQuery Table, Insert Row, Update Row, Delete RowCRUD operations on Data Vault tables
RAGSearch Content Store, Reindex Content StoreVector search and re-indexing
AdvancedCodeCustom code execution
πŸ’‘

The Start node defines the workflow entry point. Configure its Input Variables to pass data into the workflow from external callers.

What’s next