forked from openai-php/client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCreateResponseToolCall.php
More file actions
38 lines (33 loc) · 986 Bytes
/
CreateResponseToolCall.php
File metadata and controls
38 lines (33 loc) · 986 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
declare(strict_types=1);
namespace OpenAI\Responses\Chat;
final class CreateResponseToolCall
{
private function __construct(
public readonly string $id,
public readonly string $type,
public readonly CreateResponseToolCallFunction $function,
) {}
/**
* @param array{id: string, type?: string, function: array{name: string, arguments: string}} $attributes
*/
public static function from(array $attributes): self
{
return new self(
$attributes['id'],
$attributes['type'] ?? 'function',
CreateResponseToolCallFunction::from($attributes['function']),
);
}
/**
* @return array{id: string, type: string, function: array{name: string, arguments: string}}
*/
public function toArray(): array
{
return [
'id' => $this->id,
'type' => $this->type,
'function' => $this->function->toArray(),
];
}
}