@labelbox/rl-sdk 0.0.144 → 0.0.145
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -15284,6 +15284,68 @@ export type PublicProblemDetailDto = {
|
|
|
15284
15284
|
issueTemplate: string | null;
|
|
15285
15285
|
}>;
|
|
15286
15286
|
};
|
|
15287
|
+
/**
|
|
15288
|
+
* Execution summaries for the returned locked versions.
|
|
15289
|
+
*/
|
|
15290
|
+
runs: {
|
|
15291
|
+
/**
|
|
15292
|
+
* Newest-first runs associated with the locked versions returned in this problem detail.
|
|
15293
|
+
*/
|
|
15294
|
+
items: Array<{
|
|
15295
|
+
/**
|
|
15296
|
+
* Identifier of this public run summary.
|
|
15297
|
+
*/
|
|
15298
|
+
id: string;
|
|
15299
|
+
/**
|
|
15300
|
+
* User-supplied run name. Null when the run was not named.
|
|
15301
|
+
*/
|
|
15302
|
+
runName: string | null;
|
|
15303
|
+
/**
|
|
15304
|
+
* Locked problem version exercised by this public run.
|
|
15305
|
+
*/
|
|
15306
|
+
problemVersionId: string;
|
|
15307
|
+
/**
|
|
15308
|
+
* Current lifecycle status of the run.
|
|
15309
|
+
*/
|
|
15310
|
+
status: 'pending' | 'running' | 'grading' | 'completed' | 'failed' | 'cancelled';
|
|
15311
|
+
/**
|
|
15312
|
+
* Attempt number recorded for the run. Historical imports preserve their source value.
|
|
15313
|
+
*/
|
|
15314
|
+
attemptNumber: number;
|
|
15315
|
+
/**
|
|
15316
|
+
* Recorded solver execution time in milliseconds. Null when unavailable; historical imports preserve their source value.
|
|
15317
|
+
*/
|
|
15318
|
+
executionTimeMs: number | null;
|
|
15319
|
+
/**
|
|
15320
|
+
* Aggregated grader score. Null until grading completes; some grading schemes may produce negative values.
|
|
15321
|
+
*/
|
|
15322
|
+
finalScore: number | null;
|
|
15323
|
+
/**
|
|
15324
|
+
* Solver model used for this run. Null when no model was recorded.
|
|
15325
|
+
*/
|
|
15326
|
+
apiModelName: string | null;
|
|
15327
|
+
/**
|
|
15328
|
+
* Recorded solver turn count. Null when unavailable; historical imports preserve their source value.
|
|
15329
|
+
*/
|
|
15330
|
+
turnsCount: number | null;
|
|
15331
|
+
/**
|
|
15332
|
+
* Timestamp when the run was created (ISO-8601, UTC).
|
|
15333
|
+
*/
|
|
15334
|
+
createdAt: string;
|
|
15335
|
+
/**
|
|
15336
|
+
* Timestamp when solver execution began (ISO-8601, UTC). Null until started.
|
|
15337
|
+
*/
|
|
15338
|
+
startedAt: string | null;
|
|
15339
|
+
/**
|
|
15340
|
+
* Timestamp when the run completed (ISO-8601, UTC). Null while in flight.
|
|
15341
|
+
*/
|
|
15342
|
+
completedAt: string | null;
|
|
15343
|
+
}>;
|
|
15344
|
+
/**
|
|
15345
|
+
* True when older runs were omitted because the problem exceeded the history cap.
|
|
15346
|
+
*/
|
|
15347
|
+
truncated: boolean;
|
|
15348
|
+
};
|
|
15287
15349
|
};
|
|
15288
15350
|
/**
|
|
15289
15351
|
* Request body for publishing an environment to the public marketplace.
|