File tree 4 files changed +8
-8
lines changed
4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -281,7 +281,7 @@ declare module "replicate" {
281
281
secret : string
282
282
) : boolean ;
283
283
284
- export function parsePredictionProgress ( logs : Prediction | string ) : {
284
+ export function parseProgress ( logs : Prediction | string ) : {
285
285
percentage : number ;
286
286
current : number ;
287
287
total : number ;
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ const { Stream } = require("./lib/stream");
4
4
const {
5
5
withAutomaticRetries,
6
6
validateWebhook,
7
- parsePredictionProgress ,
7
+ parseProgress ,
8
8
} = require ( "./lib/util" ) ;
9
9
10
10
const accounts = require ( "./lib/accounts" ) ;
@@ -379,4 +379,4 @@ class Replicate {
379
379
380
380
module . exports = Replicate ;
381
381
module . exports . validateWebhook = validateWebhook ;
382
- module . exports . parsePredictionProgress = parsePredictionProgress ;
382
+ module . exports . parseProgress = parseProgress ;
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import Replicate, {
4
4
Model ,
5
5
Prediction ,
6
6
validateWebhook ,
7
- parsePredictionProgress ,
7
+ parseProgress ,
8
8
} from "replicate" ;
9
9
import nock from "nock" ;
10
10
import fetch from "cross-fetch" ;
@@ -946,7 +946,7 @@ describe("Replicate client", () => {
946
946
wait : { interval : 1 } ,
947
947
} ,
948
948
( prediction ) => {
949
- const progress = parsePredictionProgress ( prediction ) ;
949
+ const progress = parseProgress ( prediction ) ;
950
950
callback ( prediction , progress ) ;
951
951
}
952
952
) ;
Original file line number Diff line number Diff line change @@ -247,11 +247,11 @@ function isPlainObject(value) {
247
247
}
248
248
249
249
/**
250
- * Parse prediction progress from logs.
250
+ * Parse progress from prediction logs.
251
251
* @param {object|string } input - A prediction object or string.
252
252
* @returns {object } - An object with the percentage, current, and total.
253
253
*/
254
- function parsePredictionProgress ( input ) {
254
+ function parseProgress ( input ) {
255
255
const logs = typeof input === "object" && input . logs ? input . logs : input ;
256
256
if ( ! logs || typeof logs !== "string" ) {
257
257
return null ;
@@ -279,5 +279,5 @@ module.exports = {
279
279
transformFileInputs,
280
280
validateWebhook,
281
281
withAutomaticRetries,
282
- parsePredictionProgress ,
282
+ parseProgress ,
283
283
} ;
You can’t perform that action at this time.
0 commit comments