ptbk 0.94.0-14 → 0.94.0-16

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.
Files changed (2) hide show
  1. package/README.md +15 -7
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -32,15 +32,17 @@ Write AI applications using plain human language across multiple models and plat
32
32
 
33
33
  ## 🤍 The Book Abstract
34
34
 
35
- **It's time for a paradigm shift! The future of software is in plain English, French or Latin.**
35
+ **It's time for a paradigm shift! The future of software is written in plain English, French, or Latin.**
36
36
 
37
37
  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**!
38
38
 
39
+
40
+
39
41
  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!
40
42
 
41
43
  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.
42
44
 
43
- This shift is going to happen, whether we are ready for it or not. Our mission is to make it excellently, not just good.
45
+ This shift will happen whether we're ready or not. Our mission is to make it excellent, not just good.
44
46
 
45
47
  **Join us in this journey!**
46
48
 
@@ -148,7 +150,7 @@ Join our growing community of developers and users:
148
150
  <td><a href="https://www.instagram.com/promptbook.studio/">📸 Instagram @promptbook.studio</a></td>
149
151
  <td>Visual updates, UI showcases, and design inspiration</td>
150
152
  </tr>
151
-
153
+
152
154
  </tbody>
153
155
  </table>
154
156
 
@@ -161,6 +163,8 @@ Join our growing community of developers and users:
161
163
 
162
164
  _A concise, Markdown-based DSL for crafting AI workflows and automations._
163
165
 
166
+
167
+
164
168
  ### Introduction
165
169
 
166
170
  Book is a Markdown-based language that simplifies the creation of AI applications, workflows, and automations. With human-readable commands, you can define inputs, outputs, personas, knowledge sources, and actions—without needing model-specific details.
@@ -188,7 +192,7 @@ Book is a Markdown-based language that simplifies the creation of AI application
188
192
  → {article}
189
193
  ```
190
194
 
191
- Each part of the book defines one of 3 circles:
195
+ Each part of the book defines one of three circles:
192
196
 
193
197
  ### **1. What:** Workflows, Tasks and Parameters
194
198
 
@@ -210,6 +214,8 @@ Personas can have access to different knowledge, tools and actions. They can als
210
214
 
211
215
  - [PERSONA](https://github.com/webgptorg/promptbook/blob/main/documents/commands/PERSONA.md)
212
216
 
217
+
218
+
213
219
  ### **3. How:** Knowledge, Instruments and Actions
214
220
 
215
221
  The resources used by the personas are used to do the work.
@@ -224,9 +230,9 @@ The resources used by the personas are used to do the work.
224
230
 
225
231
  Book language is based on markdown. It is subset of markdown. It is designed to be easy to read and write. It is designed to be understandable by both humans and machines and without specific knowledge of the language.
226
232
 
227
- The file has `.book` extension. It uses `UTF-8` non BOM encoding.
233
+ The file has a `.book` extension and uses UTF-8 encoding without BOM.
228
234
 
229
- Book has two variants: flat - which is just a prompt with no structure, and full - which has a structure with tasks, commands and prompts.
235
+ Books have two variants: flat just a prompt without structure, and full with tasks, commands, and prompts.
230
236
 
231
237
  As it is source code, it can leverage all the features of version control systems like git and does not suffer from the problems of binary formats, proprietary formats, or no-code solutions.
232
238
 
@@ -307,7 +313,9 @@ The following glossary is used to clarify certain concepts:
307
313
  - **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.
308
314
  - **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.
309
315
 
310
- _Note: This section is not complete dictionary, more list of general AI / LLM terms that has connection with Promptbook_
316
+ _Note: This section is not a complete dictionary, more list of general AI / LLM terms that has connection with Promptbook_
317
+
318
+
311
319
 
312
320
  ### 💯 Core concepts
313
321
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ptbk",
3
- "version": "0.94.0-14",
3
+ "version": "0.94.0-16",
4
4
  "description": "Promptbook: Run AI apps in plain human language across multiple models and platforms",
5
5
  "private": false,
6
6
  "sideEffects": false,
@@ -83,10 +83,10 @@
83
83
  "words": []
84
84
  },
85
85
  "peerDependencies": {
86
- "@promptbook/core": "0.94.0-14"
86
+ "@promptbook/core": "0.94.0-16"
87
87
  },
88
88
  "dependencies": {
89
- "promptbook": "0.94.0-14"
89
+ "promptbook": "0.94.0-16"
90
90
  },
91
91
  "bin": {
92
92
  "ptbk": "bin/promptbook-cli-proxy.js"