Skip to content

3.4.6

Choose a tag to compare

@ilvalerione ilvalerione released this 12 May 18:48
· 90 commits to 3.x since this release

Custom Tool Call Tracking for Max Runs - PR #566 by @tryvin

class MyCustomTool extends Tool implements HasRunKey
{
    ...

    public function getRunKey(): string
    {
        return $this->name . ':' . json_encode($this->inputs);
    }
}