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
|`identifier`| string |**Required**. The model version identifier in the format `{owner}/{name}:{version}`, for example `stability-ai/sdxl:8beff3369e81422112d93b89ca01426147de542cd4684c244b673b105188fe5f`|
223
-
|`options.input`| object |**Required**. An object with the model inputs. |
224
-
|`options.wait`| object | Options for waiting for the prediction to finish |
225
-
|`options.wait.interval`| number | Polling interval in milliseconds. Defaults to 500 |
226
-
|`options.webhook`| string | An HTTPS URL for receiving a webhook when the prediction has new output |
227
-
|`options.webhook_events_filter`| string[]| An array of events which should trigger [webhooks](https://replicate.com/docs/webhooks). Allowable values are `start`, `output`, `logs`, and `completed`|
228
-
|`options.signal`| object | An [AbortSignal](https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal) to cancel the prediction |
|`identifier`| string |**Required**. The model version identifier in the format `{owner}/{name}:{version}`, for example `stability-ai/sdxl:8beff3369e81422112d93b89ca01426147de542cd4684c244b673b105188fe5f`|
223
+
|`options.input`| object |**Required**. An object with the model inputs. |
224
+
|`options.wait`| object | Options for waiting for the prediction to finish |
225
+
|`options.wait.interval`| number | Polling interval in milliseconds. Defaults to 500 |
226
+
|`options.webhook`| string | An HTTPS URL for receiving a webhook when the prediction has new output |
227
+
|`options.webhook_events_filter`| string[]| An array of events which should trigger [webhooks](https://replicate.com/docs/webhooks). Allowable values are `start`, `output`, `logs`, and `completed`|
228
+
|`options.signal`| object | An [AbortSignal](https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal) to cancel the prediction |
229
229
|`progress`| function | Callback function that receives the prediction object as it's updated. The function is called when the prediction is created, each time it's updated while polling for completion, and when it's completed. |
230
230
231
231
Throws `Error` if the prediction failed.
@@ -246,7 +246,7 @@ Example that logs progress as the model is running:
Uses [`playwright`](https://playwright.dev/docs) to run a basic integration test against the three most common browser engines, Firefox, Chromium and WebKit.
4
+
5
+
It uses the `replicate/canary` model for the moment, which requires a Replicate API token available in the environment under `REPLICATE_API_TOKEN`.
6
+
7
+
The entire suite is a single `main()` function that calls a single model exercising the streaming API.
8
+
9
+
The test uses `esbuild` within the test generate a browser friendly version of the `index.js` file which is loaded into the given browser and calls the `main()` function asserting the response content.
10
+
11
+
## CORS
12
+
13
+
The Replicate API doesn't support Cross Origin Resource Sharing at this time. We work around this in Playwright by intercepting the request in a `page.route` handler. We don't modify the request/response, but this seems to work around the restriction.
14
+
15
+
## Setup
16
+
17
+
npm install
18
+
19
+
## Local
20
+
21
+
The following command will run the tests across all browsers.
22
+
23
+
npm test
24
+
25
+
To run against the default browser (chromium) run:
26
+
27
+
npm exec playwright test
28
+
29
+
Or, specify a browser with:
30
+
31
+
npm exec playwright test --browser firefox
32
+
33
+
## Debugging
34
+
35
+
Running `playwright test` with the `--debug` flag opens a browser window with a debugging interface, and a breakpoint set at the start of the test. It can also be connected directly to VSCode.
36
+
37
+
npm exec playwright test --debug
38
+
39
+
The browser.js file is injected into the page via a script tag, to be able to set breakpoints in this file you'll need to use a `debugger` statement and open the devtools in the spawned browser window before continuing the test suite.
0 commit comments