perstack 0.0.69 → 0.0.70
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.
- package/dist/bin/cli.js +3 -1
- package/dist/bin/cli.js.map +1 -1
- package/package.json +7 -7
package/dist/bin/cli.js
CHANGED
|
@@ -20,7 +20,7 @@ import { useRun } from '@perstack/react';
|
|
|
20
20
|
// package.json
|
|
21
21
|
var package_default = {
|
|
22
22
|
name: "perstack",
|
|
23
|
-
version: "0.0.
|
|
23
|
+
version: "0.0.70",
|
|
24
24
|
description: "PerStack CLI"};
|
|
25
25
|
function getEnv(envPath) {
|
|
26
26
|
const env = Object.fromEntries(
|
|
@@ -178,6 +178,7 @@ function toRuntimeExpert(key, expert) {
|
|
|
178
178
|
key,
|
|
179
179
|
name: expert.name,
|
|
180
180
|
version: expert.version,
|
|
181
|
+
minRuntimeVersion: expert.minRuntimeVersion ?? "v1.0",
|
|
181
182
|
description: expert.description ?? "",
|
|
182
183
|
instruction: expert.instruction,
|
|
183
184
|
skills,
|
|
@@ -638,6 +639,7 @@ function createLogDataFetcher(storage) {
|
|
|
638
639
|
return {
|
|
639
640
|
id: jobId,
|
|
640
641
|
coordinatorExpertKey: firstCheckpoint.expert.key,
|
|
642
|
+
runtimeVersion: "v1.0",
|
|
641
643
|
totalSteps: lastCheckpoint.stepNumber,
|
|
642
644
|
usage: lastCheckpoint.usage,
|
|
643
645
|
startedAt: getJobDirMtime(storage.getBasePath(), jobId),
|