@promptbook/utils 0.46.0-3 → 0.46.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 +5 -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,6 +20,10 @@ 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/utils
|
|
24
28
|
```
|
|
25
29
|
|
|
@@ -153,7 +157,7 @@ Rest of the documentation is common for **entire promptbook ecosystem**:
|
|
|
153
157
|
|
|
154
158
|
|
|
155
159
|
|
|
156
|
-
## 🤍 Whitepaper
|
|
160
|
+
## 🤍 The Promptbook Whitepaper
|
|
157
161
|
|
|
158
162
|
When you have a simple, single prompt for ChatGPT, GPT-4, Anthropic Claude, Google Gemini, Llama 2, or whatever, it doesn't matter how it is integrated. Whether it's the direct calling of a REST API, using the SDK, hardcoding the prompt in the source code, or importing a text file, the process remains the same.
|
|
159
163
|
|
package/esm/index.es.js
CHANGED
|
@@ -403,7 +403,7 @@ function removeContentComments(content) {
|
|
|
403
403
|
/**
|
|
404
404
|
* The version of the Promptbook library
|
|
405
405
|
*/
|
|
406
|
-
var PROMPTBOOK_VERSION = '0.46.0-
|
|
406
|
+
var PROMPTBOOK_VERSION = '0.46.0-4';
|
|
407
407
|
|
|
408
408
|
/**
|
|
409
409
|
* 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
|
@@ -408,7 +408,7 @@
|
|
|
408
408
|
/**
|
|
409
409
|
* The version of the Promptbook library
|
|
410
410
|
*/
|
|
411
|
-
var PROMPTBOOK_VERSION = '0.46.0-
|
|
411
|
+
var PROMPTBOOK_VERSION = '0.46.0-4';
|
|
412
412
|
|
|
413
413
|
/**
|
|
414
414
|
* Parses the given script and returns the list of all used variables that are not defined in the script
|