@promptbook/node 0.73.0 → 0.74.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.
Files changed (40) hide show
  1. package/README.md +176 -3
  2. package/esm/index.es.js +336 -382
  3. package/esm/index.es.js.map +1 -1
  4. package/esm/typings/src/_packages/anthropic-claude.index.d.ts +2 -2
  5. package/esm/typings/src/_packages/azure-openai.index.d.ts +2 -2
  6. package/esm/typings/src/_packages/browser.index.d.ts +2 -2
  7. package/esm/typings/src/_packages/cli.index.d.ts +2 -2
  8. package/esm/typings/src/_packages/core.index.d.ts +7 -3
  9. package/esm/typings/src/_packages/documents.index.d.ts +2 -2
  10. package/esm/typings/src/_packages/execute-javascript.index.d.ts +2 -2
  11. package/esm/typings/src/_packages/fake-llm.index.d.ts +2 -2
  12. package/esm/typings/src/_packages/langtail.index.d.ts +2 -2
  13. package/esm/typings/src/_packages/legacy-documents.index.d.ts +2 -2
  14. package/esm/typings/src/_packages/markdown-utils.index.d.ts +2 -2
  15. package/esm/typings/src/_packages/node.index.d.ts +2 -2
  16. package/esm/typings/src/_packages/openai.index.d.ts +2 -2
  17. package/esm/typings/src/_packages/pdf.index.d.ts +2 -2
  18. package/esm/typings/src/_packages/remote-client.index.d.ts +2 -2
  19. package/esm/typings/src/_packages/remote-server.index.d.ts +2 -2
  20. package/esm/typings/src/_packages/utils.index.d.ts +2 -2
  21. package/esm/typings/src/_packages/website-crawler.index.d.ts +2 -2
  22. package/esm/typings/src/cli/cli-commands/make.d.ts +0 -1
  23. package/esm/typings/src/cli/cli-commands/run.d.ts +14 -0
  24. package/esm/typings/src/cli/promptbookCli.d.ts +1 -0
  25. package/esm/typings/src/cli/test/ptbk.d.ts +5 -2
  26. package/esm/typings/src/commands/{PROMPTBOOK_VERSION/PromptbookVersionCommand.d.ts → BOOK_VERSION/BookVersionCommand.d.ts} +4 -4
  27. package/esm/typings/src/commands/BOOK_VERSION/bookVersionCommandParser.d.ts +9 -0
  28. package/esm/typings/src/commands/_common/types/CommandParser.d.ts +1 -1
  29. package/esm/typings/src/commands/index.d.ts +1 -1
  30. package/esm/typings/src/config.d.ts +6 -0
  31. package/esm/typings/src/storage/blackhole/BlackholeStorage.d.ts +33 -0
  32. package/esm/typings/src/storage/memory/MemoryStorage.d.ts +1 -1
  33. package/esm/typings/src/storage/{memory/utils → utils}/PrefixStorage.d.ts +1 -1
  34. package/esm/typings/src/version.d.ts +13 -2
  35. package/package.json +4 -2
  36. package/umd/index.umd.js +337 -382
  37. package/umd/index.umd.js.map +1 -1
  38. package/esm/typings/src/commands/PROMPTBOOK_VERSION/promptbookVersionCommandParser.d.ts +0 -9
  39. /package/esm/typings/src/commands/{PROMPTBOOK_VERSION/promptbookVersionCommand.test.d.ts → BOOK_VERSION/bookVersionCommand.test.d.ts} +0 -0
  40. /package/esm/typings/src/storage/{memory → local-storage}/utils/makePromptbookStorageFromWebStorage.d.ts +0 -0
package/README.md CHANGED
@@ -24,6 +24,10 @@ Build responsible, controlled and transparent applications on top of LLM models!
24
24
 
25
25
 
26
26
 
27
+ <blockquote style="color: #ff8811">
28
+ <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>.
29
+ </blockquote>
30
+
27
31
  ## 📦 Package `@promptbook/node`
28
32
 
