Skip to main content

Pathways

Pathways are versioned workflow graphs. A receptor can dispatch a pathway instead of a single neuron when you need multi-step orchestration.

When to use pathways

Use pathways when…Use a single neuron when…
Steps depend on prior outputsOne model call + tools is enough
You need branching / routingLogic lives in prompt + tools
Ops wants a visible graphSpeed of iteration matters more

SDK

const pathways = await auvy.pathways.list()
const pathway = await auvy.pathways.get(pathwayId)
Execution still flows through receptor fire or explicit pathway run APIs — see Pathways API.