@promptbook/openai 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
|
@@ -261,6 +261,8 @@ Rest of the documentation is common for **entire promptbook ecosystem**:
|
|
|
261
261
|
|
|
262
262
|
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**!
|
|
263
263
|
|
|
264
|
+
|
|
265
|
+
|
|
264
266
|
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!
|
|
265
267
|
|
|
266
268
|
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.
|
|
@@ -323,22 +325,29 @@ Hello world examples:
|
|
|
323
325
|
- [Hello world in Node.js](https://github.com/webgptorg/hello-world-node-js)
|
|
324
326
|
- [Hello world in Next.js](https://github.com/webgptorg/hello-world-next-js)
|
|
325
327
|
|
|
328
|
+
|
|
329
|
+
|
|
326
330
|
We also have a community of developers and users of **Promptbook**:
|
|
327
331
|
|
|
328
332
|
- [Discord community](https://discord.gg/x3QWNaa89N)
|
|
329
333
|
- [Landing page `ptbk.io`](https://ptbk.io)
|
|
330
334
|
- [Github discussions](https://github.com/webgptorg/promptbook/discussions)
|
|
331
335
|
- [LinkedIn `Promptbook`](https://linkedin.com/company/promptbook)
|
|
332
|
-
- [Facebook `Promptbook`](https://www.facebook.com/61560776453536)
|
|
336
|
+
- [Facebook `Promptbook`](https://www.facebook.com/61560776453536)
|
|
333
337
|
|
|
334
338
|
And **Promptbook.studio** branded socials:
|
|
335
339
|
|
|
340
|
+
|
|
341
|
+
|
|
336
342
|
- [Instagram `@promptbook.studio`](https://www.instagram.com/promptbook.studio/)
|
|
337
343
|
|
|
338
344
|
And **Promptujeme** sub-brand:
|
|
339
345
|
|
|
340
346
|
_/Subbrand for Czech clients/_
|
|
341
347
|
|
|
348
|
+
|
|
349
|
+
|
|
350
|
+
|
|
342
351
|
- [Promptujeme.cz](https://www.promptujeme.cz/)
|
|
343
352
|
- [Facebook `Promptujeme`](https://www.facebook.com/promptujeme/)
|
|
344
353
|
|
|
@@ -356,6 +365,8 @@ _/Sub-brand for images and graphics generated via Promptbook prompting/_
|
|
|
356
365
|
|
|
357
366
|
## 💙 The Book language
|
|
358
367
|
|
|
368
|
+
|
|
369
|
+
|
|
359
370
|
Following is the documentation and blueprint of the [Book language](https://github.com/webgptorg/book).
|
|
360
371
|
|
|
361
372
|
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.
|
|
@@ -405,6 +416,8 @@ Personas can have access to different knowledge, tools and actions. They can als
|
|
|
405
416
|
|
|
406
417
|
- [PERSONA](https://github.com/webgptorg/promptbook/blob/main/documents/commands/PERSONA.md)
|
|
407
418
|
|
|
419
|
+
|
|
420
|
+
|
|
408
421
|
### **How:** Knowledge, Instruments and Actions
|
|
409
422
|
|
|
410
423
|
The resources used by the personas are used to do the work.
|
|
@@ -493,8 +506,12 @@ The following glossary is used to clarify certain concepts:
|
|
|
493
506
|
- **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.
|
|
494
507
|
- **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.
|
|
495
508
|
|
|
509
|
+
|
|
510
|
+
|
|
496
511
|
_Note: This section is not complete dictionary, more list of general AI / LLM terms that has connection with Promptbook_
|
|
497
512
|
|
|
513
|
+
|
|
514
|
+
|
|
498
515
|
### 💯 Core concepts
|
|
499
516
|
|
|
500
517
|
- [📚 Collection of pipelines](https://github.com/webgptorg/promptbook/discussions/65)
|
package/esm/index.es.js
CHANGED
|
@@ -16,7 +16,7 @@ const BOOK_LANGUAGE_VERSION = '1.0.0';
|
|
|
16
16
|
* @generated
|
|
17
17
|
* @see https://github.com/webgptorg/promptbook
|
|
18
18
|
*/
|
|
19
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.88.0-
|
|
19
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.88.0-11';
|
|
20
20
|
/**
|
|
21
21
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
22
22
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@promptbook/openai",
|
|
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/openai.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
|
"colors": "1.4.0",
|
package/umd/index.umd.js
CHANGED
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
* @generated
|
|
25
25
|
* @see https://github.com/webgptorg/promptbook
|
|
26
26
|
*/
|
|
27
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.88.0-
|
|
27
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.88.0-11';
|
|
28
28
|
/**
|
|
29
29
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
30
30
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|