@promptbook/markitdown 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
@@ -2519,7 +2519,7 @@ function assertsTaskSuccessful(executionResult) {
2519
2519
  * @private internal helper function
2520
2520
  */
2521
2521
  function createTask(options) {
2522
- const { taskType, taskProcessCallback } = options;
2522
+ const { taskType, taskProcessCallback, tldrProvider } = options;
2523
2523
  let { title } = options;
2524
2524
  // TODO: [🐙] DRY
2525
2525
  const taskId = `${taskType.toLowerCase().substring(0, 4)}-${$randomToken(8 /* <- TODO: To global config + Use Base58 to avoid similar char conflicts */)}`;
@@ -2594,7 +2594,11 @@ function createTask(options) {
2594
2594
  },
2595
2595
  get tldr() {
2596
2596
  var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
2597
- // Simulate progress based on elapsed time and subtasks
2597
+ // Use custom tldr provider if available
2598
+ if (tldrProvider) {
2599
+ return tldrProvider(createdAt, status, currentValue, errors, warnings);
2600
+ }
2601
+ // Fallback to default implementation
2598
2602
  const cv = currentValue;
2599
2603
  // If explicit percent is provided, use it
2600
2604
  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;
@@ -6146,6 +6150,71 @@ function createPipelineExecutor(options) {
6146
6150
  updateOngoingResult(newOngoingResult);
6147
6151
  });
6148
6152
  },
6153
+ tldrProvider(createdAt, status, currentValue, errors) {
6154
+ var _a;
6155
+ // Better progress estimation based on pipeline structure
6156
+ const cv = currentValue;
6157
+ // Handle finished/error states
6158
+ if (status === 'FINISHED') {
6159
+ return {
6160
+ percent: 1,
6161
+ message: 'Finished',
6162
+ };
6163
+ }
6164
+ if (status === 'ERROR') {
6165
+ const errorMessage = errors.length > 0 ? errors[errors.length - 1].message : 'Error';
6166
+ return {
6167
+ percent: 0,
6168
+ message: errorMessage,
6169
+ };
6170
+ }
6171
+ // Calculate progress based on pipeline tasks
6172
+ const totalTasks = pipeline.tasks.length;
6173
+ let completedTasks = 0;
6174
+ let currentTaskName = '';
6175
+ // Check execution report for completed tasks
6176
+ if ((_a = cv === null || cv === void 0 ? void 0 : cv.executionReport) === null || _a === void 0 ? void 0 : _a.promptExecutions) {
6177
+ const executedTaskTitles = new Set(cv.executionReport.promptExecutions.map((execution) => execution.prompt.title));
6178
+ // Count completed tasks by matching titles
6179
+ const completedTasksByTitle = pipeline.tasks.filter(task => executedTaskTitles.has(task.title));
6180
+ completedTasks = completedTasksByTitle.length;
6181
+ // Find current task being executed (first task not yet completed)
6182
+ const remainingTasks = pipeline.tasks.filter(task => !executedTaskTitles.has(task.title));
6183
+ if (remainingTasks.length > 0) {
6184
+ currentTaskName = remainingTasks[0].name;
6185
+ }
6186
+ }
6187
+ // Calculate progress percentage
6188
+ let percent = totalTasks > 0 ? completedTasks / totalTasks : 0;
6189
+ // Add time-based progress for current task (assuming 5 minutes total)
6190
+ if (completedTasks < totalTasks) {
6191
+ const elapsedMs = new Date().getTime() - createdAt.getTime();
6192
+ const totalMs = 5 * 60 * 1000; // 5 minutes
6193
+ const timeProgress = Math.min(elapsedMs / totalMs, 1);
6194
+ // Add partial progress for current task
6195
+ percent += (1 / totalTasks) * timeProgress;
6196
+ }
6197
+ // Clamp to [0,1]
6198
+ percent = Math.min(Math.max(percent, 0), 1);
6199
+ // Generate message
6200
+ let message = '';
6201
+ if (currentTaskName) {
6202
+ // Find the task to get its title
6203
+ const currentTask = pipeline.tasks.find(task => task.name === currentTaskName);
6204
+ const taskTitle = (currentTask === null || currentTask === void 0 ? void 0 : currentTask.title) || currentTaskName;
6205
+ message = `Working on task ${taskTitle}`;
6206
+ }
6207
+ else if (completedTasks === 0) {
6208
+ message = 'Starting pipeline execution';
6209
+ }
6210
+ else {
6211
+ message = `Processing pipeline (${completedTasks}/${totalTasks} tasks completed)`;
6212
+ }
6213
+ return {
6214
+ percent,
6215
+ message,
6216
+ };
6217
+ },
6149
6218
  });
6150
6219
  // <- TODO: Make types such as there is no need to do `as` for `createTask`
6151
6220
  return pipelineExecutor;