-
Notifications
You must be signed in to change notification settings - Fork 274
Expand file tree
/
Copy pathprediction.py
More file actions
710 lines (559 loc) · 20.7 KB
/
Copy pathprediction.py
File metadata and controls
710 lines (559 loc) · 20.7 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
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
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
import asyncio
import re
import time
from dataclasses import dataclass
from typing import (
TYPE_CHECKING,
Any,
AsyncIterator,
Dict,
Iterator,
List,
Literal,
Optional,
Tuple,
Union,
overload,
)
import httpx
from typing_extensions import NotRequired, TypedDict, Unpack
from replicate.exceptions import ModelError, ReplicateError
from replicate.file import FileEncodingStrategy
from replicate.helpers import async_encode_json, encode_json
from replicate.pagination import Page
from replicate.resource import Namespace, Resource
from replicate.stream import EventSource
from replicate.version import Version
try:
from pydantic import v1 as pydantic # type: ignore
except ImportError:
import pydantic # type: ignore
if TYPE_CHECKING:
from replicate.client import Client
from replicate.deployment import Deployment
from replicate.model import Model
from replicate.stream import ServerSentEvent
class Prediction(Resource):
"""
A prediction made by a model hosted on Replicate.
"""
_client: "Client" = pydantic.PrivateAttr()
id: str
"""The unique ID of the prediction."""
model: str
"""An identifier for the model used to create the prediction, in the form `owner/name`."""
version: str
"""An identifier for the version of the model used to create the prediction."""
status: Literal["starting", "processing", "succeeded", "failed", "canceled"]
"""The status of the prediction."""
input: Optional[Dict[str, Any]]
"""The input to the prediction."""
output: Optional[Any]
"""The output of the prediction."""
logs: Optional[str]
"""The logs of the prediction."""
error: Optional[str]
"""The error encountered during the prediction, if any."""
metrics: Optional[Dict[str, Any]]
"""Metrics for the prediction."""
created_at: Optional[str]
"""When the prediction was created."""
started_at: Optional[str]
"""When the prediction was started."""
completed_at: Optional[str]
"""When the prediction was completed, if finished."""
urls: Optional[Dict[str, str]]
"""
URLs associated with the prediction.
The following keys are available:
- `get`: A URL to fetch the prediction.
- `cancel`: A URL to cancel the prediction.
"""
@dataclass
class Progress:
"""
The progress of a prediction.
"""
percentage: float
"""The percentage of the prediction that has completed."""
current: int
"""The number of items that have been processed."""
total: int
"""The total number of items to process."""
_pattern = re.compile(
r"^\s*(?P<percentage>\d+)%\s*\|.+?\|\s*(?P<current>\d+)\/(?P<total>\d+)"
)
@classmethod
def parse(cls, logs: str) -> Optional["Prediction.Progress"]:
"""Parse the progress from the logs of a prediction."""
lines = logs.split("\n")
for idx in reversed(range(len(lines))):
line = lines[idx].strip()
if cls._pattern.match(line):
matches = cls._pattern.findall(line)
if len(matches) == 1:
percentage, current, total = map(int, matches[0])
return cls(percentage / 100.0, current, total)
return None
@property
def progress(self) -> Optional[Progress]:
"""
The progress of the prediction, if available.
"""
if self.logs is None or self.logs == "":
return None
return Prediction.Progress.parse(self.logs)
def wait(self) -> None:
"""
Wait for prediction to finish.
"""
while self.status not in ["succeeded", "failed", "canceled"]:
time.sleep(self._client.poll_interval)
self.reload()
async def async_wait(self) -> None:
"""
Wait for prediction to finish asynchronously.
"""
while self.status not in ["succeeded", "failed", "canceled"]:
await asyncio.sleep(self._client.poll_interval)
await self.async_reload()
def stream(
self,
use_file_output: Optional[bool] = None,
) -> Iterator["ServerSentEvent"]:
"""
Stream the prediction output.
Raises:
ReplicateError: If the model does not support streaming.
"""
url = self.urls and self.urls.get("stream", None)
if not url or not isinstance(url, str):
raise ReplicateError("Model does not support streaming")
headers = {}
headers["Accept"] = "text/event-stream"
headers["Cache-Control"] = "no-store"
with self._client._client.stream("GET", url, headers=headers) as response:
yield from EventSource(
self._client, response, use_file_output=use_file_output
)
async def async_stream(
self,
use_file_output: Optional[bool] = None,
) -> AsyncIterator["ServerSentEvent"]:
"""
Stream the prediction output asynchronously.
Raises:
ReplicateError: If the model does not support streaming.
"""
# no-op to enforce the use of 'await' when calling this method
await asyncio.sleep(0)
url = self.urls and self.urls.get("stream", None)
if not url or not isinstance(url, str):
raise ReplicateError("Model does not support streaming")
headers = {}
headers["Accept"] = "text/event-stream"
headers["Cache-Control"] = "no-store"
async with self._client._async_client.stream(
"GET", url, headers=headers
) as response:
async for event in EventSource(
self._client, response, use_file_output=use_file_output
):
yield event
def cancel(self) -> None:
"""
Cancels a running prediction.
"""
canceled = self._client.predictions.cancel(self.id)
for name, value in canceled.dict().items():
setattr(self, name, value)
async def async_cancel(self) -> None:
"""
Cancels a running prediction asynchronously.
"""
canceled = await self._client.predictions.async_cancel(self.id)
for name, value in canceled.dict().items():
setattr(self, name, value)
def reload(self) -> None:
"""
Load this prediction from the server.
"""
updated = self._client.predictions.get(self.id)
for name, value in updated.dict().items():
setattr(self, name, value)
async def async_reload(self) -> None:
"""
Load this prediction from the server asynchronously.
"""
updated = await self._client.predictions.async_get(self.id)
for name, value in updated.dict().items():
setattr(self, name, value)
def output_iterator(self) -> Iterator[Any]:
"""
Return an iterator of the prediction output.
"""
# TODO: check output is list
previous_output = self.output or []
while self.status not in ["succeeded", "failed", "canceled"]:
output = self.output or []
new_output = output[len(previous_output) :]
yield from new_output
previous_output = output
time.sleep(self._client.poll_interval) # pylint: disable=no-member
self.reload()
if self.status == "failed":
raise ModelError(self)
output = self.output or []
new_output = output[len(previous_output) :]
yield from new_output
async def async_output_iterator(self) -> AsyncIterator[Any]:
"""
Return an asynchronous iterator of the prediction output.
"""
# TODO: check output is list
previous_output = self.output or []
while self.status not in ["succeeded", "failed", "canceled"]:
output = self.output or []
new_output = output[len(previous_output) :]
for item in new_output:
yield item
previous_output = output
await asyncio.sleep(self._client.poll_interval) # pylint: disable=no-member
await self.async_reload()
if self.status == "failed":
raise ModelError(self)
output = self.output or []
new_output = output[len(previous_output) :]
for output in new_output:
yield output
class Predictions(Namespace):
"""
Namespace for operations related to predictions.
"""
def list(self, cursor: Union[str, "ellipsis", None] = ...) -> Page[Prediction]: # noqa: F821
"""
List your predictions.
Parameters:
cursor: The cursor to use for pagination. Use the value of `Page.next` or `Page.previous`.
Returns:
Page[Prediction]: A page of predictions.
Raises:
ValueError: If `cursor` is `None`.
"""
if cursor is None:
raise ValueError("cursor cannot be None")
resp = self._client._request(
"GET", "/v1/predictions" if cursor is ... else cursor
)
obj = resp.json()
obj["results"] = [
_json_to_prediction(self._client, result) for result in obj["results"]
]
return Page[Prediction](**obj)
async def async_list(
self,
cursor: Union[str, "ellipsis", None] = ..., # noqa: F821
) -> Page[Prediction]:
"""
List your predictions.
Parameters:
cursor: The cursor to use for pagination. Use the value of `Page.next` or `Page.previous`.
Returns:
Page[Prediction]: A page of predictions.
Raises:
ValueError: If `cursor` is `None`.
"""
if cursor is None:
raise ValueError("cursor cannot be None")
resp = await self._client._async_request(
"GET", "/v1/predictions" if cursor is ... else cursor
)
obj = resp.json()
obj["results"] = [
_json_to_prediction(self._client, result) for result in obj["results"]
]
return Page[Prediction](**obj)
def get(self, id: str) -> Prediction:
"""
Get a prediction by ID.
Args:
id: The ID of the prediction.
Returns:
Prediction: The prediction object.
"""
resp = self._client._request("GET", f"/v1/predictions/{id}")
return _json_to_prediction(self._client, resp.json())
async def async_get(self, id: str) -> Prediction:
"""
Get a prediction by ID.
Args:
id: The ID of the prediction.
Returns:
Prediction: The prediction object.
"""
resp = await self._client._async_request("GET", f"/v1/predictions/{id}")
return _json_to_prediction(self._client, resp.json())
class CreatePredictionParams(TypedDict):
"""Parameters for creating a prediction."""
webhook: NotRequired[str]
"""The URL to receive a POST request with prediction updates."""
webhook_completed: NotRequired[str]
"""The URL to receive a POST request when the prediction is completed."""
webhook_events_filter: NotRequired[List[str]]
"""List of events to trigger webhooks."""
stream: NotRequired[bool]
"""Enable streaming of prediction output."""
wait: NotRequired[Union[int, bool]]
"""
Block until the prediction is completed before returning.
If `True`, keep the request open for up to 60 seconds, falling back to
polling until the prediction is completed.
If an `int`, same as True but hold the request for a specified number of
seconds (between 1 and 60).
If `False`, poll for the prediction status until completed.
"""
file_encoding_strategy: NotRequired[FileEncodingStrategy]
"""The strategy to use for encoding files in the prediction input."""
@overload
def create(
self,
version: Union[Version, str],
input: Optional[Dict[str, Any]],
**params: Unpack["Predictions.CreatePredictionParams"],
) -> Prediction: ...
@overload
def create(
self,
*,
model: Union[str, Tuple[str, str], "Model"],
input: Optional[Dict[str, Any]],
**params: Unpack["Predictions.CreatePredictionParams"],
) -> Prediction: ...
@overload
def create(
self,
*,
deployment: Union[str, Tuple[str, str], "Deployment"],
input: Optional[Dict[str, Any]],
**params: Unpack["Predictions.CreatePredictionParams"],
) -> Prediction: ...
def create( # type: ignore
self,
*args,
model: Optional[Union[str, Tuple[str, str], "Model"]] = None,
version: Optional[Union[Version, str, "Version"]] = None,
deployment: Optional[Union[str, Tuple[str, str], "Deployment"]] = None,
input: Optional[Dict[str, Any]] = None,
**params: Unpack["Predictions.CreatePredictionParams"],
) -> Prediction:
"""
Create a new prediction for the specified model, version, or deployment.
"""
wait = params.pop("wait", None)
file_encoding_strategy = params.pop("file_encoding_strategy", None)
if args:
version = args[0] if len(args) > 0 else None
input = args[1] if len(args) > 1 else input
if sum(bool(x) for x in [model, version, deployment]) != 1:
raise ValueError(
"Exactly one of 'model', 'version', or 'deployment' must be specified."
)
if model is not None:
from replicate.model import ( # pylint: disable=import-outside-toplevel
Models,
)
return Models(self._client).predictions.create(
model=model,
input=input or {},
**params,
)
if deployment is not None:
from replicate.deployment import ( # pylint: disable=import-outside-toplevel
Deployments,
)
return Deployments(self._client).predictions.create(
deployment=deployment,
input=input or {},
**params,
)
if input is not None:
input = encode_json(
input,
client=self._client,
file_encoding_strategy=file_encoding_strategy,
)
body = _create_prediction_body(
version,
input,
**params,
)
extras = _create_prediction_request_params(wait=wait)
resp = self._client._request("POST", "/v1/predictions", json=body, **extras)
return _json_to_prediction(self._client, resp.json())
@overload
async def async_create(
self,
version: Union[Version, str],
input: Optional[Dict[str, Any]],
**params: Unpack["Predictions.CreatePredictionParams"],
) -> Prediction: ...
@overload
async def async_create(
self,
*,
model: Union[str, Tuple[str, str], "Model"],
input: Optional[Dict[str, Any]],
**params: Unpack["Predictions.CreatePredictionParams"],
) -> Prediction: ...
@overload
async def async_create(
self,
*,
deployment: Union[str, Tuple[str, str], "Deployment"],
input: Optional[Dict[str, Any]],
**params: Unpack["Predictions.CreatePredictionParams"],
) -> Prediction: ...
async def async_create( # type: ignore
self,
*args,
model: Optional[Union[str, Tuple[str, str], "Model"]] = None,
version: Optional[Union[Version, str, "Version"]] = None,
deployment: Optional[Union[str, Tuple[str, str], "Deployment"]] = None,
input: Optional[Dict[str, Any]] = None,
**params: Unpack["Predictions.CreatePredictionParams"],
) -> Prediction:
"""
Create a new prediction for the specified model, version, or deployment.
"""
wait = params.pop("wait", None)
file_encoding_strategy = params.pop("file_encoding_strategy", None)
if args:
version = args[0] if len(args) > 0 else None
input = args[1] if len(args) > 1 else input
if sum(bool(x) for x in [model, version, deployment]) != 1:
raise ValueError(
"Exactly one of 'model', 'version', or 'deployment' must be specified."
)
if model is not None:
from replicate.model import ( # pylint: disable=import-outside-toplevel
Models,
)
return await Models(self._client).predictions.async_create(
model=model,
input=input or {},
**params,
)
if deployment is not None:
from replicate.deployment import ( # pylint: disable=import-outside-toplevel
Deployments,
)
return await Deployments(self._client).predictions.async_create(
deployment=deployment,
input=input or {},
**params,
)
if input is not None:
input = await async_encode_json(
input,
client=self._client,
file_encoding_strategy=file_encoding_strategy,
)
body = _create_prediction_body(
version,
input,
**params,
)
extras = _create_prediction_request_params(wait=wait)
resp = await self._client._async_request(
"POST", "/v1/predictions", json=body, **extras
)
return _json_to_prediction(self._client, resp.json())
def cancel(self, id: str) -> Prediction:
"""
Cancel a prediction.
Args:
id: The ID of the prediction to cancel.
Returns:
Prediction: The canceled prediction object.
"""
resp = self._client._request(
"POST",
f"/v1/predictions/{id}/cancel",
)
return _json_to_prediction(self._client, resp.json())
async def async_cancel(self, id: str) -> Prediction:
"""
Cancel a prediction.
Args:
id: The ID of the prediction to cancel.
Returns:
Prediction: The canceled prediction object.
"""
resp = await self._client._async_request(
"POST",
f"/v1/predictions/{id}/cancel",
)
return _json_to_prediction(self._client, resp.json())
class CreatePredictionRequestParams(TypedDict):
headers: NotRequired[Optional[dict]]
timeout: NotRequired[Optional[httpx.Timeout]]
def _create_prediction_request_params(
wait: Optional[Union[int, bool]],
) -> CreatePredictionRequestParams:
timeout = _create_prediction_timeout(wait=wait)
headers = _create_prediction_headers(wait=wait)
return {
"headers": headers,
"timeout": timeout,
}
def _create_prediction_timeout(
*, wait: Optional[Union[int, bool]] = None
) -> Union[httpx.Timeout, None]:
"""
Returns an `httpx.Timeout` instances appropriate for the optional
`Prefer: wait=x` header that can be provided with the request. This
will ensure that we give the server enough time to respond with
a partial prediction in the event that the request times out.
"""
if not wait:
return None
read_timeout = 60.0 if isinstance(wait, bool) else wait
return httpx.Timeout(5.0, read=read_timeout + 0.5)
def _create_prediction_headers(
*,
wait: Optional[Union[int, bool]] = None,
) -> Dict[str, Any]:
headers = {}
if wait:
if isinstance(wait, bool):
headers["Prefer"] = "wait"
elif isinstance(wait, int):
headers["Prefer"] = f"wait={wait}"
return headers
def _create_prediction_body( # pylint: disable=too-many-arguments
version: Optional[Union[Version, str]],
input: Optional[Dict[str, Any]],
webhook: Optional[str] = None,
webhook_completed: Optional[str] = None,
webhook_events_filter: Optional[List[str]] = None,
stream: Optional[bool] = None,
**_kwargs,
) -> Dict[str, Any]:
body = {}
if input is not None:
body["input"] = input
if version is not None:
body["version"] = version.id if isinstance(version, Version) else version
if webhook is not None:
body["webhook"] = webhook
if webhook_completed is not None:
body["webhook_completed"] = webhook_completed
if webhook_events_filter is not None:
body["webhook_events_filter"] = webhook_events_filter
if stream is not None:
body["stream"] = stream
return body
def _json_to_prediction(client: "Client", json: Dict[str, Any]) -> Prediction:
prediction = Prediction(**json)
prediction._client = client
return prediction