@promptbook/types 0.94.0-13 → 0.94.0-14

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 CHANGED
@@ -85,8 +85,6 @@ Rest of the documentation is common for **entire promptbook ecosystem**:
85
85
 
86
86
  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**!
87
87
 
88
-
89
-
90
88
  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!
91
89
 
92
90
  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.
@@ -199,7 +197,7 @@ Join our growing community of developers and users:
199
197
  <td><a href="https://www.instagram.com/promptbook.studio/">📸 Instagram @promptbook.studio</a></td>
200
198
  <td>Visual updates, UI showcases, and design inspiration</td>
201
199
  </tr>
202
-
200
+
203
201
  </tbody>
204
202
  </table>
205
203
 
@@ -212,9 +210,6 @@ Join our growing community of developers and users:
212
210
 
213
211
  _A concise, Markdown-based DSL for crafting AI workflows and automations._
214
212
 
215
-
216
-
217
-
218
213
  ### Introduction
219
214
 
220
215
  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.
@@ -264,8 +259,6 @@ Personas can have access to different knowledge, tools and actions. They can als
264
259
 
265
260
  - [PERSONA](https://github.com/webgptorg/promptbook/blob/main/documents/commands/PERSONA.md)
266
261
 
267
-
268
-
269
262
  ### **3. How:** Knowledge, Instruments and Actions
270
263
 
271
264
  The resources used by the personas are used to do the work.
@@ -365,8 +358,6 @@ The following glossary is used to clarify certain concepts:
365
358
 
366
359
  _Note: This section is not complete dictionary, more list of general AI / LLM terms that has connection with Promptbook_
367
360
 
368
-
369
-
370
361
  ### 💯 Core concepts
371
362
 
372
363
  - [📚 Collection of pipelines](https://github.com/webgptorg/promptbook/discussions/65)
@@ -15,7 +15,7 @@ export declare const BOOK_LANGUAGE_VERSION: string_semantic_version;
15
15
  export declare const PROMPTBOOK_ENGINE_VERSION: string_promptbook_version;
16
16
  /**
17
17
  * Represents the version string of the Promptbook engine.
18
- * It follows semantic versioning (e.g., `0.94.0-12`).
18
+ * It follows semantic versioning (e.g., `0.94.0-13`).
19
19
  *
20
20
  * @generated
21
21
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promptbook/types",
3
- "version": "0.94.0-13",
3
+ "version": "0.94.0-14",
4
4
  "description": "Promptbook: Run AI apps in plain human language across multiple models and platforms",
5
5
  "private": false,
6
6
  "sideEffects": false,
@@ -84,6 +84,6 @@
84
84
  },
85
85
  "typings": "./esm/typings/src/_packages/types.index.d.ts",
86
86
  "peerDependencies": {
87
- "@promptbook/core": "0.94.0-13"
87
+ "@promptbook/core": "0.94.0-14"
88
88
  }
89
89
  }