@promptbook/cli 0.88.0-10 → 0.88.0-11
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 +18 -1
- package/esm/index.es.js +1 -1
- package/package.json +1 -1
- package/umd/index.umd.js +1 -1
package/README.md
CHANGED
|
@@ -112,6 +112,8 @@ Rest of the documentation is common for **entire promptbook ecosystem**:
|
|
|
112
112
|
|
|
113
113
|
During the computer revolution, we have seen [multiple generations of computer languages](https://github.com/webgptorg/promptbook/discussions/180), from the physical rewiring of the vacuum tubes through low-level machine code to the high-level languages like Python or JavaScript. And now, we're on the edge of the **next revolution**!
|
|
114
114
|
|
|
115
|
+
|
|
116
|
+
|
|
115
117
|
It's a revolution of writing software in **plain human language** that is understandable and executable by both humans and machines – and it's going to change everything!
|
|
116
118
|
|
|
117
119
|
The incredible growth in power of microprocessors and the Moore's Law have been the driving force behind the ever-more powerful languages, and it's been an amazing journey! Similarly, the large language models (like GPT or Claude) are the next big thing in language technology, and they're set to transform the way we interact with computers.
|
|
@@ -174,22 +176,29 @@ Hello world examples:
|
|
|
174
176
|
- [Hello world in Node.js](https://github.com/webgptorg/hello-world-node-js)
|
|
175
177
|
- [Hello world in Next.js](https://github.com/webgptorg/hello-world-next-js)
|
|
176
178
|
|
|
179
|
+
|
|
180
|
+
|
|
177
181
|
We also have a community of developers and users of **Promptbook**:
|
|
178
182
|
|
|
179
183
|
- [Discord community](https://discord.gg/x3QWNaa89N)
|
|
180
184
|
- [Landing page `ptbk.io`](https://ptbk.io)
|
|
181
185
|
- [Github discussions](https://github.com/webgptorg/promptbook/discussions)
|
|
182
186
|
- [LinkedIn `Promptbook`](https://linkedin.com/company/promptbook)
|
|
183
|
-
- [Facebook `Promptbook`](https://www.facebook.com/61560776453536)
|
|
187
|
+
- [Facebook `Promptbook`](https://www.facebook.com/61560776453536)
|
|
184
188
|
|
|
185
189
|
And **Promptbook.studio** branded socials:
|
|
186
190
|
|
|
191
|
+
|
|
192
|
+
|
|
187
193
|
- [Instagram `@promptbook.studio`](https://www.instagram.com/promptbook.studio/)
|
|
188
194
|
|
|
189
195
|
And **Promptujeme** sub-brand:
|
|
190
196
|
|
|
191
197
|
_/Subbrand for Czech clients/_
|
|
192
198
|
|
|
199
|
+
|
|
200
|
+
|
|
201
|
+
|
|
193
202
|
- [Promptujeme.cz](https://www.promptujeme.cz/)
|
|
194
203
|
- [Facebook `Promptujeme`](https://www.facebook.com/promptujeme/)
|
|
195
204
|
|
|
@@ -207,6 +216,8 @@ _/Sub-brand for images and graphics generated via Promptbook prompting/_
|
|
|
207
216
|
|
|
208
217
|
## 💙 The Book language
|
|
209
218
|
|
|
219
|
+
|
|
220
|
+
|
|
210
221
|
Following is the documentation and blueprint of the [Book language](https://github.com/webgptorg/book).
|
|
211
222
|
|
|
212
223
|
Book is a language that can be used to write AI applications, agents, workflows, automations, knowledgebases, translators, sheet processors, email automations and more. It allows you to harness the power of AI models in human-like terms, without the need to know the specifics and technicalities of the models.
|
|
@@ -256,6 +267,8 @@ Personas can have access to different knowledge, tools and actions. They can als
|
|
|
256
267
|
|
|
257
268
|
- [PERSONA](https://github.com/webgptorg/promptbook/blob/main/documents/commands/PERSONA.md)
|
|
258
269
|
|
|
270
|
+
|
|
271
|
+
|
|
259
272
|
### **How:** Knowledge, Instruments and Actions
|
|
260
273
|
|
|
261
274
|
The resources used by the personas are used to do the work.
|
|
@@ -344,8 +357,12 @@ The following glossary is used to clarify certain concepts:
|
|
|
344
357
|
- **Retrieval-augmented generation** is a machine learning paradigm where a model generates text by retrieving relevant information from a large database of text. This approach combines the benefits of generative models and retrieval models.
|
|
345
358
|
- **Longtail** refers to non-common or rare events, items, or entities that are not well-represented in the training data of machine learning models. Longtail items are often challenging for models to predict accurately.
|
|
346
359
|
|
|
360
|
+
|
|
361
|
+
|
|
347
362
|
_Note: This section is not complete dictionary, more list of general AI / LLM terms that has connection with Promptbook_
|
|
348
363
|
|
|
364
|
+
|
|
365
|
+
|
|
349
366
|
### 💯 Core concepts
|
|
350
367
|
|
|
351
368
|
- [📚 Collection of pipelines](https://github.com/webgptorg/promptbook/discussions/65)
|
package/esm/index.es.js
CHANGED
|
@@ -44,7 +44,7 @@ const BOOK_LANGUAGE_VERSION = '1.0.0';
|
|
|
44
44
|
* @generated
|
|
45
45
|
* @see https://github.com/webgptorg/promptbook
|
|
46
46
|
*/
|
|
47
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.88.0-
|
|
47
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.88.0-11';
|
|
48
48
|
/**
|
|
49
49
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
50
50
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
package/package.json
CHANGED
package/umd/index.umd.js
CHANGED
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
* @generated
|
|
55
55
|
* @see https://github.com/webgptorg/promptbook
|
|
56
56
|
*/
|
|
57
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.88.0-
|
|
57
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.88.0-11';
|
|
58
58
|
/**
|
|
59
59
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
60
60
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|