@ryanfw/prompt-orchestration-pipeline 0.17.2 → 0.17.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ryanfw/prompt-orchestration-pipeline",
3
- "version": "0.17.2",
3
+ "version": "0.17.3",
4
4
  "description": "A Prompt-orchestration pipeline (POP) is a framework for building, running, and experimenting with complex chains of LLM tasks.",
5
5
  "type": "module",
6
6
  "main": "src/ui/server.js",
@@ -588,6 +588,9 @@ function DAGGrid({
588
588
  if (options?.singleTask) {
589
589
  restartOptions.singleTask = options.singleTask;
590
590
  }
591
+ if (options?.continueAfter) {
592
+ restartOptions.continueAfter = options.continueAfter;
593
+ }
591
594
 
592
595
  await restartJob(jobId, restartOptions);
593
596
 
@@ -25647,6 +25647,9 @@ function DAGGrid({
25647
25647
  if (options?.singleTask) {
25648
25648
  restartOptions.singleTask = options.singleTask;
25649
25649
  }
25650
+ if (options?.continueAfter) {
25651
+ restartOptions.continueAfter = options.continueAfter;
25652
+ }
25650
25653
  await restartJob(jobId, restartOptions);
25651
25654
  const successMessage = options?.singleTask ? `Re-running task ${restartTaskId} in isolation. The job will remain in current after completion.` : restartTaskId ? `Restart requested from ${restartTaskId}. The job will start from that task in the background.` : "Restart requested. The job will reset to pending and start in the background.";
25652
25655
  setAlertMessage(successMessage);