3.1.9
Introducting TodoPlanning middleware
Give the agent tha ability to plan complex tasks.
class MyAgent extends Agent
{
...
/**
* Attach middleware to nodes.
*/
protected function middleware(): array
{
$todo = new TodoPlanning();
return [
ChatNode::class => [$todo],
StreamingNode::class => [$todo],
StructuredOutputNode::class => [$todo],
];
}
}