@promptbook/core 0.81.0-19 → 0.81.0-22
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 +750 -733
- 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 +751 -734
- 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
|
@@ -130,11 +130,38 @@ Promptbook project is ecosystem of multiple projects and tools, following is a l
|
|
|
130
130
|
</tbody>
|
|
131
131
|
</table>
|
|
132
132
|
|
|
133
|
-
|
|
133
|
+
We also have a community of developers and users of **Promptbook**:
|
|
134
134
|
|
|
135
|
-
- [Discord](https://discord.gg/x3QWNaa89N)
|
|
136
|
-
- [Landing page](https://ptbk.io)
|
|
135
|
+
- [Discord community](https://discord.gg/x3QWNaa89N)
|
|
136
|
+
- [Landing page `ptbk.io`](https://ptbk.io)
|
|
137
137
|
- [Github discussions](https://github.com/webgptorg/promptbook/discussions)
|
|
138
|
+
- [LinkedIn `Promptbook`](https://linkedin.com/company/promptbook)
|
|
139
|
+
- [Facebook `Promptbook`](https://www.facebook.com/61560776453536)
|
|
140
|
+
|
|
141
|
+
And **Promptbook.studio** branded socials:
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
- [Instagram `@promptbook.studio`](https://www.instagram.com/promptbook.studio/)
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
And **Promptujeme** sub-brand:
|
|
150
|
+
|
|
151
|
+
*/Subbrand for Czech clients/*
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
- [Promptujeme.cz](https://www.promptujeme.cz/)
|
|
156
|
+
- [Facebook `Promptujeme`](https://www.facebook.com/promptujeme/)
|
|
157
|
+
|
|
158
|
+
|
|
159
|
+
And **Promptbook.city** branded socials:
|
|
160
|
+
|
|
161
|
+
*/Sub-brand for images and graphics generated via Promptbook prompting/*
|
|
162
|
+
|
|
163
|
+
- [Instagram `@promptbook.city`](https://www.instagram.com/promptbook.city/)
|
|
164
|
+
- [Facebook `Promptbook City`](https://www.facebook.com/61565718625569)
|
|
138
165
|
|
|
139
166
|
|
|
140
167
|
|
|
@@ -268,6 +295,11 @@ Or you can install them separately:
|
|
|
268
295
|
|
|
269
296
|
## 📚 Dictionary
|
|
270
297
|
|
|
298
|
+
|
|
299
|
+
|
|
300
|
+
|
|
301
|
+
|
|
302
|
+
|
|
271
303
|
### 📚 Dictionary
|
|
272
304
|
|
|
273
305
|
The following glossary is used to clarify certain concepts:
|
|
@@ -283,6 +315,8 @@ The following glossary is used to clarify certain concepts:
|
|
|
283
315
|
- **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.
|
|
284
316
|
- **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.
|
|
285
317
|
|
|
318
|
+
|
|
319
|
+
|
|
286
320
|
_Note: Thos section is not complete dictionary, more list of general AI / LLM terms that has connection with Promptbook_
|
|
287
321
|
|
|
288
322
|
#### Promptbook core
|
|
@@ -343,6 +377,8 @@ _Note: Thos section is not complete dictionary, more list of general AI / LLM te
|
|
|
343
377
|
- [👮 Agent adversary expectations](https://github.com/webgptorg/promptbook/discussions/39)
|
|
344
378
|
- [view more](https://github.com/webgptorg/promptbook/discussions/categories/concepts)
|
|
345
379
|
|
|
380
|
+
|
|
381
|
+
|
|
346
382
|
### Terms specific to Promptbook TypeScript implementation
|
|
347
383
|
|
|
348
384
|
- Anonymous mode
|