@promptbook/markdown-utils 0.88.0-8 → 0.88.0
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/README.md +21 -27
- package/esm/index.es.js +79 -18
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/_packages/utils.index.d.ts +2 -0
- package/esm/typings/src/config.d.ts +1 -1
- package/esm/typings/src/errors/PipelineExecutionError.d.ts +5 -0
- package/esm/typings/src/errors/utils/ErrorJson.d.ts +5 -0
- package/esm/typings/src/utils/expectation-counters/countCharacters.d.ts +3 -0
- package/esm/typings/src/utils/expectation-counters/countLines.d.ts +3 -0
- package/esm/typings/src/utils/expectation-counters/countPages.d.ts +3 -0
- package/esm/typings/src/utils/expectation-counters/countParagraphs.d.ts +3 -0
- package/esm/typings/src/utils/expectation-counters/countSentences.d.ts +3 -0
- package/esm/typings/src/utils/expectation-counters/countWords.d.ts +3 -0
- package/esm/typings/src/utils/serialization/jsonStringsToJsons.d.ts +9 -0
- package/esm/typings/src/utils/serialization/jsonStringsToJsons.test.d.ts +1 -0
- package/package.json +1 -1
- package/umd/index.umd.js +82 -21
- package/umd/index.umd.js.map +1 -1
package/README.md
CHANGED
|
@@ -23,10 +23,6 @@
|
|
|
23
23
|
|
|
24
24
|
|
|
25
25
|
|
|
26
|
-
<blockquote style="color: #ff8811">
|
|
27
|
-
<b>⚠ Warning:</b> This is a pre-release version of the library. It is not yet ready for production use. Please look at <a href="https://www.npmjs.com/package/@promptbook/core?activeTab=versions">latest stable release</a>.
|
|
28
|
-
</blockquote>
|
|
29
|
-
|
|
30
26
|
## 📦 Package `@promptbook/markdown-utils`
|
|
31
27
|
|
|
32
28
|
- Promptbooks are [divided into several](#-packages) packages, all are published from [single monorepo](https://github.com/webgptorg/promptbook).
|
|
@@ -70,6 +66,9 @@ This shift is going to happen, whether we are ready for it or not. Our mission i
|
|
|
70
66
|
|
|
71
67
|
|
|
72
68
|
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
|
|
73
72
|
## 🚀 Get started
|
|
74
73
|
|
|
75
74
|
Take a look at the simple starter kit with books integrated into the **Hello World** sample applications:
|
|
@@ -81,6 +80,8 @@ Take a look at the simple starter kit with books integrated into the **Hello Wor
|
|
|
81
80
|
|
|
82
81
|
|
|
83
82
|
|
|
83
|
+
|
|
84
|
+
|
|
84
85
|
## 💜 The Promptbook Project
|
|
85
86
|
|
|
86
87
|
Promptbook project is ecosystem of multiple projects and tools, following is a list of most important pieces of the project:
|
|
@@ -116,6 +117,14 @@ Promptbook project is ecosystem of multiple projects and tools, following is a l
|
|
|
116
117
|
</tbody>
|
|
117
118
|
</table>
|
|
118
119
|
|
|
120
|
+
Hello world examples:
|
|
121
|
+
|
|
122
|
+
- [Hello world](https://github.com/webgptorg/hello-world)
|
|
123
|
+
- [Hello world in Node.js](https://github.com/webgptorg/hello-world-node-js)
|
|
124
|
+
- [Hello world in Next.js](https://github.com/webgptorg/hello-world-next-js)
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
|
|
119
128
|
We also have a community of developers and users of **Promptbook**:
|
|
120
129
|
|
|
121
130
|
- [Discord community](https://discord.gg/x3QWNaa89N)
|
|
@@ -282,16 +291,9 @@ Or you can install them separately:
|
|
|
282
291
|
|
|
283
292
|
## 📚 Dictionary
|
|
284
293
|
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
### 📚 Dictionary
|
|
291
|
-
|
|
292
294
|
The following glossary is used to clarify certain concepts:
|
|
293
295
|
|
|
294
|
-
|
|
296
|
+
### General LLM / AI terms
|
|
295
297
|
|
|
296
298
|
- **Prompt drift** is a phenomenon where the AI model starts to generate outputs that are not aligned with the original prompt. This can happen due to the model's training data, the prompt's wording, or the model's architecture.
|
|
297
299
|
- **Pipeline, workflow or chain** is a sequence of tasks that are executed in a specific order. In the context of AI, a pipeline can refer to a sequence of AI models that are used to process data.
|
|
@@ -304,11 +306,11 @@ The following glossary is used to clarify certain concepts:
|
|
|
304
306
|
|
|
305
307
|
|
|
306
308
|
|
|
307
|
-
_Note:
|
|
309
|
+
_Note: This section is not complete dictionary, more list of general AI / LLM terms that has connection with Promptbook_
|
|
308
310
|
|
|
309
311
|
|
|
310
312
|
|
|
311
|
-
|
|
313
|
+
### 💯 Core concepts
|
|
312
314
|
|
|
313
315
|
- [📚 Collection of pipelines](https://github.com/webgptorg/promptbook/discussions/65)
|
|
314
316
|
- [📯 Pipeline](https://github.com/webgptorg/promptbook/discussions/64)
|
|
@@ -321,7 +323,7 @@ _Note: Thos section is not complete dictionary, more list of general AI / LLM te
|
|
|
321
323
|
- [🔣 Words not tokens](https://github.com/webgptorg/promptbook/discussions/29)
|
|
322
324
|
- [☯ Separation of concerns](https://github.com/webgptorg/promptbook/discussions/32)
|
|
323
325
|
|
|
324
|
-
|
|
326
|
+
#### Advanced concepts
|
|
325
327
|
|
|
326
328
|
- [📚 Knowledge (Retrieval-augmented generation)](https://github.com/webgptorg/promptbook/discussions/41)
|
|
327
329
|
- [🌏 Remote server](https://github.com/webgptorg/promptbook/discussions/89)
|
|
@@ -338,17 +340,9 @@ _Note: Thos section is not complete dictionary, more list of general AI / LLM te
|
|
|
338
340
|
|
|
339
341
|
|
|
340
342
|
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
- Anonymous mode
|
|
344
|
-
- Application mode
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
## 🔌 Usage in Typescript / Javascript
|
|
343
|
+
## 🚂 Promptbook Engine
|
|
349
344
|
|
|
350
|
-
|
|
351
|
-
- [Usage with client and remote server](./examples/usage/remote)
|
|
345
|
+

|
|
352
346
|
|
|
353
347
|
## ➕➖ When to use Promptbook?
|
|
354
348
|
|
|
@@ -414,11 +408,11 @@ See [TODO.md](./TODO.md)
|
|
|
414
408
|
<div style="display: flex; align-items: center; gap: 20px;">
|
|
415
409
|
|
|
416
410
|
<a href="https://promptbook.studio/">
|
|
417
|
-
<img src="./design/promptbook-studio-logo.png" alt="Partner 3" height="
|
|
411
|
+
<img src="./design/promptbook-studio-logo.png" alt="Partner 3" height="70">
|
|
418
412
|
</a>
|
|
419
413
|
|
|
420
414
|
<a href="https://technologickainkubace.org/en/about-technology-incubation/about-the-project/">
|
|
421
|
-
<img src="./other/partners/CI-Technology-Incubation.png" alt="Technology Incubation" height="
|
|
415
|
+
<img src="./other/partners/CI-Technology-Incubation.png" alt="Technology Incubation" height="70">
|
|
422
416
|
</a>
|
|
423
417
|
|
|
424
418
|
</div>
|
package/esm/index.es.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import spaceTrim, { spaceTrim as spaceTrim$1 } from 'spacetrim';
|
|
2
2
|
import { format } from 'prettier';
|
|
3
3
|
import parserHtml from 'prettier/parser-html';
|
|
4
|
-
import { Subject } from 'rxjs';
|
|
5
4
|
import { randomBytes } from 'crypto';
|
|
5
|
+
import { Subject } from 'rxjs';
|
|
6
6
|
import { forTime } from 'waitasecond';
|
|
7
7
|
import hexEncoder from 'crypto-js/enc-hex';
|
|
8
8
|
import sha256 from 'crypto-js/sha256';
|
|
@@ -25,7 +25,7 @@ const BOOK_LANGUAGE_VERSION = '1.0.0';
|
|
|
25
25
|
* @generated
|
|
26
26
|
* @see https://github.com/webgptorg/promptbook
|
|
27
27
|
*/
|
|
28
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.88.0
|
|
28
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.88.0';
|
|
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
|
|
@@ -659,7 +659,7 @@ const DEFAULT_MAX_PARALLEL_COUNT = 5; // <- TODO: [🤹♂️]
|
|
|
659
659
|
*
|
|
660
660
|
* @public exported from `@promptbook/core`
|
|
661
661
|
*/
|
|
662
|
-
const DEFAULT_MAX_EXECUTION_ATTEMPTS =
|
|
662
|
+
const DEFAULT_MAX_EXECUTION_ATTEMPTS = 10; // <- TODO: [🤹♂️]
|
|
663
663
|
// <- TODO: [🕝] Make also `BOOKS_DIRNAME_ALTERNATIVES`
|
|
664
664
|
/**
|
|
665
665
|
* Where to store the temporary downloads
|
|
@@ -1676,6 +1676,21 @@ class MissingToolsError extends Error {
|
|
|
1676
1676
|
}
|
|
1677
1677
|
}
|
|
1678
1678
|
|
|
1679
|
+
/**
|
|
1680
|
+
* Generates random token
|
|
1681
|
+
*
|
|
1682
|
+
* Note: This function is cryptographically secure (it uses crypto.randomBytes internally)
|
|
1683
|
+
*
|
|
1684
|
+
* @private internal helper function
|
|
1685
|
+
* @returns secure random token
|
|
1686
|
+
*/
|
|
1687
|
+
function $randomToken(randomness) {
|
|
1688
|
+
return randomBytes(randomness).toString('hex');
|
|
1689
|
+
}
|
|
1690
|
+
/**
|
|
1691
|
+
* TODO: Maybe use nanoid instead https://github.com/ai/nanoid
|
|
1692
|
+
*/
|
|
1693
|
+
|
|
1679
1694
|
/**
|
|
1680
1695
|
* This error indicates errors during the execution of the pipeline
|
|
1681
1696
|
*
|
|
@@ -1683,11 +1698,17 @@ class MissingToolsError extends Error {
|
|
|
1683
1698
|
*/
|
|
1684
1699
|
class PipelineExecutionError extends Error {
|
|
1685
1700
|
constructor(message) {
|
|
1701
|
+
// Added id parameter
|
|
1686
1702
|
super(message);
|
|
1687
1703
|
this.name = 'PipelineExecutionError';
|
|
1704
|
+
// TODO: [🐙] DRY - Maybe $randomId
|
|
1705
|
+
this.id = `error-${$randomToken(8 /* <- TODO: To global config + Use Base58 to avoid simmilar char conflicts */)}`;
|
|
1688
1706
|
Object.setPrototypeOf(this, PipelineExecutionError.prototype);
|
|
1689
1707
|
}
|
|
1690
1708
|
}
|
|
1709
|
+
/**
|
|
1710
|
+
* TODO: !!!!!! Add id to all errors
|
|
1711
|
+
*/
|
|
1691
1712
|
|
|
1692
1713
|
/**
|
|
1693
1714
|
* Determine if the pipeline is fully prepared
|
|
@@ -1727,18 +1748,33 @@ function isPipelinePrepared(pipeline) {
|
|
|
1727
1748
|
*/
|
|
1728
1749
|
|
|
1729
1750
|
/**
|
|
1730
|
-
*
|
|
1731
|
-
|
|
1732
|
-
*
|
|
1733
|
-
*
|
|
1734
|
-
* @private internal helper function
|
|
1735
|
-
* @returns secure random token
|
|
1751
|
+
* Recursively converts JSON strings to JSON objects
|
|
1752
|
+
|
|
1753
|
+
* @public exported from `@promptbook/utils`
|
|
1736
1754
|
*/
|
|
1737
|
-
function
|
|
1738
|
-
|
|
1755
|
+
function jsonStringsToJsons(object) {
|
|
1756
|
+
if (object === null) {
|
|
1757
|
+
return object;
|
|
1758
|
+
}
|
|
1759
|
+
if (Array.isArray(object)) {
|
|
1760
|
+
return object.map(jsonStringsToJsons);
|
|
1761
|
+
}
|
|
1762
|
+
if (typeof object !== 'object') {
|
|
1763
|
+
return object;
|
|
1764
|
+
}
|
|
1765
|
+
const newObject = { ...object };
|
|
1766
|
+
for (const [key, value] of Object.entries(object)) {
|
|
1767
|
+
if (typeof value === 'string' && isValidJsonString(value)) {
|
|
1768
|
+
newObject[key] = JSON.parse(value);
|
|
1769
|
+
}
|
|
1770
|
+
else {
|
|
1771
|
+
newObject[key] = jsonStringsToJsons(value);
|
|
1772
|
+
}
|
|
1773
|
+
}
|
|
1774
|
+
return newObject;
|
|
1739
1775
|
}
|
|
1740
1776
|
/**
|
|
1741
|
-
* TODO:
|
|
1777
|
+
* TODO: Type the return type correctly
|
|
1742
1778
|
*/
|
|
1743
1779
|
|
|
1744
1780
|
/**
|
|
@@ -1927,7 +1963,7 @@ const ALL_ERRORS = {
|
|
|
1927
1963
|
* @public exported from `@promptbook/utils`
|
|
1928
1964
|
*/
|
|
1929
1965
|
function deserializeError(error) {
|
|
1930
|
-
const { name, stack } = error;
|
|
1966
|
+
const { name, stack, id } = error; // Added id
|
|
1931
1967
|
let { message } = error;
|
|
1932
1968
|
let ErrorClass = ALL_ERRORS[error.name];
|
|
1933
1969
|
if (ErrorClass === undefined) {
|
|
@@ -1942,7 +1978,9 @@ function deserializeError(error) {
|
|
|
1942
1978
|
${block(stack || '')}
|
|
1943
1979
|
`);
|
|
1944
1980
|
}
|
|
1945
|
-
|
|
1981
|
+
const deserializedError = new ErrorClass(message);
|
|
1982
|
+
deserializedError.id = id; // Assign id to the error object
|
|
1983
|
+
return deserializedError;
|
|
1946
1984
|
}
|
|
1947
1985
|
|
|
1948
1986
|
/**
|
|
@@ -1992,17 +2030,19 @@ function assertsTaskSuccessful(executionResult) {
|
|
|
1992
2030
|
*/
|
|
1993
2031
|
function createTask(options) {
|
|
1994
2032
|
const { taskType, taskProcessCallback } = options;
|
|
2033
|
+
// TODO: [🐙] DRY
|
|
1995
2034
|
const taskId = `${taskType.toLowerCase().substring(0, 4)}-${$randomToken(8 /* <- TODO: To global config + Use Base58 to avoid simmilar char conflicts */)}`;
|
|
1996
2035
|
let status = 'RUNNING';
|
|
1997
2036
|
const createdAt = new Date();
|
|
1998
2037
|
let updatedAt = createdAt;
|
|
1999
2038
|
const errors = [];
|
|
2000
2039
|
const warnings = [];
|
|
2001
|
-
|
|
2040
|
+
let currentValue = {};
|
|
2002
2041
|
const partialResultSubject = new Subject();
|
|
2003
2042
|
// <- Note: Not using `BehaviorSubject` because on error we can't access the last value
|
|
2004
2043
|
const finalResultPromise = /* not await */ taskProcessCallback((newOngoingResult) => {
|
|
2005
2044
|
Object.assign(currentValue, newOngoingResult);
|
|
2045
|
+
// <- TODO: assign deep
|
|
2006
2046
|
partialResultSubject.next(newOngoingResult);
|
|
2007
2047
|
});
|
|
2008
2048
|
finalResultPromise
|
|
@@ -2022,7 +2062,8 @@ function createTask(options) {
|
|
|
2022
2062
|
// And delete `ExecutionTask.currentValue.preparedPipeline`
|
|
2023
2063
|
assertsTaskSuccessful(executionResult);
|
|
2024
2064
|
status = 'FINISHED';
|
|
2025
|
-
|
|
2065
|
+
currentValue = jsonStringsToJsons(executionResult);
|
|
2066
|
+
// <- TODO: [🧠] Is this a good idea to convert JSON strins to JSONs?
|
|
2026
2067
|
partialResultSubject.next(executionResult);
|
|
2027
2068
|
}
|
|
2028
2069
|
catch (error) {
|
|
@@ -2086,19 +2127,21 @@ function createTask(options) {
|
|
|
2086
2127
|
*/
|
|
2087
2128
|
function serializeError(error) {
|
|
2088
2129
|
const { name, message, stack } = error;
|
|
2130
|
+
const { id } = error;
|
|
2089
2131
|
if (!Object.keys(ALL_ERRORS).includes(name)) {
|
|
2090
2132
|
console.error(spaceTrim((block) => `
|
|
2091
|
-
|
|
2133
|
+
|
|
2092
2134
|
Cannot serialize error with name "${name}"
|
|
2093
2135
|
|
|
2094
2136
|
${block(stack || message)}
|
|
2095
|
-
|
|
2137
|
+
|
|
2096
2138
|
`));
|
|
2097
2139
|
}
|
|
2098
2140
|
return {
|
|
2099
2141
|
name: name,
|
|
2100
2142
|
message,
|
|
2101
2143
|
stack,
|
|
2144
|
+
id, // Include id in the serialized object
|
|
2102
2145
|
};
|
|
2103
2146
|
}
|
|
2104
2147
|
|
|
@@ -4294,6 +4337,9 @@ function countCharacters(text) {
|
|
|
4294
4337
|
text = text.replace(/\p{Extended_Pictographic}(\u{200D}\p{Extended_Pictographic})*/gu, '-');
|
|
4295
4338
|
return text.length;
|
|
4296
4339
|
}
|
|
4340
|
+
/**
|
|
4341
|
+
* TODO: [🥴] Implement counting in formats - like JSON, CSV, XML,...
|
|
4342
|
+
*/
|
|
4297
4343
|
|
|
4298
4344
|
/**
|
|
4299
4345
|
* Number of characters per standard line with 11pt Arial font size.
|
|
@@ -4325,6 +4371,9 @@ function countLines(text) {
|
|
|
4325
4371
|
const lines = text.split('\n');
|
|
4326
4372
|
return lines.reduce((count, line) => count + Math.ceil(line.length / CHARACTERS_PER_STANDARD_LINE), 0);
|
|
4327
4373
|
}
|
|
4374
|
+
/**
|
|
4375
|
+
* TODO: [🥴] Implement counting in formats - like JSON, CSV, XML,...
|
|
4376
|
+
*/
|
|
4328
4377
|
|
|
4329
4378
|
/**
|
|
4330
4379
|
* Counts number of pages in the text
|
|
@@ -4336,6 +4385,9 @@ function countLines(text) {
|
|
|
4336
4385
|
function countPages(text) {
|
|
4337
4386
|
return Math.ceil(countLines(text) / LINES_PER_STANDARD_PAGE);
|
|
4338
4387
|
}
|
|
4388
|
+
/**
|
|
4389
|
+
* TODO: [🥴] Implement counting in formats - like JSON, CSV, XML,...
|
|
4390
|
+
*/
|
|
4339
4391
|
|
|
4340
4392
|
/**
|
|
4341
4393
|
* Counts number of paragraphs in the text
|
|
@@ -4345,6 +4397,9 @@ function countPages(text) {
|
|
|
4345
4397
|
function countParagraphs(text) {
|
|
4346
4398
|
return text.split(/\n\s*\n/).filter((paragraph) => paragraph.trim() !== '').length;
|
|
4347
4399
|
}
|
|
4400
|
+
/**
|
|
4401
|
+
* TODO: [🥴] Implement counting in formats - like JSON, CSV, XML,...
|
|
4402
|
+
*/
|
|
4348
4403
|
|
|
4349
4404
|
/**
|
|
4350
4405
|
* Split text into sentences
|
|
@@ -4362,6 +4417,9 @@ function splitIntoSentences(text) {
|
|
|
4362
4417
|
function countSentences(text) {
|
|
4363
4418
|
return splitIntoSentences(text).length;
|
|
4364
4419
|
}
|
|
4420
|
+
/**
|
|
4421
|
+
* TODO: [🥴] Implement counting in formats - like JSON, CSV, XML,...
|
|
4422
|
+
*/
|
|
4365
4423
|
|
|
4366
4424
|
/**
|
|
4367
4425
|
* Counts number of words in the text
|
|
@@ -4375,6 +4433,9 @@ function countWords(text) {
|
|
|
4375
4433
|
text = text.replace(/([a-z])([A-Z])/g, '$1 $2');
|
|
4376
4434
|
return text.split(/[^a-zа-я0-9]+/i).filter((word) => word.length > 0).length;
|
|
4377
4435
|
}
|
|
4436
|
+
/**
|
|
4437
|
+
* TODO: [🥴] Implement counting in formats - like JSON, CSV, XML,...
|
|
4438
|
+
*/
|
|
4378
4439
|
|
|
4379
4440
|
/**
|
|
4380
4441
|
* Index of all counter functions
|