mirror of
https://github.com/symfony/ai.git
synced 2026-03-23 23:42:18 +01:00
19 lines
312 B
PHP
19 lines
312 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpLlm\McpSdk\Capability\Tool;
|
|
|
|
final readonly class ToolCall
|
|
{
|
|
/**
|
|
* @param array<string, mixed> $arguments
|
|
*/
|
|
public function __construct(
|
|
public string $id,
|
|
public string $name,
|
|
public array $arguments = [],
|
|
) {
|
|
}
|
|
}
|