@promptbook/core 0.46.0-1 → 0.46.0-3
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 +9 -3
- package/esm/index.es.js +1 -1
- package/package.json +1 -1
- package/umd/index.umd.js +1 -1
package/README.md
CHANGED
|
@@ -23,7 +23,12 @@ To install this package, run:
|
|
|
23
23
|
npm i @promptbook/core
|
|
24
24
|
```
|
|
25
25
|
|
|
26
|
-
Core of the library, it contains the main logic for promptbooks
|
|
26
|
+
Core of the library, it contains the main logic for promptbooks.
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
> 💡 This package does not make sense by itself, look at [all promptbook packages](#-packages) or just install all by `npm i ptbk`
|
|
31
|
+
|
|
27
32
|
|
|
28
33
|
---
|
|
29
34
|
|
|
@@ -311,11 +316,12 @@ npm i ptbk
|
|
|
311
316
|
|
|
312
317
|
Or you can install them separately:
|
|
313
318
|
|
|
319
|
+
> ⭐ Marked packages are worth to try first
|
|
314
320
|
|
|
315
321
|
|
|
316
322
|
|
|
317
|
-
- ⭐ **[ptbk](https://www.npmjs.com/package
|
|
318
|
-
- **[promptbook](https://www.npmjs.com/package
|
|
323
|
+
- ⭐ **[ptbk](https://www.npmjs.com/package/ptbk)** - Bundle of all packages, when you want to install everything and you don't care about the size
|
|
324
|
+
- **[promptbook](https://www.npmjs.com/package/promptbook)** - Same as `ptbk`
|
|
319
325
|
- **[@promptbook/core](https://www.npmjs.com/package/@promptbook/core)** - Core of the library, it contains the main logic for promptbooks
|
|
320
326
|
- ⭐ **[@promptbook/utils](https://www.npmjs.com/package/@promptbook/utils)** - Utility functions used in the library but also useful for individual use in preprocessing and postprocessing LLM inputs and outputs
|
|
321
327
|
- _(Not finished)_ **[@promptbook/wizzard](https://www.npmjs.com/package/@promptbook/wizzard)** - Wizard for creating+running promptbooks in single line
|
package/esm/index.es.js
CHANGED
|
@@ -1135,7 +1135,7 @@ function parsingMarkdownStructureToMarkdownStructure(parsingMarkdownStructure) {
|
|
|
1135
1135
|
/**
|
|
1136
1136
|
* The version of the Promptbook library
|
|
1137
1137
|
*/
|
|
1138
|
-
var PROMPTBOOK_VERSION = '0.46.0-
|
|
1138
|
+
var PROMPTBOOK_VERSION = '0.46.0-2';
|
|
1139
1139
|
|
|
1140
1140
|
/**
|
|
1141
1141
|
* Parses the given script and returns the list of all used variables that are not defined in the script
|
package/package.json
CHANGED
package/umd/index.umd.js
CHANGED
|
@@ -1136,7 +1136,7 @@
|
|
|
1136
1136
|
/**
|
|
1137
1137
|
* The version of the Promptbook library
|
|
1138
1138
|
*/
|
|
1139
|
-
var PROMPTBOOK_VERSION = '0.46.0-
|
|
1139
|
+
var PROMPTBOOK_VERSION = '0.46.0-2';
|
|
1140
1140
|
|
|
1141
1141
|
/**
|
|
1142
1142
|
* Parses the given script and returns the list of all used variables that are not defined in the script
|