Agent
An agent is the unit that answers. It carries:- Instructions — composed from ordered prompt blocks,
which can be shared across agents, carry
{{variables}}filled per request, and be included conditionally. - Tools — chosen individually from your tool catalogue. An agent holds exactly the tools it needs, including which rich UI components it may render.
- A model, or a routing policy. A
policy/…slug lets the model router pick per request; the trace records which model actually served the turn. - Memory — recent messages, active notes (working memory), long-term knowledge (semantic recall) and conversation summary (observational memory), each switchable.
- Limits —
max_stepsbounds how many model round-trips a turn may take before the agent must write its answer. - Sub-agents — optional internal workers, called like tools. A sub-agent is a capability of its parent, not a destination for routing.
Network
A network is a team of agents that presents as one assistant. It holds:- The roster — which agents and workflows are attached. Each resolves to its own active version, so activating a new agent version reaches the network without redeploying it.
- The routing — a handoff prompt that decides which single agent takes each message. See Designing a network.
- The chat configuration —
sdk_ui: greeting, suggestions and theme tokens. Layout and position are SDK init options. - Tool credential requirements — reported on the network’s read: which providers take per-user credentials, and the fields each expects.
Workflow
A workflow is what you use when the sequence must not be left to a model’s judgement. It is a declarative graph:- Steps can be an agent (configured inline on the step), a tool, another workflow, a data mapping, or a JavaScript code step for arithmetic and reshaping.
- Flow operators cover sequencing, branch, foreach, loop, parallel, sleep
and
sleep_until. - References between steps are pickable paths
(
{{ $.steps.fetch.items[0].id }}), and renaming a step in the Studio rewrites every reference to it.
POST /v1/workflows/:id/run
(optionally streaming), or as a tool an agent calls. When an agent calls
one, it always runs the active version — so publishing and activating a new
version reaches every agent using it on the next turn, with no republish of
the agent. See Building a workflow and
Giving an agent a workflow.
Tool
A tool is anything an agent can call. Tools live under a provider:- API providers — your REST endpoints, imported from an OpenAPI spec or added by hand. See Connecting your API.
- MCP providers — remote MCP servers, whose tools are discovered automatically. See Connecting an MCP server.
- Connected apps — catalogue toolkits (Gmail, Slack, …) with per-toolkit credential scoping.
- Platform tools — Sidenet’s own, including the nine rich UI components an agent uses to answer with a chart or a table instead of markdown.
require_approval— the run pauses and asks the user before this tool is called. See Approvals.loop_responses— the tool can page, fan out and project fields on its own. See Working with large APIs.
Thread
A thread is one conversation. It holds the messages, the votes your users cast, and the traces of every turn — which agent answered, which model served it, which tools ran, what it cost, how long it took. Any thread can be reopened read-only in the Studio, showing exactly what your user saw.How they fit together
A request arrives at a network. Routing picks one agent. That agent runs, calling tools — possibly including a workflow, possibly pausing for approval — and writes an answer, placing any components inside it. The turn is recorded as a trace against a thread, attributed to a billing group, and its cost is attributed by a sweep that normally lands moments after the answer. See Traces, cost and billing groups.Where to go next
Embed the assistant
Put the chat sidebar in your product with the SDK.
Design a network
Decide how many agents you need and where the boundaries go.
Connect your API
Give agents your endpoints as tools.
Write what they say
Compose instructions from shared, versioned blocks.