Agentic

L2 Topology (router)

L2: a router topology, where one agent dispatches to specialists.

Agentic — L2 Topology (router): rendered example
Rendered by Gnomon from the source below. No edits.

The source

31 lines of PlantUML, and pulls in Agentic notation. Copy it, or open the template inside Gnomon and render it as it is.

@startuml
!include <agentic/core>

title Support assistant — L2 Topology

' VIEWPOINT: Topology — what shape is this, and who routes? The orchestration
' spectrum runs scripted flow -> router -> supervisor -> swarm -> solo. This is
' a ROUTER: one classifier picks a specialist on a guard the author fixed.
' DONE WHEN: the position on the spectrum is declared and every route is typed.
'
' Rel_Expr is a deterministic guard, Rel_LLM is the model's judgement, and a
' bare Rel is an unguarded route.

Actor(customer, "Customer")
Channel(inbound, "Inbound request", "chat · carries intent, sensitivity")

Agent(router, "Router", "classifier · haiku-4-5 · effort low")
Agent(billing, "Billing specialist", "opus-5 · reads the ledger")
Agent(shipping, "Shipping specialist", "opus-5 · reads carrier tracking")

Exit_Human(human, "Escalate")
Exit_Complete(done, "Answered")

Rel(customer, inbound)
Rel(inbound, router)
Rel_Expr(router, billing, "intent == 'billing'")
Rel_Expr(router, shipping, "intent == 'shipping'")
Rel_LLM(router, human, "intent is unclear")
Rel(billing, done)
Rel(shipping, done)
@enduml

Render this offline

This template ships in Gnomon and renders on your machine, with no account and nothing sent to a server. The browser editor is free and needs no install.

Get GnomonOpen the browser editor

Others in Agentic architecture diagrams