File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ async function createJobWithAWSInput() {
37
37
logger . info ( `The model identifier is ${ model . modelId } and the latest version is ${ model . latestVersion } ` ) ;
38
38
39
39
// Get the model version object:
40
- // If you already know the model version and the input key(s) of the model version you can skip this step. Also, you can
40
+ // If you already know the model version and the input key(s) of the model version, you can skip this step. Also, you can
41
41
// use the following code block to know about the input keys and skip the call on future job submissions.
42
42
let modelVersion = await modzyClient . getModelVersion ( model . modelId , model . latestVersion ) ;
43
43
// The info stored in modelVersion provides insights about the amount of time that the model can spend processing, the input, and
@@ -95,6 +95,7 @@ async function createJobWithAWSInput() {
95
95
// We provide a helper method to listen until the job finishes processing. It listens until the job finishes
96
96
// and moves to COMPLETED, CANCELED, or TIMEOUT.
97
97
job = await modzyClient . blockUntilComplete ( job ) ;
98
+
98
99
// Get the results:
99
100
// Check the status of the job. Jobs may be canceled or may reach a timeout.
100
101
if ( job . status === "COMPLETED" ) {
You can’t perform that action at this time.
0 commit comments