29
33
  - Promptbooks are [divided into several](#-packages) packages, all are published from [single monorepo](https://github.com/webgptorg/promptbook).
@@ -72,12 +76,63 @@ In all of these situations, but especially in 3., the **✨ Promptbook can make
72
76
 
73
77
 
74
78
 
79
+
80
+
81
+
82
+ ## 💜 The Promptbook Project
83
+
84
+ Promptbook project is ecosystem of multiple projects and tools, following is a list of most important pieces of the project:
85
+
86
+ <table>
87
+ <thead>
88
+ <tr>
89
+ <th>Project</th>
90
+ <th>Description</th>
91
+ <th>Link</th>
92
+ </tr>
93
+ </thead>
94
+ <tbody>
95
+ <tr>
96
+ <td>Core</td>
97
+ <td>Promptbook core is a description and documentation of basic innerworkings how should be Promptbook implemented and defines which fetures must be descriable by book language</td>
98
+ <td rowspan=2>https://ptbk.io<br/>https://github.com/webgptorg/book</td>
99
+ </tr>
100
+ <tr>
101
+ <td>Book language</td>
102
+ <td>
103
+ Book is a markdown-like language to define core entities like projects, pipelines, knowledge,.... It is designed to be understandable by non-programmers and non-technical people
104
+ </td>
105
+ </tr>
106
+ <tr>
107
+ <td>Promptbook typescript project</td>
108
+ <td>Implementation of Promptbook in TypeScript published into multiple packages to NPM</td>
109
+ <td>https://github.com/webgptorg/promptbook + Multiple packages on NPM</td>
110
+ </tr>
111
+ <tr>
112
+ <td>Promptbook studio</td>
113
+ <td>No-code studio to write book without need to write even the markdown</td>
114
+ <td rowspan=2>https://promptbook.studio<br/>https://github.com/hejny/promptbook-studio</td>
115
+ </tr>
116
+ <tr>
117
+ <td>Promptbook miniapps</td>
118
+ <td>Builder of LLM miniapps from book notation</td>
119
+ </tr>
120
+ </tbody>
121
+ </table>
122
+
123
+
124
+
75
125
  ## 💙 Book language _(for prompt-engineer)_
76
126
 
77
- Promptbook [pipelines](https://github.com/webgptorg/promptbook/discussions/64) are written in markdown-like language called [Book](https://github.com/webgptorg/book). It is designed to be understandable by non-programmers and non-technical people.
78
127
 
79
128
 
80
129
 
130
+ ## 💙 The blueprint of book language
131
+
132
+ Following is the documentation and blueprint of the Book language.
133
+
134
+ ### Example
135
+
81
136
  ```markdown
82
137
  # 🌟 My first Book
83
138
 
@@ -93,6 +148,60 @@ Promptbook [pipelines](https://github.com/webgptorg/promptbook/discussions/64) a
93
148
  -> {article}
94
149
  ```
95
150
 
151
+ ### Goals and principles of book language
152
+
153
+ File is designed to be easy to read and write. It is strict subset of markdown. It is designed to be understandable by both humans and machines and without specific knowledge of the language.
154
+
155
+ It has file with `.ptbk.md` or `.book` extension with `UTF-8` non BOM encoding.
156
+
157
+ 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.
158
+
159
+ But unlike programming languages, it is designed to be understandable by non-programmers and non-technical people.
160
+
161
+ ### Structure
162
+
163
+ Book is divided into sections. Each section starts with heading. The language itself is not sensitive to the type of heading _(`h1`, `h2`, `h3`, ...)_ but it is recommended to use `h1` for header section and `h2` for other sections.
164
+
165
+ ### Header
166
+
167
+ Header is the first section of the book. It contains metadata about the pipeline. It is recommended to use `h1` heading for header section but it is not required.
168
+
169
+ ### Parameter
170
+
171
+ Foo bar
172
+
173
+ #### Parameter names
174
+
175
+ Reserved words:
176
+
177
+ - _each command_ like `PERSONA`, `EXPECT`, `KNOWLEDGE`, etc.
178
+ - `content`
179
+ - `context`
180
+ - `knowledge`
181
+ - `examples`
182
+ - `modelName`
183
+ - `currentDate`
184
+
185
+ #### Parameter notation
186
+
187
+ ### Template
188
+
189
+ Todo todo
190
+
191
+ ### Command
192
+
193
+ Todo todo
194
+
195
+ ### Block
196
+
197
+ Todo todo
198
+
199
+ ### Return parameter
200
+
201
+ ### Examples
202
+
203
+
204
+
96
205
  ## 📦 Packages _(for developers)_
97
206
 
98
207
  This library is divided into several packages, all are published from [single monorepo](https://github.com/webgptorg/promptbook).
@@ -131,11 +240,66 @@ Or you can install them separately:
131
240
 
132
241
 
133
242
 
243
+
244
+
245
+
134
246
  ## 📚 Dictionary
135
247
 
248
+
249
+
250
+
251
+
252
+
253
+ ### 📚 Dictionary
254
+
136
255
  The following glossary is used to clarify certain concepts:
137
256
 
138
- ### Core concepts
257
+ #### General LLM / AI terms
258
+
259
+ - **Prompt drift** is a phenomenon where the AI model starts to generate outputs that are not aligned with the original prompt. This can happen due to the model's training data, the prompt's wording, or the model's architecture.
260
+ - **Pipeline, workflow or chain** is a sequence of tasks that are executed in a specific order. In the context of AI, a pipeline can refer to a sequence of AI models that are used to process data.
261
+ - **Fine-tuning** is a process where a pre-trained AI model is further trained on a specific dataset to improve its performance on a specific task.
262
+ - **Zero-shot learning** is a machine learning paradigm where a model is trained to perform a task without any labeled examples. Instead, the model is provided with a description of the task and is expected to generate the correct output.
263
+ - **Few-shot learning** is a machine learning paradigm where a model is trained to perform a task with only a few labeled examples. This is in contrast to traditional machine learning, where models are trained on large datasets.
264
+ - **Meta-learning** is a machine learning paradigm where a model is trained on a variety of tasks and is able to learn new tasks with minimal additional training. This is achieved by learning a set of meta-parameters that can be quickly adapted to new tasks.
265
+ - **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.
266
+ - **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.
267
+
268
+
269
+
270
+ _Note: Thos section is not complete dictionary, more list of general AI / LLM terms that has connection with Promptbook_
271
+
272
+ #### Promptbook core
273
+
274
+ - **Organization** _(legacy name collection)_ group jobs, workforce, knowledge, instruments, and actions into one package. Entities in one organization can share resources (= import resources from each other).
275
+ - **Jobs**
276
+ - **Task**
277
+ - **Subtask**
278
+ - **Workforce**
279
+ - **Persona**
280
+ - **Team**
281
+ - **Role**
282
+ - **Knowledge**
283
+ - **Public**
284
+ - **Private**
285
+ - **Protected**
286
+ - **Instruments**
287
+ - **Actions**
288
+
289
+ #### Book language
290
+
291
+ - **Book file**
292
+ - **Section**
293
+ - **Heading**
294
+ - **Description**
295
+ - **Command**
296
+ - **Block**
297
+ - **Return statement**
298
+ - **Comment**
299
+ - **Import**
300
+ - **Scope**
301
+
302
+ #### 💯 Core concepts
139
303
 
140
304
  - [📚 Collection of pipelines](https://github.com/webgptorg/promptbook/discussions/65)
141
305
  - [📯 Pipeline](https://github.com/webgptorg/promptbook/discussions/64)
@@ -148,7 +312,7 @@ The following glossary is used to clarify certain concepts:
148
312
  - [🔣 Words not tokens](https://github.com/webgptorg/promptbook/discussions/29)
149
313
  - [☯ Separation of concerns](https://github.com/webgptorg/promptbook/discussions/32)
150
314
 
151
- ### Advanced concepts
315
+ ##### Advanced concepts
152
316
 
153
317
  - [📚 Knowledge (Retrieval-augmented generation)](https://github.com/webgptorg/promptbook/discussions/41)
154
318
  - [🌏 Remote server](https://github.com/webgptorg/promptbook/discussions/89)
@@ -163,6 +327,15 @@ The following glossary is used to clarify certain concepts:
163
327
  - [👮 Agent adversary expectations](https://github.com/webgptorg/promptbook/discussions/39)
164
328
  - [view more](https://github.com/webgptorg/promptbook/discussions/categories/concepts)
165
329
 
330
+
331
+
332
+ ### Terms specific to Promptbook TypeScript implementation
333
+
334
+ - Anonymous mode
335
+ - Application mode
336
+
337
+
338
+
166
339
  ## 🔌 Usage in Typescript / Javascript
167
340
 
168
341
  - [Simple usage](./examples/usage/simple-script)