@promptbook/pdf 0.100.0-36 → 0.100.0-37

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/esm/index.es.js CHANGED
@@ -26,7 +26,7 @@ const BOOK_LANGUAGE_VERSION = '1.0.0';
26
26
  * @generated
27
27
  * @see https://github.com/webgptorg/promptbook
28
28
  */
29
- const PROMPTBOOK_ENGINE_VERSION = '0.100.0-36';
29
+ const PROMPTBOOK_ENGINE_VERSION = '0.100.0-37';
30
30
  /**
31
31
  * TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
32
32
  * Note: [💞] Ignore a discrepancy between file name and entity name
@@ -2532,7 +2532,7 @@ function assertsTaskSuccessful(executionResult) {
2532
2532
  * @private internal helper function
2533
2533
  */
2534
2534
  function createTask(options) {
2535
- const { taskType, taskProcessCallback } = options;
2535
+ const { taskType, taskProcessCallback, tldrProvider } = options;
2536
2536
  let { title } = options;
2537
2537
  // TODO: [🐙] DRY
2538
2538
  const taskId = `${taskType.toLowerCase().substring(0, 4)}-${$randomToken(8 /* <- TODO: To global config + Use Base58 to avoid similar char conflicts */)}`;
@@ -2607,7 +2607,11 @@ function createTask(options) {
2607
2607
  },
2608
2608
  get tldr() {
2609
2609
  var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
2610
- // Simulate progress based on elapsed time and subtasks
2610
+ // Use custom tldr provider if available
2611
+ if (tldrProvider) {
2612
+ return tldrProvider(createdAt, status, currentValue, errors, warnings);
2613
+ }
2614
+ // Fallback to default implementation
2611
2615
  const cv = currentValue;
2612
2616
  // If explicit percent is provided, use it
2613
2617
  let percentRaw = (_f = (_d = (_b = (_a = cv === null || cv === void 0 ? void 0 : cv.tldr) === null || _a === void 0 ? void 0 : _a.percent) !== null && _b !== void 0 ? _b : (_c = cv === null || cv === void 0 ? void 0 : cv.usage) === null || _c === void 0 ? void 0 : _c.percent) !== null && _d !== void 0 ? _d : (_e = cv === null || cv === void 0 ? void 0 : cv.progress) === null || _e === void 0 ? void 0 : _e.percent) !== null && _f !== void 0 ? _f : cv === null || cv === void 0 ? void 0 : cv.percent;
@@ -6159,6 +6163,71 @@ function createPipelineExecutor(options) {
6159
6163
  updateOngoingResult(newOngoingResult);
6160
6164
  });
6161
6165
  },
6166
+ tldrProvider(createdAt, status, currentValue, errors) {
6167
+ var _a;
6168
+ // Better progress estimation based on pipeline structure
6169
+ const cv = currentValue;
6170
+ // Handle finished/error states
6171
+ if (status === 'FINISHED') {
6172
+ return {
6173
+ percent: 1,
6174
+ message: 'Finished',
6175
+ };
6176
+ }
6177
+ if (status === 'ERROR') {
6178
+ const errorMessage = errors.length > 0 ? errors[errors.length - 1].message : 'Error';
6179
+ return {
6180
+ percent: 0,
6181
+ message: errorMessage,
6182
+ };
6183
+ }
6184
+ // Calculate progress based on pipeline tasks
6185
+ const totalTasks = pipeline.tasks.length;
6186
+ let completedTasks = 0;
6187
+ let currentTaskName = '';
6188
+ // Check execution report for completed tasks
6189
+ if ((_a = cv === null || cv === void 0 ? void 0 : cv.executionReport) === null || _a === void 0 ? void 0 : _a.promptExecutions) {
6190
+ const executedTaskTitles = new Set(cv.executionReport.promptExecutions.map((execution) => execution.prompt.title));
6191
+ // Count completed tasks by matching titles
6192
+ const completedTasksByTitle = pipeline.tasks.filter(task => executedTaskTitles.has(task.title));
6193
+ completedTasks = completedTasksByTitle.length;
6194
+ // Find current task being executed (first task not yet completed)
6195
+ const remainingTasks = pipeline.tasks.filter(task => !executedTaskTitles.has(task.title));
6196
+ if (remainingTasks.length > 0) {
6197
+ currentTaskName = remainingTasks[0].name;
6198
+ }
6199
+ }
6200
+ // Calculate progress percentage
6201
+ let percent = totalTasks > 0 ? completedTasks / totalTasks : 0;
6202
+ // Add time-based progress for current task (assuming 5 minutes total)
6203
+ if (completedTasks < totalTasks) {
6204
+ const elapsedMs = new Date().getTime() - createdAt.getTime();
6205
+ const totalMs = 5 * 60 * 1000; // 5 minutes
6206
+ const timeProgress = Math.min(elapsedMs / totalMs, 1);
6207
+ // Add partial progress for current task
6208
+ percent += (1 / totalTasks) * timeProgress;
6209
+ }
6210
+ // Clamp to [0,1]
6211
+ percent = Math.min(Math.max(percent, 0), 1);
6212
+ // Generate message
6213
+ let message = '';
6214
+ if (currentTaskName) {
6215
+ // Find the task to get its title
6216
+ const currentTask = pipeline.tasks.find(task => task.name === currentTaskName);
6217
+ const taskTitle = (currentTask === null || currentTask === void 0 ? void 0 : currentTask.title) || currentTaskName;
6218
+ message = `Working on task ${taskTitle}`;
6219
+ }
6220
+ else if (completedTasks === 0) {
6221
+ message = 'Starting pipeline execution';
6222
+ }
6223
+ else {
6224
+ message = `Processing pipeline (${completedTasks}/${totalTasks} tasks completed)`;
6225
+ }
6226
+ return {
6227
+ percent,
6228
+ message,
6229
+ };
6230
+ },
6162
6231
  });
6163
6232
  // <- TODO: Make types such as there is no need to do `as` for `createTask`
6164
6233
  return pipelineExecutor;