@promptbook/google 0.88.0-10 → 0.88.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.
- package/README.md +18 -1
- package/esm/index.es.js +1 -1
- package/package.json +2 -2
- package/umd/index.umd.js +1 -1
package/README.md
CHANGED
|
@@ -251,6 +251,8 @@ Rest of the documentation is common for **entire promptbook ecosystem**:
|
|
|
251
251
|
|
|
252
252
|
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**!
|
|
253
253
|
|
|
254
|
+
|
|
255
|
+
|
|
254
256
|
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!
|
|
255
257
|
|
|
256
258
|
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.
|
|
@@ -313,22 +315,29 @@ Hello world examples:
|
|
|
313
315
|
- [Hello world in Node.js](https://github.com/webgptorg/hello-world-node-js)
|
|
314
316
|
- [Hello world in Next.js](https://github.com/webgptorg/hello-world-next-js)
|
|
315
317
|
|
|
318
|
+
|
|
319
|
+
|
|
316
320
|
We also have a community of developers and users of **Promptbook**:
|
|
317
321
|
|
|
318
322
|
- [Discord community](https://discord.gg/x3QWNaa89N)
|
|
319
323
|
- [Landing page `ptbk.io`](https://ptbk.io)
|
|
320
324
|
- [Github discussions](https://github.com/webgptorg/promptbook/discussions)
|
|
321
325
|
- [LinkedIn `Promptbook`](https://linkedin.com/company/promptbook)
|
|
322
|
-
- [Facebook `Promptbook`](https://www.facebook.com/61560776453536)
|
|
326
|
+
- [Facebook `Promptbook`](https://www.facebook.com/61560776453536)
|
|
323
327
|
|
|
324
328
|
And **Promptbook.studio** branded socials:
|
|
325
329
|
|
|
330
|
+
|
|
331
|
+
|
|
326
332
|
- [Instagram `@promptbook.studio`](https://www.instagram.com/promptbook.studio/)
|
|
327
333
|
|
|
328
334
|
And **Promptujeme** sub-brand:
|
|
329
335
|
|
|
330
336
|
_/Subbrand for Czech clients/_
|
|
331
337
|
|
|
338
|
+
|
|
339
|
+
|
|
340
|
+
|
|
332
341
|
- [Promptujeme.cz](https://www.promptujeme.cz/)
|
|
333
342
|
- [Facebook `Promptujeme`](https://www.facebook.com/promptujeme/)
|
|
334
343
|
|
|
@@ -346,6 +355,8 @@ _/Sub-brand for images and graphics generated via Promptbook prompting/_
|
|
|
346
355
|
|
|
347
356
|
## 💙 The Book language
|
|
348
357
|
|
|
358
|
+
|
|
359
|
+
|
|
349
360
|
Following is the documentation and blueprint of the [Book language](https://github.com/webgptorg/book).
|
|
350
361
|
|
|
351
362
|
Book is a language that can be used to write AI applications, agents, workflows, automations, knowledgebases, translators, sheet processors, email automations and more. It allows you to harness the power of AI models in human-like terms, without the need to know the specifics and technicalities of the models.
|
|
@@ -395,6 +406,8 @@ Personas can have access to different knowledge, tools and actions. They can als
|
|
|
395
406
|
|
|
396
407
|
- [PERSONA](https://github.com/webgptorg/promptbook/blob/main/documents/commands/PERSONA.md)
|
|
397
408
|
|
|
409
|
+
|
|
410
|
+
|
|
398
411
|
### **How:** Knowledge, Instruments and Actions
|
|
399
412
|
|
|
400
413
|
The resources used by the personas are used to do the work.
|
|
@@ -483,8 +496,12 @@ The following glossary is used to clarify certain concepts:
|
|
|
483
496
|
- **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.
|
|
484
497
|
- **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.
|
|
485
498
|
|
|
499
|
+
|
|
500
|
+
|
|
486
501
|
_Note: This section is not complete dictionary, more list of general AI / LLM terms that has connection with Promptbook_
|
|
487
502
|
|
|
503
|
+
|
|
504
|
+
|
|
488
505
|
### 💯 Core concepts
|
|
489
506
|
|
|
490
507
|
- [📚 Collection of pipelines](https://github.com/webgptorg/promptbook/discussions/65)
|
package/esm/index.es.js
CHANGED
|
@@ -15,7 +15,7 @@ const BOOK_LANGUAGE_VERSION = '1.0.0';
|
|
|
15
15
|
* @generated
|
|
16
16
|
* @see https://github.com/webgptorg/promptbook
|
|
17
17
|
*/
|
|
18
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.88.0-
|
|
18
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.88.0-11';
|
|
19
19
|
/**
|
|
20
20
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
21
21
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@promptbook/google",
|
|
3
|
-
"version": "0.88.0-
|
|
3
|
+
"version": "0.88.0-11",
|
|
4
4
|
"description": "It's time for a paradigm shift. The future of software in plain English, French or Latin",
|
|
5
5
|
"private": false,
|
|
6
6
|
"sideEffects": false,
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"module": "./esm/index.es.js",
|
|
48
48
|
"typings": "./esm/typings/src/_packages/google.index.d.ts",
|
|
49
49
|
"peerDependencies": {
|
|
50
|
-
"@promptbook/core": "0.88.0-
|
|
50
|
+
"@promptbook/core": "0.88.0-11"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
53
|
"@ai-sdk/google": "1.0.5",
|
package/umd/index.umd.js
CHANGED
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
* @generated
|
|
24
24
|
* @see https://github.com/webgptorg/promptbook
|
|
25
25
|
*/
|
|
26
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.88.0-
|
|
26
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.88.0-11';
|
|
27
27
|
/**
|
|
28
28
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
29
29
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|