-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathOpenRouterRequest.php
348 lines (307 loc) · 12.4 KB
/
OpenRouterRequest.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
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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
<?php
declare(strict_types=1);
namespace MoeMizrak\LaravelOpenrouter;
use GuzzleHttp\ClientInterface;
use GuzzleHttp\Promise\PromiseInterface;
use Illuminate\Support\Arr;
use JsonException;
use MoeMizrak\LaravelOpenrouter\DTO\ChatData;
use MoeMizrak\LaravelOpenrouter\DTO\CostResponseData;
use MoeMizrak\LaravelOpenrouter\DTO\ErrorData;
use MoeMizrak\LaravelOpenrouter\DTO\LimitResponseData;
use MoeMizrak\LaravelOpenrouter\DTO\RateLimitData;
use MoeMizrak\LaravelOpenrouter\DTO\ResponseData;
use MoeMizrak\LaravelOpenrouter\DTO\UsageData;
use Psr\Http\Message\ResponseInterface;
/**
* OpenRouter request and formed response class.
*
* OpenRouter doc: https://openrouter.ai/docs
*
* Class OpenRouterRequest
* @package MoeMizrak\LaravelOpenrouter
*/
final class OpenRouterRequest extends OpenRouterAPI
{
// Buffer variable for incomplete streaming data.
private static string $buffer = '';
/**
* Sends a model request for the given chat conversation.
*
* @param ChatData $chatData
*
* @return ErrorData|ResponseData
* @throws \ReflectionException
*/
public function chatRequest(ChatData $chatData): ErrorData|ResponseData
{
// The path for the chat completion request.
$chatCompletionPath = 'chat/completions';
// Detect if stream chat completion is requested, and return ErrorData stating that chatStreamRequest needs to be used instead.
if ($chatData->stream) {
return new ErrorData(
code: 400,
message: 'For stream chat completion please use "chatStreamRequest" method instead!',
);
}
// Filter null values from the chatData object and return array.
$chatData = $chatData->convertToArray();
// Options for the Guzzle request
$options = [
'json' => $chatData,
];
// Send POST request to the OpenRouter API chat completion endpoint and get the response.
$response = app(ClientInterface::class)->request(
'POST',
$chatCompletionPath,
$options
);
// Decode the json response
$response = $this->jsonDecode($response);
return $this->formChatResponse($response);
}
/**
* Sends a streaming request for the given chat conversation.
*
* @param ChatData $chatData
*
* @return PromiseInterface
*/
public function chatStreamRequest(ChatData $chatData): PromiseInterface
{
// The path for the chat completion request.
$chatCompletionPath = 'chat/completions';
$chatData->stream = true;
// Filter null values from the chatData object and return array.
$chatData = $chatData->convertToArray();
// Add headers for streaming.
$headers = [
'Content-Type' => 'text/event-stream',
'Cache-Control' => 'no-cache'
];
// Options for the Guzzle request
$options = [
'json' => $chatData,
'headers' => $headers
];
// Send POST request to the OpenRouter API chat completion endpoint and get the streaming response.
$promise = app(ClientInterface::class)->requestAsync(
'POST',
$chatCompletionPath,
$options
);
/*
* Return streaming response promise which can be resolved with promise->wait().
*/
return $promise->then(
function (ResponseInterface $response) {
return $response->getBody();
}
);
}
/**
* It filters streaming response string so that response string is mapped into ResponseData.
*
* @param string $streamingResponse
*
* @return array
* @throws \ReflectionException
*/
public function filterStreamingResponse(string $streamingResponse): array
{
// Prepend any leftover data from the previous iteration
$streamingResponse = self::$buffer . $streamingResponse;
// Clear buffer
self::$buffer = '';
// Split the string by lines
$lines = explode("\n", $streamingResponse);
// Filter out unnecessary lines and decode the JSON data
$responseDataArray = [];
// Flag to indicate if the first line is a complete JSON
$firstLineComplete = false;
foreach ($lines as $line) {
if (str_starts_with($line, 'data: ')) {
// Remove "data: " prefix
$jsonData = substr($line, strlen('data: '));
try {
// Attempt to decode the JSON data
$data = json_decode($jsonData, true, 512, JSON_THROW_ON_ERROR);
$responseDataArray[] = $this->formChatResponse($data);
$firstLineComplete = true;
} catch (JsonException $e) {
// If JSON decoding fails, buffer the line and continue
self::$buffer = $line;
continue;
}
} else if (trim($line) === '' && ! empty(self::$buffer)) {
// If the line is empty and there's something in the buffer, try to process the buffer
try {
// Attempt to decode the JSON data
$data = json_decode(self::$buffer, true, 512, JSON_THROW_ON_ERROR);
$responseDataArray[] = $this->formChatResponse($data);
self::$buffer = ''; // Clear buffer after successful processing
} catch (JsonException $e) {
// If JSON decoding fails, retain the buffer for next iteration
continue;
}
} else if (! str_starts_with($line, 'data: ') && ! empty(trim($line))) {
// If the line doesn't start with 'data: ', it might be part of a multiline JSON or a partial line
if (! $firstLineComplete) {
// If it's the first line and not complete, assume it's part of the first JSON object
self::$buffer = $line;
$firstLineComplete = true; // Set flag to true after buffering incomplete first line
} else {
// If it's not the first line or the first line is complete, buffer it for next iteration
self::$buffer .= $line;
}
} else {
// Line does not contain 'data: ' and is not part of a multiline JSON, likely incomplete
self::$buffer .= $line;
}
}
return $responseDataArray;
}
/**
* Sends a cost request for the given generation id.
*
* @param string $generationId
*
* @return CostResponseData
* @throws \ReflectionException
*/
public function costRequest(string $generationId): CostResponseData
{
// The path for the cost and stats request. e.g. generation?id=$GENERATION_ID
$costPath = 'generation?id=' . $generationId;
// Send GET request to the OpenRouter API generation endpoint and get the response.
$response = app(ClientInterface::class)->request(
'GET',
$costPath
);
return $this->formCostsResponse($response);
}
/**
* Sends limit request for the rate limit or credits left on an API key.
*
* @return LimitResponseData
*/
public function limitRequest(): LimitResponseData
{
// The path for the rate limit or credits left request.
$limitPath = 'auth/key';
// Send GET request to the OpenRouter API limit endpoint and get the response.
$response = app(ClientInterface::class)->request(
'GET',
$limitPath
);
return $this->formLimitResponse($response);
}
/**
* Forms the response as ResponseData including id, model, object created, choices and usage if exits.
*
* @param mixed|null $response
*
* @return ResponseData
* @throws \ReflectionException
*/
private function formChatResponse(mixed $response = null) : ResponseData
{
// Map the usage data if it exists.
$usageArray = Arr::get($response, 'usage');
$usage = new UsageData(
prompt_tokens: Arr::get($usageArray, 'prompt_tokens'),
completion_tokens: Arr::get($usageArray, 'completion_tokens'),
total_tokens: Arr::get($usageArray, 'total_tokens'),
);
// Map the response data to ResponseData and return it.
return new ResponseData(
id: Arr::get($response, 'id'),
provider: Arr::get($response, 'provider'),
model: Arr::get($response, 'model'),
object: Arr::get($response, 'object'),
created: Arr::get($response, 'created'),
choices: Arr::get($response, 'choices'),
usage: $usage,
citations: Arr::get($response, 'citations'),
);
}
/**
* Forms the cost response as CostResponseData.
* First decodes the json response, then map it in CostResponseData to return the response.
*
* @param ResponseInterface|null $response
*
* @return CostResponseData
* @throws \ReflectionException
*/
private function formCostsResponse(?ResponseInterface $response = null) : CostResponseData
{
// Decode the json response
$response = $this->jsonDecode($response);
// Map the response data to CostResponseData and return it.
return new CostResponseData(
id: Arr::get($response, 'data.id'),
model: Arr::get($response, 'data.model'),
total_cost: Arr::get($response, 'data.total_cost'),
origin: Arr::get($response, 'data.origin'),
streamed: Arr::get($response, 'data.streamed'),
cancelled: Arr::get($response, 'data.cancelled'),
finish_reason: Arr::get($response, 'data.finish_reason'),
generation_time: Arr::get($response, 'data.generation_time'),
created_at: Arr::get($response, 'data.created_at'),
provider_name: Arr::get($response, 'data.provider_name'),
tokens_prompt: Arr::get($response, 'data.tokens_prompt'),
tokens_completion: Arr::get($response, 'data.tokens_completion'),
native_tokens_prompt: Arr::get($response, 'data.native_tokens_prompt'),
native_tokens_completion: Arr::get($response, 'data.native_tokens_completion'),
num_media_prompt: Arr::get($response, 'data.num_media_prompt'),
num_media_completion: Arr::get($response, 'data.num_media_completion'),
app_id: Arr::get($response, 'data.app_id'),
latency: Arr::get($response, 'data.latency'),
moderation_latency: Arr::get($response, 'data.moderation_latency'),
upstream_id: Arr::get($response, 'data.upstream_id'),
usage: Arr::get($response, 'data.usage'),
);
}
/**
* Forms the response as LimitResponseData
* First decodes the json response and get the result, then map it in LimitResponseData to return the response.
*
* @param ResponseInterface|null $response
*
* @return LimitResponseData
* @throws \ReflectionException
*/
private function formLimitResponse(?ResponseInterface $response = null): LimitResponseData
{
// Decode the json response
$response = $this->jsonDecode($response);
// Map the rate limit data if it exists.
$rateLimitArray = Arr::get($response, 'data.rate_limit');
$rateLimit = new RateLimitData(
requests: Arr::get($rateLimitArray, 'requests'),
interval: Arr::get($rateLimitArray, 'interval'),
);
// Map the response data to LimitResponseData and return it.
return new LimitResponseData(
label: Arr::get($response, 'data.label'),
usage: Arr::get($response, 'data.usage'),
limit_remaining: Arr::get($response, 'data.limit_remaining'),
limit: Arr::get($response, 'data.limit'),
is_free_tier: Arr::get($response, 'data.is_free_tier'),
rate_limit: $rateLimit,
);
}
/**
* Decodes response to json.
*
* @param ResponseInterface|null $response
*
* @return mixed|null
*/
private function jsonDecode(?ResponseInterface $response = null): mixed
{
// Get the response body or return null.
return ($response ? json_decode((string) $response->getBody(), true) : null);
}
}