-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathContent.php
More file actions
156 lines (134 loc) · 3.55 KB
/
Content.php
File metadata and controls
156 lines (134 loc) · 3.55 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<?php
declare(strict_types=1);
namespace GeminiAPI\Resources;
use GeminiAPI\Enums\MimeType;
use GeminiAPI\Enums\Role;
use GeminiAPI\Resources\Parts\FilePart;
use GeminiAPI\Traits\ArrayTypeValidator;
use GeminiAPI\Resources\Parts\ImagePart;
use GeminiAPI\Resources\Parts\PartInterface;
use GeminiAPI\Resources\Parts\TextPart;
class Content
{
use ArrayTypeValidator;
/**
* @param PartInterface[] $parts
* @param Role $role
*/
public function __construct(
public array $parts,
public readonly Role $role,
) {
$this->ensureArrayOfType($parts, PartInterface::class);
}
public function addText(string $text): self
{
$this->parts[] = new TextPart($text);
return $this;
}
public function addImage(MimeType $mimeType, string $image): self
{
$this->parts[] = new ImagePart($mimeType, $image);
return $this;
}
public function addFile(MimeType $mimeType, string $file): self
{
$this->parts[] = new FilePart($mimeType, $file);
return $this;
}
public function addParts(PartInterface ...$parts): self
{
/** @var array<int, PartInterface> $typedParts */
$typedParts = $parts;
$this->ensureArrayOfType($typedParts, PartInterface::class);
$this->parts = array_merge($this->parts, $typedParts);
return $this;
}
public static function text(
string $text,
Role $role = Role::User,
): self {
return new self(
[
new TextPart($text),
],
$role,
);
}
public static function image(
MimeType $mimeType,
string $image,
Role $role = Role::User
): self {
return new self(
[
new ImagePart($mimeType, $image),
],
$role,
);
}
public static function file(
MimeType $mimeType,
string $file,
Role $role = Role::User
): self {
return new self(
[
new FilePart($mimeType, $file),
],
$role,
);
}
public static function textAndImage(
string $text,
MimeType $mimeType,
string $image,
Role $role = Role::User,
): self {
return new self(
[
new TextPart($text),
new ImagePart($mimeType, $image),
],
$role,
);
}
public static function textAndFile(
string $text,
MimeType $mimeType,
string $file,
Role $role = Role::User,
): self {
return new self(
[
new TextPart($text),
new FilePart($mimeType, $file),
],
$role,
);
}
/**
* @param array{
* parts: array<int, array{text?: string, inlineData?: array{mimeType: string, data: string}}>,
* role: string,
* } $content
* @return self
*/
public static function fromArray(array $content): self
{
$parts = [];
foreach ($content['parts'] as $part) {
if (!empty($part['text'])) {
$parts[] = new TextPart($part['text']);
}
if (!empty($part['inlineData'])) {
$mimeType = MimeType::from($part['inlineData']['mimeType']);
$parts[] = new FilePart($mimeType, $part['inlineData']['data']);
}
}
return new self(
$parts,
Role::from($content['role']),
);
}
}