Expand description
Agent composition builtins for the DSL
Provides async builtins for spawning agents, sending messages,
and executing concurrent patterns: spawn_agent, ask, send_to,
parallel, and race.
Functionsยง
- builtin_
ask - Execute the
askbuiltin: send a message to a named agent and wait for response. - builtin_
parallel - Execute the
parallelbuiltin: run multiple agent calls concurrently. - builtin_
race - Execute the
racebuiltin: run multiple agent calls, return first to complete. - builtin_
send_ to - Execute the
send_tobuiltin: fire-and-forget message to a named agent. - builtin_
spawn_ agent - Execute the
spawn_agentbuiltin: register a new named agent.