-
-
Notifications
You must be signed in to change notification settings - Fork 591
/
Copy pathCreateStreamedResponseChoice.php
38 lines (33 loc) · 1.19 KB
/
CreateStreamedResponseChoice.php
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 CreateStreamedResponseChoice
{
private function __construct(
public readonly int $index,
public readonly CreateStreamedResponseDelta $delta,
public readonly ?string $finishReason,
) {}
/**
* @param array{index: int, delta?: array{role?: string, content?: string, reasoning_content?: string}, finish_reason: string|null} $attributes
*/
public static function from(array $attributes): self
{
return new self(
$attributes['index'],
CreateStreamedResponseDelta::from($attributes['delta'] ?? []),
$attributes['finish_reason'] ?? null,
);
}
/**
* @return array{index: int, delta: array{role?: string, content?: string, reasoning_content?: string}|array{role?: string, content: null, reasoning_content?: string, function_call: array{name?: string, arguments?: string}}, finish_reason: string|null}
*/
public function toArray(): array
{
return [
'index' => $this->index,
'delta' => $this->delta->toArray(),
'finish_reason' => $this->finishReason,
];
}
}