@promptbook/website-crawler 0.100.0-35 → 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 +119 -25
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/_packages/core.index.d.ts +2 -0
- package/esm/typings/src/config.d.ts +6 -0
- package/esm/typings/src/execution/ExecutionTask.d.ts +13 -0
- package/esm/typings/src/version.d.ts +1 -1
- package/package.json +2 -2
- package/umd/index.umd.js +119 -25
- package/umd/index.umd.js.map +1 -1
package/esm/index.es.js
CHANGED
|
@@ -29,7 +29,7 @@ const BOOK_LANGUAGE_VERSION = '1.0.0';
|
|
|
29
29
|
* @generated
|
|
30
30
|
* @see https://github.com/webgptorg/promptbook
|
|
31
31
|
*/
|
|
32
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.100.0-
|
|
32
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.100.0-37';
|
|
33
33
|
/**
|
|
34
34
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
35
35
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
@@ -248,6 +248,12 @@ let DEFAULT_IS_VERBOSE = false;
|
|
|
248
248
|
* @public exported from `@promptbook/core`
|
|
249
249
|
*/
|
|
250
250
|
const DEFAULT_IS_AUTO_INSTALLED = false;
|
|
251
|
+
/**
|
|
252
|
+
* Default simulated duration for a task in milliseconds (used for progress reporting)
|
|
253
|
+
*
|
|
254
|
+
* @public exported from `@promptbook/core`
|
|
255
|
+
*/
|
|
256
|
+
const DEFAULT_TASK_SIMULATED_DURATION_MS = 5 * 60 * 1000; // 5 minutes
|
|
251
257
|
/**
|
|
252
258
|
* Indicates whether pipeline logic validation is enabled. When true, the pipeline logic is checked for consistency.
|
|
253
259
|
*
|
|
@@ -2642,7 +2648,7 @@ function assertsTaskSuccessful(executionResult) {
|
|
|
2642
2648
|
* @private internal helper function
|
|
2643
2649
|
*/
|
|
2644
2650
|
function createTask(options) {
|
|
2645
|
-
const { taskType, taskProcessCallback } = options;
|
|
2651
|
+
const { taskType, taskProcessCallback, tldrProvider } = options;
|
|
2646
2652
|
let { title } = options;
|
|
2647
2653
|
// TODO: [🐙] DRY
|
|
2648
2654
|
const taskId = `${taskType.toLowerCase().substring(0, 4)}-${$randomToken(8 /* <- TODO: To global config + Use Base58 to avoid similar char conflicts */)}`;
|
|
@@ -2717,21 +2723,35 @@ function createTask(options) {
|
|
|
2717
2723
|
},
|
|
2718
2724
|
get tldr() {
|
|
2719
2725
|
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
|
|
2720
|
-
//
|
|
2726
|
+
// Use custom tldr provider if available
|
|
2727
|
+
if (tldrProvider) {
|
|
2728
|
+
return tldrProvider(createdAt, status, currentValue, errors, warnings);
|
|
2729
|
+
}
|
|
2730
|
+
// Fallback to default implementation
|
|
2721
2731
|
const cv = currentValue;
|
|
2722
|
-
//
|
|
2732
|
+
// If explicit percent is provided, use it
|
|
2723
2733
|
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;
|
|
2724
|
-
//
|
|
2734
|
+
// Simulate progress if not provided
|
|
2725
2735
|
if (typeof percentRaw !== 'number') {
|
|
2726
|
-
|
|
2736
|
+
// Simulate progress: evenly split across subtasks, based on elapsed time
|
|
2737
|
+
const now = new Date();
|
|
2738
|
+
const elapsedMs = now.getTime() - createdAt.getTime();
|
|
2739
|
+
const totalMs = DEFAULT_TASK_SIMULATED_DURATION_MS;
|
|
2740
|
+
// If subtasks are defined, split progress evenly
|
|
2741
|
+
const subtaskCount = Array.isArray(cv === null || cv === void 0 ? void 0 : cv.subtasks) ? cv.subtasks.length : 1;
|
|
2742
|
+
const completedSubtasks = Array.isArray(cv === null || cv === void 0 ? void 0 : cv.subtasks)
|
|
2743
|
+
? cv.subtasks.filter((s) => s.done || s.completed).length
|
|
2744
|
+
: 0;
|
|
2745
|
+
// Progress from completed subtasks
|
|
2746
|
+
const subtaskProgress = subtaskCount > 0 ? completedSubtasks / subtaskCount : 0;
|
|
2747
|
+
// Progress from elapsed time for current subtask
|
|
2748
|
+
const timeProgress = Math.min(elapsedMs / totalMs, 1);
|
|
2749
|
+
// Combine: completed subtasks + time progress for current subtask
|
|
2750
|
+
percentRaw = Math.min(subtaskProgress + (1 / subtaskCount) * timeProgress, 1);
|
|
2751
|
+
if (status === 'FINISHED')
|
|
2727
2752
|
percentRaw = 1;
|
|
2728
|
-
|
|
2729
|
-
else if (status === 'ERROR') {
|
|
2753
|
+
if (status === 'ERROR')
|
|
2730
2754
|
percentRaw = 0;
|
|
2731
|
-
}
|
|
2732
|
-
else {
|
|
2733
|
-
percentRaw = 0;
|
|
2734
|
-
}
|
|
2735
2755
|
}
|
|
2736
2756
|
// Clamp to [0,1]
|
|
2737
2757
|
let percent = Number(percentRaw) || 0;
|
|
@@ -2743,20 +2763,29 @@ function createTask(options) {
|
|
|
2743
2763
|
const messageFromResult = (_k = (_j = (_h = (_g = cv === null || cv === void 0 ? void 0 : cv.tldr) === null || _g === void 0 ? void 0 : _g.message) !== null && _h !== void 0 ? _h : cv === null || cv === void 0 ? void 0 : cv.message) !== null && _j !== void 0 ? _j : cv === null || cv === void 0 ? void 0 : cv.summary) !== null && _k !== void 0 ? _k : cv === null || cv === void 0 ? void 0 : cv.statusMessage;
|
|
2744
2764
|
let message = messageFromResult;
|
|
2745
2765
|
if (!message) {
|
|
2746
|
-
|
|
2747
|
-
|
|
2748
|
-
|
|
2749
|
-
|
|
2750
|
-
|
|
2751
|
-
|
|
2752
|
-
else if (status === 'FINISHED') {
|
|
2753
|
-
message = 'Finished';
|
|
2754
|
-
}
|
|
2755
|
-
else if (status === 'ERROR') {
|
|
2756
|
-
message = 'Error';
|
|
2766
|
+
// If subtasks, show current subtask
|
|
2767
|
+
if (Array.isArray(cv === null || cv === void 0 ? void 0 : cv.subtasks) && cv.subtasks.length > 0) {
|
|
2768
|
+
const current = cv.subtasks.find((s) => !s.done && !s.completed);
|
|
2769
|
+
if (current && current.title) {
|
|
2770
|
+
message = `Working on ${current.title}`;
|
|
2771
|
+
}
|
|
2757
2772
|
}
|
|
2758
|
-
|
|
2759
|
-
|
|
2773
|
+
if (!message) {
|
|
2774
|
+
if (errors.length) {
|
|
2775
|
+
message = errors[errors.length - 1].message || 'Error';
|
|
2776
|
+
}
|
|
2777
|
+
else if (warnings.length) {
|
|
2778
|
+
message = warnings[warnings.length - 1].message || 'Warning';
|
|
2779
|
+
}
|
|
2780
|
+
else if (status === 'FINISHED') {
|
|
2781
|
+
message = 'Finished';
|
|
2782
|
+
}
|
|
2783
|
+
else if (status === 'ERROR') {
|
|
2784
|
+
message = 'Error';
|
|
2785
|
+
}
|
|
2786
|
+
else {
|
|
2787
|
+
message = 'Running';
|
|
2788
|
+
}
|
|
2760
2789
|
}
|
|
2761
2790
|
}
|
|
2762
2791
|
return {
|
|
@@ -6135,6 +6164,71 @@ function createPipelineExecutor(options) {
|
|
|
6135
6164
|
updateOngoingResult(newOngoingResult);
|
|
6136
6165
|
});
|
|
6137
6166
|
},
|
|
6167
|
+
tldrProvider(createdAt, status, currentValue, errors) {
|
|
6168
|
+
var _a;
|
|
6169
|
+
// Better progress estimation based on pipeline structure
|
|
6170
|
+
const cv = currentValue;
|
|
6171
|
+
// Handle finished/error states
|
|
6172
|
+
if (status === 'FINISHED') {
|
|
6173
|
+
return {
|
|
6174
|
+
percent: 1,
|
|
6175
|
+
message: 'Finished',
|
|
6176
|
+
};
|
|
6177
|
+
}
|
|
6178
|
+
if (status === 'ERROR') {
|
|
6179
|
+
const errorMessage = errors.length > 0 ? errors[errors.length - 1].message : 'Error';
|
|
6180
|
+
return {
|
|
6181
|
+
percent: 0,
|
|
6182
|
+
message: errorMessage,
|
|
6183
|
+
};
|
|
6184
|
+
}
|
|
6185
|
+
// Calculate progress based on pipeline tasks
|
|
6186
|
+
const totalTasks = pipeline.tasks.length;
|
|
6187
|
+
let completedTasks = 0;
|
|
6188
|
+
let currentTaskName = '';
|
|
6189
|
+
// Check execution report for completed tasks
|
|
6190
|
+
if ((_a = cv === null || cv === void 0 ? void 0 : cv.executionReport) === null || _a === void 0 ? void 0 : _a.promptExecutions) {
|
|
6191
|
+
const executedTaskTitles = new Set(cv.executionReport.promptExecutions.map((execution) => execution.prompt.title));
|
|
6192
|
+
// Count completed tasks by matching titles
|
|
6193
|
+
const completedTasksByTitle = pipeline.tasks.filter(task => executedTaskTitles.has(task.title));
|
|
6194
|
+
completedTasks = completedTasksByTitle.length;
|
|
6195
|
+
// Find current task being executed (first task not yet completed)
|
|
6196
|
+
const remainingTasks = pipeline.tasks.filter(task => !executedTaskTitles.has(task.title));
|
|
6197
|
+
if (remainingTasks.length > 0) {
|
|
6198
|
+
currentTaskName = remainingTasks[0].name;
|
|
6199
|
+
}
|
|
6200
|
+
}
|
|
6201
|
+
// Calculate progress percentage
|
|
6202
|
+
let percent = totalTasks > 0 ? completedTasks / totalTasks : 0;
|
|
6203
|
+
// Add time-based progress for current task (assuming 5 minutes total)
|
|
6204
|
+
if (completedTasks < totalTasks) {
|
|
6205
|
+
const elapsedMs = new Date().getTime() - createdAt.getTime();
|
|
6206
|
+
const totalMs = 5 * 60 * 1000; // 5 minutes
|
|
6207
|
+
const timeProgress = Math.min(elapsedMs / totalMs, 1);
|
|
6208
|
+
// Add partial progress for current task
|
|
6209
|
+
percent += (1 / totalTasks) * timeProgress;
|
|
6210
|
+
}
|
|
6211
|
+
// Clamp to [0,1]
|
|
6212
|
+
percent = Math.min(Math.max(percent, 0), 1);
|
|
6213
|
+
// Generate message
|
|
6214
|
+
let message = '';
|
|
6215
|
+
if (currentTaskName) {
|
|
6216
|
+
// Find the task to get its title
|
|
6217
|
+
const currentTask = pipeline.tasks.find(task => task.name === currentTaskName);
|
|
6218
|
+
const taskTitle = (currentTask === null || currentTask === void 0 ? void 0 : currentTask.title) || currentTaskName;
|
|
6219
|
+
message = `Working on task ${taskTitle}`;
|
|
6220
|
+
}
|
|
6221
|
+
else if (completedTasks === 0) {
|
|
6222
|
+
message = 'Starting pipeline execution';
|
|
6223
|
+
}
|
|
6224
|
+
else {
|
|
6225
|
+
message = `Processing pipeline (${completedTasks}/${totalTasks} tasks completed)`;
|
|
6226
|
+
}
|
|
6227
|
+
return {
|
|
6228
|
+
percent,
|
|
6229
|
+
message,
|
|
6230
|
+
};
|
|
6231
|
+
},
|
|
6138
6232
|
});
|
|
6139
6233
|
// <- TODO: Make types such as there is no need to do `as` for `createTask`
|
|
6140
6234
|
return pipelineExecutor;
|