@promptbook/types 0.95.0 → 0.98.0-2
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 +12 -0
- package/esm/typings/src/version.d.ts +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -25,6 +25,10 @@ Write AI applications using plain human language across multiple models and plat
|
|
|
25
25
|
|
|
26
26
|
|
|
27
27
|
|
|
28
|
+
<blockquote style="color: #ff8811">
|
|
29
|
+
<b>⚠ Warning:</b> This is a pre-release version of the library. It is not yet ready for production use. Please look at <a href="https://www.npmjs.com/package/@promptbook/core?activeTab=versions">latest stable release</a>.
|
|
30
|
+
</blockquote>
|
|
31
|
+
|
|
28
32
|
## 📦 Package `@promptbook/types`
|
|
29
33
|
|
|
30
34
|
- Promptbooks are [divided into several](#-packages) packages, all are published from [single monorepo](https://github.com/webgptorg/promptbook).
|
|
@@ -81,6 +85,8 @@ Rest of the documentation is common for **entire promptbook ecosystem**:
|
|
|
81
85
|
|
|
82
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**!
|
|
83
87
|
|
|
88
|
+
|
|
89
|
+
|
|
84
90
|
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!
|
|
85
91
|
|
|
86
92
|
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.
|
|
@@ -206,6 +212,8 @@ Join our growing community of developers and users:
|
|
|
206
212
|
|
|
207
213
|
_A concise, Markdown-based DSL for crafting AI workflows and automations._
|
|
208
214
|
|
|
215
|
+
|
|
216
|
+
|
|
209
217
|
### Introduction
|
|
210
218
|
|
|
211
219
|
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.
|
|
@@ -255,6 +263,8 @@ Personas can have access to different knowledge, tools and actions. They can als
|
|
|
255
263
|
|
|
256
264
|
- [PERSONA](https://github.com/webgptorg/promptbook/blob/main/documents/commands/PERSONA.md)
|
|
257
265
|
|
|
266
|
+
|
|
267
|
+
|
|
258
268
|
### **3. How:** Knowledge, Instruments and Actions
|
|
259
269
|
|
|
260
270
|
The resources used by the personas are used to do the work.
|
|
@@ -354,6 +364,8 @@ The following glossary is used to clarify certain concepts:
|
|
|
354
364
|
|
|
355
365
|
_Note: This section is not a complete dictionary, more list of general AI / LLM terms that has connection with Promptbook_
|
|
356
366
|
|
|
367
|
+
|
|
368
|
+
|
|
357
369
|
### 💯 Core concepts
|
|
358
370
|
|
|
359
371
|
- [📚 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.
|
|
18
|
+
* It follows semantic versioning (e.g., `0.98.0-1`).
|
|
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.
|
|
3
|
+
"version": "0.98.0-2",
|
|
4
4
|
"description": "Promptbook: Run AI apps in plain human language across multiple models and platforms",
|
|
5
5
|
"private": false,
|
|
6
6
|
"sideEffects": false,
|
|
@@ -72,6 +72,6 @@
|
|
|
72
72
|
},
|
|
73
73
|
"typings": "./esm/typings/src/_packages/types.index.d.ts",
|
|
74
74
|
"peerDependencies": {
|
|
75
|
-
"@promptbook/core": "0.
|
|
75
|
+
"@promptbook/core": "0.98.0-2"
|
|
76
76
|
}
|
|
77
77
|
}
|