ptbk 0.89.0-2 → 0.89.0-20
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 +10 -6
- package/package.json +7 -3
package/README.md
CHANGED
|
@@ -176,7 +176,7 @@ Each part of the book defines one of 3 circles:
|
|
|
176
176
|
|
|
177
177
|
### **What:** Workflows, Tasks and Parameters
|
|
178
178
|
|
|
179
|
-
What work needs to be done. Each book defines a workflow, which is one or more tasks. Each workflow has a fixed input and output. For example, you have a book that generates an article from a topic. Once it generates an article about AI, once about marketing, once about cooking. The workflow (= your AI program) is the same, only the input and output change.
|
|
179
|
+
What work needs to be done. Each book defines a [workflow *(scenario or pipeline)*](https://github.com/webgptorg/promptbook/discussions/88), which is one or more tasks. Each workflow has a fixed input and output. For example, you have a book that generates an article from a topic. Once it generates an article about AI, once about marketing, once about cooking. The workflow (= your AI program) is the same, only the input and output change.
|
|
180
180
|
|
|
181
181
|
**Related commands:**
|
|
182
182
|
|
|
@@ -220,6 +220,10 @@ But unlike programming languages, it is designed to be understandable by non-pro
|
|
|
220
220
|
|
|
221
221
|
|
|
222
222
|
|
|
223
|
+
## 🔒 Security
|
|
224
|
+
|
|
225
|
+
For information on reporting security vulnerabilities, see our [Security Policy](./SECURITY.md).
|
|
226
|
+
|
|
223
227
|
## 📦 Packages _(for developers)_
|
|
224
228
|
|
|
225
229
|
This library is divided into several packages, all are published from [single monorepo](https://github.com/webgptorg/promptbook).
|
|
@@ -276,7 +280,7 @@ The following glossary is used to clarify certain concepts:
|
|
|
276
280
|
### General LLM / AI terms
|
|
277
281
|
|
|
278
282
|
- **Prompt drift** is a phenomenon where the AI model starts to generate outputs that are not aligned with the original prompt. This can happen due to the model's training data, the prompt's wording, or the model's architecture.
|
|
279
|
-
- **Pipeline, workflow or chain** is a sequence of tasks that are executed in a specific order. In the context of AI, a pipeline can refer to a sequence of AI models that are used to process data.
|
|
283
|
+
- [**Pipeline, workflow scenario or chain** is a sequence of tasks that are executed in a specific order. In the context of AI, a pipeline can refer to a sequence of AI models that are used to process data.](https://github.com/webgptorg/promptbook/discussions/88)
|
|
280
284
|
- **Fine-tuning** is a process where a pre-trained AI model is further trained on a specific dataset to improve its performance on a specific task.
|
|
281
285
|
- **Zero-shot learning** is a machine learning paradigm where a model is trained to perform a task without any labeled examples. Instead, the model is provided with a description of the task and is expected to generate the correct output.
|
|
282
286
|
- **Few-shot learning** is a machine learning paradigm where a model is trained to perform a task with only a few labeled examples. This is in contrast to traditional machine learning, where models are trained on large datasets.
|
|
@@ -284,8 +288,6 @@ The following glossary is used to clarify certain concepts:
|
|
|
284
288
|
- **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.
|
|
285
289
|
- **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.
|
|
286
290
|
|
|
287
|
-
|
|
288
|
-
|
|
289
291
|
_Note: This section is not complete dictionary, more list of general AI / LLM terms that has connection with Promptbook_
|
|
290
292
|
|
|
291
293
|
|
|
@@ -399,6 +401,8 @@ See [TODO.md](./TODO.md)
|
|
|
399
401
|
|
|
400
402
|
## 🖋️ Contributing
|
|
401
403
|
|
|
402
|
-
We are open to pull requests, feedback, and suggestions.
|
|
404
|
+
You can also ⭐ star the project, [follow us on GitHub](https://github.com/hejny) or [various other social networks](https://www.pavolhejny.com/contact/).We are open to [pull requests, feedback, and suggestions](./CONTRIBUTING.md).
|
|
405
|
+
|
|
406
|
+
## 📞 Support
|
|
403
407
|
|
|
404
|
-
|
|
408
|
+
If you need help or have questions, please check our [Support Resources](./SUPPORT.md).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ptbk",
|
|
3
|
-
"version": "0.89.0-
|
|
3
|
+
"version": "0.89.0-20",
|
|
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,
|
|
@@ -43,11 +43,15 @@
|
|
|
43
43
|
"url": "https://github.com/webgptorg/promptbook/issues"
|
|
44
44
|
},
|
|
45
45
|
"homepage": "https://ptbk.io/",
|
|
46
|
+
"engines": {
|
|
47
|
+
"node": ">=16.0.0",
|
|
48
|
+
"npm": ">=8.0.0"
|
|
49
|
+
},
|
|
46
50
|
"peerDependencies": {
|
|
47
|
-
"@promptbook/core": "0.89.0-
|
|
51
|
+
"@promptbook/core": "0.89.0-20"
|
|
48
52
|
},
|
|
49
53
|
"dependencies": {
|
|
50
|
-
"promptbook": "0.89.0-
|
|
54
|
+
"promptbook": "0.89.0-20"
|
|
51
55
|
},
|
|
52
56
|
"bin": {
|
|
53
57
|
"ptbk": "bin/promptbook-cli-proxy.js"
|