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
* @param {string} deployment_owner - Required. The username of the user or organization who owns the deployment
5
7
* @param {string} deployment_name - Required. The name of the deployment
6
8
* @param {object} options
7
-
* @param {object} options.input - Required. An object with the model inputs
9
+
* @param {unknown} options.input - Required. An object with the model inputs
8
10
* @param {boolean} [options.stream] - Whether to stream the prediction output. Defaults to false
9
11
* @param {string} [options.webhook] - An HTTPS URL for receiving a webhook when the prediction has new output
10
12
* @param {WebhookEventType[]} [options.webhook_events_filter] - You can change which events trigger webhook requests by specifying webhook events (`start`|`output`|`logs`|`completed`)
* @param {string} model_owner - Required. The name of the user or organization that will own the model. This must be the same as the user or organization that is making the API request. In other words, the API token used in the request must belong to this user or organization.
70
79
* @param {string} model_name - Required. The name of the model. This must be unique among all models owned by the user or organization.
71
80
* @param {object} options
72
-
* @param {("public"|"private")} options.visibility - Required. Whether the model should be public or private. A public model can be viewed and run by anyone, whereas a private model can be viewed and run only by the user or organization members that own the model.
81
+
* @param {Visibility} options.visibility - Required. Whether the model should be public or private. A public model can be viewed and run by anyone, whereas a private model can be viewed and run only by the user or organization members that own the model.
73
82
* @param {string} options.hardware - Required. The SKU for the hardware used to run the model. Possible values can be found by calling `Replicate.hardware.list()`.
74
83
* @param {string} options.description - A description of the model.
75
84
* @param {string=} options.github_url - A URL for the model's source code on GitHub.
* @param {string=} options.model - The model (for official models)
6
12
* @param {string=} options.version - The model version.
7
-
* @param {object} options.input - Required. An object with the model inputs
13
+
* @param {unknown} options.input - Required. An object with the model inputs
8
14
* @param {string} [options.webhook] - An HTTPS URL for receiving a webhook when the prediction has new output
9
15
* @param {string[]} [options.webhook_events_filter] - You can change which events trigger webhook requests by specifying webhook events (`start`|`output`|`logs`|`completed`)
10
16
* @param {boolean} [options.stream] - Whether to stream the prediction output. Defaults to false
@@ -87,13 +106,15 @@ module.exports = class Replicate {
87
106
},
88
107
};
89
108
109
+
/** @type {predictions} */
90
110
this.predictions={
91
111
create: predictions.create.bind(this),
92
112
get: predictions.get.bind(this),
93
113
cancel: predictions.cancel.bind(this),
94
114
list: predictions.list.bind(this),
95
115
};
96
116
117
+
/** @type {trainings} */
97
118
this.trainings={
98
119
create: trainings.create.bind(this),
99
120
get: trainings.get.bind(this),
@@ -111,12 +132,12 @@ module.exports = class Replicate {
111
132
* @param {object} [options.wait] - Options for waiting for the prediction to finish
112
133
* @param {number} [options.wait.interval] - Polling interval in milliseconds. Defaults to 500
113
134
* @param {string} [options.webhook] - An HTTPS URL for receiving a webhook when the prediction has new output
114
-
* @param {string[]} [options.webhook_events_filter] - You can change which events trigger webhook requests by specifying webhook events (`start`|`output`|`logs`|`completed`)
135
+
* @param {WebhookEventType[]} [options.webhook_events_filter] - You can change which events trigger webhook requests by specifying webhook events (`start`|`output`|`logs`|`completed`)
115
136
* @param {AbortSignal} [options.signal] - AbortSignal to cancel the prediction
116
137
* @param {Function} [progress] - Callback function that receives the prediction object as it's updated. The function is called when the prediction is created, each time its updated while polling for completion, and when it's completed.
117
138
* @throws {Error} If the reference is invalid
118
139
* @throws {Error} If the prediction failed
119
-
* @returns {Promise<object>} - Resolves with the output of running the model
140
+
* @returns {Promise<Prediction>} - Resolves with the output of running the model
120
141
*/
121
142
asyncrun(ref,options,progress){
122
143
const{ wait, ...data}=options;
@@ -252,7 +273,7 @@ module.exports = class Replicate {
252
273
/**
253
274
* Stream a model and wait for its output.
254
275
*
255
-
* @param {string} identifier - Required. The model version identifier in the format "{owner}/{name}:{version}"
276
+
* @param {string} ref - Required. The model version identifier in the format "{owner}/{name}:{version}"
256
277
* @param {object} options
257
278
* @param {object} options.input - Required. An object with the model inputs
258
279
* @param {string} [options.webhook] - An HTTPS URL for receiving a webhook when the prediction has new output
@@ -300,8 +321,10 @@ module.exports = class Replicate {
300
321
* for await (const page of replicate.paginate(replicate.predictions.list) {
301
322
* console.log(page);
302
323
* }
303
-
* @param {Function} endpoint - Function that returns a promise for the next page of results
304
-
* @yields {object[]} Each page of results
324
+
* @template T
325
+
* @param {() => Promise<Page<T>>} endpoint - Function that returns a promise for the next page of results
326
+
* @yields {T[]} Each page of results
327
+
* @returns {AsyncGenerator<T[], void, unknown>}
305
328
*/
306
329
async*paginate(endpoint){
307
330
constresponse=awaitendpoint();
@@ -327,7 +350,7 @@ module.exports = class Replicate {
327
350
* @param {Function} [stop] - Async callback function that is called after each polling attempt. Receives the prediction object as an argument. Return false to cancel polling.
328
351
* @throws {Error} If the prediction doesn't complete within the maximum number of attempts
329
352
* @throws {Error} If the prediction failed
330
-
* @returns {Promise<object>} Resolves with the completed prediction object
353
+
* @returns {Promise<Prediction>} Resolves with the completed prediction object
Copy file name to clipboardexpand all lines: lib/trainings.js
+7-1
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,9 @@
1
+
/**
2
+
* @template T
3
+
* @typedef {import("./types").Page<T>} Page
4
+
*/
5
+
/** @typedef {import("./types").Training} Training */
6
+
1
7
/**
2
8
* Create a new training
3
9
*
@@ -6,7 +12,7 @@
6
12
* @param {string} version_id - Required. The version ID
7
13
* @param {object} options
8
14
* @param {string} options.destination - Required. The destination for the trained version in the form "{username}/{model_name}"
9
-
* @param {object} options.input - Required. An object with the model inputs
15
+
* @param {unknown} options.input - Required. An object with the model inputs
10
16
* @param {string} [options.webhook] - An HTTPS URL for receiving a webhook when the training updates
11
17
* @param {string[]} [options.webhook_events_filter] - You can change which events trigger webhook requests by specifying webhook events (`start`|`output`|`logs`|`completed`)
12
18
* @returns {Promise<Training>} Resolves with the data for the created training
0 commit comments