Skip to content

3.1.0

Choose a tag to compare

@ilvalerione ilvalerione released this 06 Mar 13:24
· 128 commits to 3.x since this release

Tool approval callback receives an instance of tool:

new ToolApproval(
    tools: [
        // Enable tool approval based on custom rules
        BuyTicketTool::class => function (ToolInterface $tool): bool {
            return $tool->getInput('amount') > 100;
        }
    ]
)