calendi/backend/src/Domain/Chat/ToolResult.php
2025-04-26 04:16:02 +02:00

25 lines
401 B
PHP

<?php
declare(strict_types=1);
namespace App\Domain\Chat;
final class ToolResult
{
public function __construct(
private readonly string $toolCallId,
private readonly string $toolName,
) {
}
public function getToolCallId(): string
{
return $this->toolCallId;
}
public function getToolName(): string
{
return $this->toolName;
}
}