@promptbook/pdf 0.100.0-24 → 0.100.0-26
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 +4 -2
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/_packages/utils.index.d.ts +2 -0
- package/esm/typings/src/book-components/BookEditor/BookEditor.d.ts +3 -1
- package/esm/typings/src/config.d.ts +6 -0
- package/esm/typings/src/execution/createPipelineExecutor/40-executeAttempts.d.ts +6 -1
- package/esm/typings/src/version.d.ts +1 -1
- package/package.json +2 -2
- package/umd/index.umd.js +4 -2
- package/umd/index.umd.js.map +1 -1
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { BOOK_LANGUAGE_VERSION, PROMPTBOOK_ENGINE_VERSION } from '../version';
|
|
2
2
|
import { VALUE_STRINGS } from '../config';
|
|
3
|
+
import { MAX_TOKENS } from '../config';
|
|
3
4
|
import { SMALL_NUMBER } from '../config';
|
|
4
5
|
import { renderPromptbookMermaid } from '../conversion/prettify/renderPipelineMermaidOptions';
|
|
5
6
|
import { deserializeError } from '../errors/utils/deserializeError';
|
|
@@ -85,6 +86,7 @@ import { isValidUrl } from '../utils/validators/url/isValidUrl';
|
|
|
85
86
|
import { isValidUuid } from '../utils/validators/uuid/isValidUuid';
|
|
86
87
|
export { BOOK_LANGUAGE_VERSION, PROMPTBOOK_ENGINE_VERSION };
|
|
87
88
|
export { VALUE_STRINGS };
|
|
89
|
+
export { MAX_TOKENS };
|
|
88
90
|
export { SMALL_NUMBER };
|
|
89
91
|
export { renderPromptbookMermaid };
|
|
90
92
|
export { deserializeError };
|
|
@@ -6,7 +6,7 @@ export interface BookEditorProps {
|
|
|
6
6
|
className?: string;
|
|
7
7
|
/**
|
|
8
8
|
* CSS className for a font (e.g. from next/font) to style the editor text.
|
|
9
|
-
* If omitted, defaults to system fonts.
|
|
9
|
+
* If omitted, defaults to system serif fonts.
|
|
10
10
|
*/
|
|
11
11
|
fontClassName?: string;
|
|
12
12
|
/**
|
|
@@ -21,6 +21,8 @@ export interface BookEditorProps {
|
|
|
21
21
|
/**
|
|
22
22
|
* Renders a book editor
|
|
23
23
|
*
|
|
24
|
+
* 🔥 LIVE COMPONENT TEST: This component is being served live from the playground server!
|
|
25
|
+
*
|
|
24
26
|
* @public exported from `@promptbook/components`
|
|
25
27
|
*/
|
|
26
28
|
export declare function BookEditor(props: BookEditorProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -129,6 +129,12 @@ export declare const VALUE_STRINGS: {
|
|
|
129
129
|
readonly unserializable: "(unserializable value)";
|
|
130
130
|
readonly circular: "(circular JSON)";
|
|
131
131
|
};
|
|
132
|
+
/**
|
|
133
|
+
* Default cap for the number of tokens in a single request to the LLM
|
|
134
|
+
*
|
|
135
|
+
* @public exported from `@promptbook/utils`
|
|
136
|
+
*/
|
|
137
|
+
export declare const MAX_TOKENS = 1048576;
|
|
132
138
|
/**
|
|
133
139
|
* Small number limit
|
|
134
140
|
*
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import type { ReadonlyDeep, WritableDeep } from 'type-fest';
|
|
1
|
+
import type { PartialDeep, Promisable, ReadonlyDeep, WritableDeep } from 'type-fest';
|
|
2
2
|
import type { PipelineJson } from '../../pipeline/PipelineJson/PipelineJson';
|
|
3
3
|
import type { TaskJson } from '../../pipeline/PipelineJson/TaskJson';
|
|
4
4
|
import type { Parameters } from '../../types/typeAliases';
|
|
5
5
|
import type { string_parameter_name } from '../../types/typeAliases';
|
|
6
6
|
import type { TODO_string } from '../../utils/organization/TODO_string';
|
|
7
7
|
import type { ExecutionReportJson } from '../execution-report/ExecutionReportJson';
|
|
8
|
+
import type { PipelineExecutorResult } from '../PipelineExecutorResult';
|
|
8
9
|
import type { CreatePipelineExecutorOptions } from './00-CreatePipelineExecutorOptions';
|
|
9
10
|
/**
|
|
10
11
|
* Options for executing attempts of a pipeline task, including configuration for jokers, priority,
|
|
@@ -46,6 +47,10 @@ export type ExecuteAttemptsOptions = Required<Omit<CreatePipelineExecutorOptions
|
|
|
46
47
|
* The pipeline structure prepared for execution, as a deeply immutable PipelineJson object.
|
|
47
48
|
*/
|
|
48
49
|
readonly preparedPipeline: ReadonlyDeep<PipelineJson>;
|
|
50
|
+
/**
|
|
51
|
+
* Callback invoked with partial results as the execution progresses.
|
|
52
|
+
*/
|
|
53
|
+
onProgress(newOngoingResult: PartialDeep<PipelineExecutorResult>): Promisable<void>;
|
|
49
54
|
/**
|
|
50
55
|
* The execution report object, which is updated during execution.
|
|
51
56
|
*/
|
|
@@ -15,7 +15,7 @@ export declare const BOOK_LANGUAGE_VERSION: string_semantic_version;
|
|
|
15
15
|
export declare const PROMPTBOOK_ENGINE_VERSION: string_promptbook_version;
|
|
16
16
|
/**
|
|
17
17
|
* Represents the version string of the Promptbook engine.
|
|
18
|
-
* It follows semantic versioning (e.g., `0.100.0-
|
|
18
|
+
* It follows semantic versioning (e.g., `0.100.0-25`).
|
|
19
19
|
*
|
|
20
20
|
* @generated
|
|
21
21
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@promptbook/pdf",
|
|
3
|
-
"version": "0.100.0-
|
|
3
|
+
"version": "0.100.0-26",
|
|
4
4
|
"description": "Promptbook: Run AI apps in plain human language across multiple models and platforms",
|
|
5
5
|
"private": false,
|
|
6
6
|
"sideEffects": false,
|
|
@@ -94,7 +94,7 @@
|
|
|
94
94
|
"module": "./esm/index.es.js",
|
|
95
95
|
"typings": "./esm/typings/src/_packages/pdf.index.d.ts",
|
|
96
96
|
"peerDependencies": {
|
|
97
|
-
"@promptbook/core": "0.100.0-
|
|
97
|
+
"@promptbook/core": "0.100.0-26"
|
|
98
98
|
},
|
|
99
99
|
"dependencies": {
|
|
100
100
|
"crypto": "1.0.1",
|
package/umd/index.umd.js
CHANGED
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
* @generated
|
|
26
26
|
* @see https://github.com/webgptorg/promptbook
|
|
27
27
|
*/
|
|
28
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.100.0-
|
|
28
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.100.0-26';
|
|
29
29
|
/**
|
|
30
30
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
31
31
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
@@ -4955,7 +4955,7 @@
|
|
|
4955
4955
|
*/
|
|
4956
4956
|
async function executeAttempts(options) {
|
|
4957
4957
|
const { jokerParameterNames, priority, maxAttempts, // <- Note: [💂]
|
|
4958
|
-
preparedContent, parameters, task, preparedPipeline, tools, $executionReport, pipelineIdentification, maxExecutionAttempts, } = options;
|
|
4958
|
+
preparedContent, parameters, task, preparedPipeline, tools, $executionReport, pipelineIdentification, maxExecutionAttempts, onProgress, } = options;
|
|
4959
4959
|
const $ongoingTaskResult = {
|
|
4960
4960
|
$result: null,
|
|
4961
4961
|
$resultString: null,
|
|
@@ -5199,6 +5199,8 @@
|
|
|
5199
5199
|
result: $ongoingTaskResult.$resultString,
|
|
5200
5200
|
error: error,
|
|
5201
5201
|
});
|
|
5202
|
+
// Note: Calling void function to signal progress (mutation of `$ongoingTaskResult`) - TODO: !!!! Is this working
|
|
5203
|
+
onProgress({});
|
|
5202
5204
|
}
|
|
5203
5205
|
finally {
|
|
5204
5206
|
if (!isJokerAttempt &&
|