@promptbook/cli 0.81.0-19 → 0.81.0-21
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 +39 -3
- package/esm/index.es.js +578 -536
- package/esm/index.es.js.map +1 -1
- package/esm/typings/books/index.d.ts +38 -0
- package/esm/typings/src/_packages/core.index.d.ts +4 -4
- package/esm/typings/src/config.d.ts +1 -1
- package/esm/typings/src/conversion/compilePipeline.d.ts +1 -4
- package/esm/typings/src/conversion/{precompilePipeline.d.ts → parsePipeline.d.ts} +2 -2
- package/esm/typings/src/high-level-abstractions/_common/HighLevelAbstraction.d.ts +1 -1
- package/esm/typings/src/high-level-abstractions/index.d.ts +1 -1
- package/esm/typings/src/pipeline/book-notation.d.ts +2 -2
- package/esm/typings/src/prepare/isPipelinePrepared.d.ts +2 -0
- package/esm/typings/src/prepare/preparePipeline.d.ts +2 -0
- package/esm/typings/src/scrapers/_common/Converter.d.ts +1 -0
- package/esm/typings/src/scrapers/_common/Scraper.d.ts +1 -1
- package/esm/typings/src/scrapers/_common/ScraperIntermediateSource.d.ts +3 -0
- package/esm/typings/src/scrapers/_common/register/ScraperAndConverterMetadata.d.ts +2 -0
- package/esm/typings/src/scrapers/pdf/PdfScraper.d.ts +1 -0
- package/esm/typings/src/scrapers/pdf/createPdfScraper.d.ts +1 -1
- package/esm/typings/src/scrapers/pdf/register-metadata.d.ts +1 -1
- package/esm/typings/src/scrapers/website/createWebsiteScraper.d.ts +1 -1
- package/esm/typings/src/scrapers/website/register-metadata.d.ts +1 -1
- package/esm/typings/src/utils/markdown/flattenMarkdown.d.ts +1 -1
- package/esm/typings/src/utils/organization/$sideEffect.d.ts +9 -0
- package/esm/typings/src/wizzard/wizzard.d.ts +23 -11
- package/package.json +1 -1
- package/umd/index.umd.js +578 -536
- package/umd/index.umd.js.map +1 -1
- /package/esm/typings/src/conversion/{precompilePipeline.test.d.ts → parsePipeline.test.d.ts} +0 -0
package/README.md
CHANGED
|
@@ -183,11 +183,38 @@ Promptbook project is ecosystem of multiple projects and tools, following is a l
|
|
|
183
183
|
</tbody>
|
|
184
184
|
</table>
|
|
185
185
|
|
|
186
|
-
|
|
186
|
+
We also have a community of developers and users of **Promptbook**:
|
|
187
187
|
|
|
188
|
-
- [Discord](https://discord.gg/x3QWNaa89N)
|
|
189
|
-
- [Landing page](https://ptbk.io)
|
|
188
|
+
- [Discord community](https://discord.gg/x3QWNaa89N)
|
|
189
|
+
- [Landing page `ptbk.io`](https://ptbk.io)
|
|
190
190
|
- [Github discussions](https://github.com/webgptorg/promptbook/discussions)
|
|
191
|
+
- [LinkedIn `Promptbook`](https://linkedin.com/company/promptbook)
|
|
192
|
+
- [Facebook `Promptbook`](https://www.facebook.com/61560776453536)
|
|
193
|
+
|
|
194
|
+
And **Promptbook.studio** branded socials:
|
|
195
|
+
|
|
196
|
+
|
|
197
|
+
|
|
198
|
+
- [Instagram `@promptbook.studio`](https://www.instagram.com/promptbook.studio/)
|
|
199
|
+
|
|
200
|
+
|
|
201
|
+
|
|
202
|
+
And **Promptujeme** sub-brand:
|
|
203
|
+
|
|
204
|
+
*/Subbrand for Czech clients/*
|
|
205
|
+
|
|
206
|
+
|
|
207
|
+
|
|
208
|
+
- [Promptujeme.cz](https://www.promptujeme.cz/)
|
|
209
|
+
- [Facebook `Promptujeme`](https://www.facebook.com/promptujeme/)
|
|
210
|
+
|
|
211
|
+
|
|
212
|
+
And **Promptbook.city** branded socials:
|
|
213
|
+
|
|
214
|
+
*/Sub-brand for images and graphics generated via Promptbook prompting/*
|
|
215
|
+
|
|
216
|
+
- [Instagram `@promptbook.city`](https://www.instagram.com/promptbook.city/)
|
|
217
|
+
- [Facebook `Promptbook City`](https://www.facebook.com/61565718625569)
|
|
191
218
|
|
|
192
219
|
|
|
193
220
|
|
|
@@ -321,6 +348,11 @@ Or you can install them separately:
|
|
|
321
348
|
|
|
322
349
|
## 📚 Dictionary
|
|
323
350
|
|
|
351
|
+
|
|
352
|
+
|
|
353
|
+
|
|
354
|
+
|
|
355
|
+
|
|
324
356
|
### 📚 Dictionary
|
|
325
357
|
|
|
326
358
|
The following glossary is used to clarify certain concepts:
|
|
@@ -336,6 +368,8 @@ The following glossary is used to clarify certain concepts:
|
|
|
336
368
|
- **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.
|
|
337
369
|
- **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.
|
|
338
370
|
|
|
371
|
+
|
|
372
|
+
|
|
339
373
|
_Note: Thos section is not complete dictionary, more list of general AI / LLM terms that has connection with Promptbook_
|
|
340
374
|
|
|
341
375
|
#### Promptbook core
|
|
@@ -396,6 +430,8 @@ _Note: Thos section is not complete dictionary, more list of general AI / LLM te
|
|
|
396
430
|
- [👮 Agent adversary expectations](https://github.com/webgptorg/promptbook/discussions/39)
|
|
397
431
|
- [view more](https://github.com/webgptorg/promptbook/discussions/categories/concepts)
|
|
398
432
|
|
|
433
|
+
|
|
434
|
+
|
|
399
435
|
### Terms specific to Promptbook TypeScript implementation
|
|
400
436
|
|
|
401
437
|
- Anonymous mode
|