Create an agent
Agents are the specialists that do the work in your bot. Nexus has two types, and the first thing you do when creating one is choose which: a single agent that reasons out each reply on its own, or a multi agent that runs a fixed flow you design. This page covers the Create picker, how to choose, and where to go next for each type.
Both types share the same Agents page and the same Create entry point - they only diverge once you pick. (Whichever you build, the bot-wide Configuration still applies to it; Configuration is project-level and shapes every agent.)
Step 1: Open the Agents page
In your bot, go to AI Agent → Agents. The page header reads Agents, with What's new, Publish, and Create in the top-right. Below the header are two tabs:
- Single agents (N) - your LLM-driven agents (prompt + trigger, Live/Draft status, round avatar).
- Multi agents (N) - your multi agents (flow icon, a Category tag, no status).
The active tab is saved in the URL (?tab=guided), so a link you share reopens on the same tab.
Step 2: Click Create and choose a type
Click Create in the top-right. The "What would you like to create?" picker opens with two options:
| Option | Studio description |
|---|---|
| Single agent | "Understands the question, asks for anything it's missing, and works out each reply on its own from your knowledge. Great for use cases like troubleshooting and support - diagnosing errors, fixing login and device issues, or guiding people to a resolution, step by step." |
| Multi agent | "Runs the exact steps you design, in the same order every time, so nothing is missed and every run stays consistent and auditable. Great for multi-step use cases like order returns, loan applications, KYC checks, or booking an appointment." |

Which one should I pick?
| You want… | Build a… |
|---|---|
| Open-ended help where each reply is reasoned from your knowledge - troubleshooting, support, diagnosing errors, free-form Q&A | Single agent |
| A fixed sequence of steps that runs identically every time and stays auditable - returns, KYC, loan applications, bookings | Multi agent |
| Mostly open-ended help, but with one procedure that must run the same way every time | Single agent that hands off to a multi agent |
| A deterministic flow with one or two steps that need open-ended reasoning | Multi agent with an Agent node inside it |
Tip - you can mix both. A multi agent can include Agent nodes for the steps that genuinely need open-ended reasoning, while the flow keeps the overall sequence deterministic. And every multi agent is reachable from your single agents as a delegation target (via Routing Logic's Routing targets, not the tools picker) - so a single agent can hand off a deterministic journey from an otherwise open-ended conversation. You rarely have to pick one type forever.
Step 3: Name your agent
Whichever type you chose, give the agent a clear, task-based name that says what it does - order-status, billing, order-return, kyc-verification. The name is the slug your routing rules, @-mentions, and other agents will reference (a single agent hands off to a multi agent by this name via Routing Logic), so make it self-explanatory.
Naming tips:
- Name the job, not the topic.
order-returnbeatsreturns-stuff;loan-applicationbeatsloans. - Use the same casing as your other agents so the list stays scannable.
- Avoid duplicate names - each agent needs a distinct name.
Step 4: Continue based on the type you chose
The two types diverge from here:
- Single agent → you land on the agent's profile, where you write its Trigger, Agent instructions, and attach tools. Continue to Single agents.
- Multi agent → you land on the flow canvas, where you add nodes and wire them into a flow. Continue to Multi agents overview and then The multi agent flow canvas.
Note: The two types share the Agents page but are separate entities under the hood. A multi agent has no Live/Draft status - a flow has no draft lifecycle - and it shows a generated flow icon instead of an avatar. For the full distinction, see Multi agents overview.