@promptbook/core 0.46.0-2 → 0.46.0-4
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 +10 -1
- package/esm/index.es.js +1 -1
- package/package.json +1 -1
- package/umd/index.umd.js +1 -1
package/README.md
CHANGED
|
@@ -20,10 +20,19 @@ Library to supercharge your use of large language models
|
|
|
20
20
|
To install this package, run:
|
|
21
21
|
|
|
22
22
|
```bash
|
|
23
|
+
# Install entire promptbook ecosystem
|
|
24
|
+
npm i ptbk
|
|
25
|
+
|
|
26
|
+
# Install just this package to save space
|
|
23
27
|
npm i @promptbook/core
|
|
24
28
|
```
|
|
25
29
|
|
|
26
|
-
Core of the library, it contains the main logic for promptbooks
|
|
30
|
+
Core of the library, it contains the main logic for promptbooks.
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
> 💡 This package does not make sense by itself, look at [all promptbook packages](#-packages) or just install all by `npm i ptbk`
|
|
35
|
+
|
|
27
36
|
|
|
28
37
|
---
|
|
29
38
|
|
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-3';
|
|
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-3';
|
|
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
|