promptbook 0.74.0-7 → 0.74.0

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 (2) hide show
  1. package/README.md +3 -11
  2. package/package.json +21 -21
package/README.md CHANGED
@@ -18,7 +18,8 @@ Build responsible, controlled and transparent applications on top of LLM models!
18
18
 
19
19
  ## ✨ New Features
20
20
 
21
- - 💙 Working on [the **Book** language v1](https://github.com/webgptorg/book)
21
+ - 💙 Working [the **Book** language v1.0.0](https://github.com/webgptorg/book)
22
+ - 🖤 Run books from CLI - `npx ptbk run path/to/your/book`
22
23
  - 📚 Support of `.docx`, `.doc` and `.pdf` documents
23
24
  - ✨ **Support of [OpenAI o1 model](https://openai.com/o1/)**
24
25
 
@@ -124,7 +125,7 @@ Following is the documentation and blueprint of the Book language.
124
125
 
125
126
  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.
126
127
 
127
- It has file with `.ptbk.md` or `.book` extension with `UTF-8` non BOM encoding.
128
+ It has file with `.book.md` or `.book` extension with `UTF-8` non BOM encoding.
128
129
 
129
130
  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.
130
131
 
@@ -217,11 +218,6 @@ Or you can install them separately:
217
218
 
218
219
  ## 📚 Dictionary
219
220
 
220
-
221
-
222
-
223
-
224
-
225
221
  ### 📚 Dictionary
226
222
 
227
223
  The following glossary is used to clarify certain concepts:
@@ -237,8 +233,6 @@ The following glossary is used to clarify certain concepts:
237
233
  - **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.
238
234
  - **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.
239
235
 
240
-
241
-
242
236
  _Note: Thos section is not complete dictionary, more list of general AI / LLM terms that has connection with Promptbook_
243
237
 
244
238
  #### Promptbook core
@@ -299,8 +293,6 @@ _Note: Thos section is not complete dictionary, more list of general AI / LLM te
299
293
  - [👮 Agent adversary expectations](https://github.com/webgptorg/promptbook/discussions/39)
300
294
  - [view more](https://github.com/webgptorg/promptbook/discussions/categories/concepts)
301
295
 
302
-
303
-
304
296
  ### Terms specific to Promptbook TypeScript implementation
305
297
 
306
298
  - Anonymous mode
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "promptbook",
3
- "version": "0.74.0-7",
3
+ "version": "0.74.0",
4
4
  "description": "Supercharge your use of large language models",
5
5
  "private": false,
6
6
  "sideEffects": false,
@@ -50,27 +50,27 @@
50
50
  }
51
51
  ],
52
52
  "peerDependencies": {
53
- "@promptbook/core": "0.74.0-7"
53
+ "@promptbook/core": "0.74.0"
54
54
  },
55
55
  "dependencies": {
56
- "@promptbook/anthropic-claude": "0.74.0-7",
57
- "@promptbook/azure-openai": "0.74.0-7",
58
- "@promptbook/browser": "0.74.0-7",
59
- "@promptbook/cli": "0.74.0-7",
60
- "@promptbook/core": "0.74.0-7",
61
- "@promptbook/documents": "0.74.0-7",
62
- "@promptbook/execute-javascript": "0.74.0-7",
63
- "@promptbook/fake-llm": "0.74.0-7",
64
- "@promptbook/langtail": "0.74.0-7",
65
- "@promptbook/legacy-documents": "0.74.0-7",
66
- "@promptbook/markdown-utils": "0.74.0-7",
67
- "@promptbook/node": "0.74.0-7",
68
- "@promptbook/openai": "0.74.0-7",
69
- "@promptbook/pdf": "0.74.0-7",
70
- "@promptbook/remote-client": "0.74.0-7",
71
- "@promptbook/remote-server": "0.74.0-7",
72
- "@promptbook/types": "0.74.0-7",
73
- "@promptbook/utils": "0.74.0-7",
74
- "@promptbook/website-crawler": "0.74.0-7"
56
+ "@promptbook/anthropic-claude": "0.74.0",
57
+ "@promptbook/azure-openai": "0.74.0",
58
+ "@promptbook/browser": "0.74.0",
59
+ "@promptbook/cli": "0.74.0",
60
+ "@promptbook/core": "0.74.0",
61
+ "@promptbook/documents": "0.74.0",
62
+ "@promptbook/execute-javascript": "0.74.0",
63
+ "@promptbook/fake-llm": "0.74.0",
64
+ "@promptbook/langtail": "0.74.0",
65
+ "@promptbook/legacy-documents": "0.74.0",
66
+ "@promptbook/markdown-utils": "0.74.0",
67
+ "@promptbook/node": "0.74.0",
68
+ "@promptbook/openai": "0.74.0",
69
+ "@promptbook/pdf": "0.74.0",
70
+ "@promptbook/remote-client": "0.74.0",
71
+ "@promptbook/remote-server": "0.74.0",
72
+ "@promptbook/types": "0.74.0",
73
+ "@promptbook/utils": "0.74.0",
74
+ "@promptbook/website-crawler": "0.74.0"
75
75
  }
76
76
  }