-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAzureAPIKeyModelConfigObject.php
More file actions
188 lines (161 loc) · 4.5 KB
/
AzureAPIKeyModelConfigObject.php
File metadata and controls
188 lines (161 loc) · 4.5 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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
<?php
declare(strict_types=1);
namespace Stagehand\Sessions\ModelConfig;
use Stagehand\Core\Attributes\Optional;
use Stagehand\Core\Attributes\Required;
use Stagehand\Core\Concerns\SdkModel;
use Stagehand\Core\Contracts\BaseModel;
use Stagehand\Sessions\ModelConfig\AzureAPIKeyModelConfigObject\ProviderOptions;
/**
* @phpstan-import-type ProviderOptionsShape from \Stagehand\Sessions\ModelConfig\AzureAPIKeyModelConfigObject\ProviderOptions
*
* @phpstan-type AzureAPIKeyModelConfigObjectShape = array{
* modelName: string,
* provider: 'azure',
* providerOptions: ProviderOptions|ProviderOptionsShape,
* apiKey?: string|null,
* baseURL?: string|null,
* headers?: array<string,string>|null,
* }
*/
final class AzureAPIKeyModelConfigObject implements BaseModel
{
/** @use SdkModel<AzureAPIKeyModelConfigObjectShape> */
use SdkModel;
/**
* Azure OpenAI model provider.
*
* @var 'azure' $provider
*/
#[Required]
public string $provider = 'azure';
/**
* Model name string with provider prefix (e.g., 'openai/gpt-5-nano').
*/
#[Required]
public string $modelName;
/**
* Azure provider-specific model configuration.
*/
#[Required]
public ProviderOptions $providerOptions;
/**
* API key for the model provider.
*/
#[Optional]
public ?string $apiKey;
/**
* Base URL for the model provider.
*/
#[Optional]
public ?string $baseURL;
/**
* Custom headers sent with every request to the model provider.
*
* @var array<string,string>|null $headers
*/
#[Optional(map: 'string')]
public ?array $headers;
/**
* `new AzureAPIKeyModelConfigObject()` is missing required properties by the API.
*
* To enforce required parameters use
* ```
* AzureAPIKeyModelConfigObject::with(modelName: ..., providerOptions: ...)
* ```
*
* Otherwise ensure the following setters are called
*
* ```
* (new AzureAPIKeyModelConfigObject)->withModelName(...)->withProviderOptions(...)
* ```
*/
public function __construct()
{
$this->initialize();
}
/**
* Construct an instance from the required parameters.
*
* You must use named parameters to construct any parameters with a default value.
*
* @param ProviderOptions|ProviderOptionsShape $providerOptions
* @param array<string,string>|null $headers
*/
public static function with(
string $modelName,
ProviderOptions|array $providerOptions,
?string $apiKey = null,
?string $baseURL = null,
?array $headers = null,
): self {
$self = new self;
$self['modelName'] = $modelName;
$self['providerOptions'] = $providerOptions;
null !== $apiKey && $self['apiKey'] = $apiKey;
null !== $baseURL && $self['baseURL'] = $baseURL;
null !== $headers && $self['headers'] = $headers;
return $self;
}
/**
* Model name string with provider prefix (e.g., 'openai/gpt-5-nano').
*/
public function withModelName(string $modelName): self
{
$self = clone $this;
$self['modelName'] = $modelName;
return $self;
}
/**
* Azure OpenAI model provider.
*
* @param 'azure' $provider
*/
public function withProvider(string $provider): self
{
$self = clone $this;
$self['provider'] = $provider;
return $self;
}
/**
* Azure provider-specific model configuration.
*
* @param ProviderOptions|ProviderOptionsShape $providerOptions
*/
public function withProviderOptions(
ProviderOptions|array $providerOptions
): self {
$self = clone $this;
$self['providerOptions'] = $providerOptions;
return $self;
}
/**
* API key for the model provider.
*/
public function withAPIKey(string $apiKey): self
{
$self = clone $this;
$self['apiKey'] = $apiKey;
return $self;
}
/**
* Base URL for the model provider.
*/
public function withBaseURL(string $baseURL): self
{
$self = clone $this;
$self['baseURL'] = $baseURL;
return $self;
}
/**
* Custom headers sent with every request to the model provider.
*
* @param array<string,string> $headers
*/
public function withHeaders(array $headers): self
{
$self = clone $this;
$self['headers'] = $headers;
return $self;
}
}