-
-
Notifications
You must be signed in to change notification settings - Fork 681
Expand file tree
/
Copy pathCreateResponseToolCall.php
More file actions
41 lines (36 loc) · 1.14 KB
/
CreateResponseToolCall.php
File metadata and controls
41 lines (36 loc) · 1.14 KB
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
39
40
41
<?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,
public readonly array $extraContent
) {}
/**
* @param array{id: string, type: string, function: array{name: string, arguments: string}, extra_content: array|null} $attributes
*/
public static function from(array $attributes): self
{
return new self(
$attributes['id'],
$attributes['type'],
CreateResponseToolCallFunction::from($attributes['function']),
$attributes['extra_content'] ?? []
);
}
/**
* @return array{id: string, type: string, function: array{name: string, arguments: string}, extra_content: array}
*/
public function toArray(): array
{
return [
'id' => $this->id,
'type' => $this->type,
'function' => $this->function->toArray(),
'extra_content' => $this->extraContent,
];
}
}