Skip to main content

Agents

Agent-shaped inferlets that loop generation against tools, code execution, or other agents.

Running on the dummy driver?

agent-react and agent-codeact parse the model's output as JSON to extract the next action. The dummy driver returns uniform random tokens, so that JSON parse never succeeds — the loops hit max_steps without firing a tool. agent-swarm's coordination layer (broadcast / subscribe) works correctly; only the message content is random.

InferletWhat it shows
agent-reactReAct (Reasoning + Acting) loop with tool execution.
agent-codeactCodeACT: JavaScript code execution as the action space.
agent-swarmCollaborative agent swarm coordinating via messaging::broadcast/subscribe.