You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add support for AbortSignal to all API methods (#339)
This PR adds support for passing `AbortSignal` to all API methods that
make HTTP requests, these are passed directly into the native `fetch()`
implementation, so it's up to the user to handle the `AbortError` raised,
if any.
```js
const controller = new AbortController();
try {
const prediction = await replicate.predictions.create({
version: 'xyz',
...,
signal: controller.signal,
});
} catch (err) {
if (err instanceof DOMException && err.name === "AbortError") {
...
}
}
```
The `paginate` function also checks to see whether the signal was
aborted before proceeding to the next iteration. If so it returns immediately
to avoid making a redundant fetch call.
This allows the client to take advantage of various frameworks that provide
an `AbortSignal` instance to tear down any in flight requests.
The `replicate.request()` method is used by the other methods
1222
1226
to interact with the Replicate API.
1223
1227
You can call this method directly to make other requests to the API.
1224
1228
1229
+
The method accepts an `AbortSignal` which can be used to cancel the request in flight.
1230
+
1225
1231
### `FileOutput`
1226
1232
1227
1233
`FileOutput` is a `ReadableStream` instance that represents a model file output. It can be used to stream file data to disk or as a `Response` body to an HTTP request.
0 commit comments