@promptbook/types 0.68.0 β 0.68.2
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 +5 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -71,7 +71,7 @@ But often you will struggle with the limitations of LLMs, such as hallucinations
|
|
|
71
71
|
|
|
72
72
|
1. **Fine-tune** the model to your specifications or even train your own.
|
|
73
73
|
2. **Prompt-engineer** the prompt to the best shape you can achieve.
|
|
74
|
-
3.
|
|
74
|
+
3. Orchestrate **multiple prompts** in a [pipeline](https://github.com/webgptorg/promptbook/discussions/64) to get the best result.
|
|
75
75
|
|
|
76
76
|
In all of these situations, but especially in 3., the Promptbook library can make your life easier.
|
|
77
77
|
|
|
@@ -400,6 +400,8 @@ The following glossary is used to clarify certain concepts:
|
|
|
400
400
|
- When you want to **version** your prompts and **test multiple versions**
|
|
401
401
|
- When you want to **log** the execution of prompts and backtrace the issues
|
|
402
402
|
|
|
403
|
+
[See more](https://github.com/webgptorg/promptbook/discussions/111)
|
|
404
|
+
|
|
403
405
|
### β When not to use
|
|
404
406
|
|
|
405
407
|
- When you have already implemented single simple prompt and it works fine for your job
|
|
@@ -409,6 +411,8 @@ The following glossary is used to clarify certain concepts:
|
|
|
409
411
|
- When your main focus is on something other than text - like images, audio, video, spreadsheets _(other media types may be added in the future, [see discussion](https://github.com/webgptorg/promptbook/discussions/103))_
|
|
410
412
|
- When you need to use recursion _([see the discussion](https://github.com/webgptorg/promptbook/discussions/38))_
|
|
411
413
|
|
|
414
|
+
[See more](https://github.com/webgptorg/promptbook/discussions/112)
|
|
415
|
+
|
|
412
416
|
## π Known issues
|
|
413
417
|
|
|
414
418
|
- [π€ΈββοΈ Iterations not working yet](https://github.com/webgptorg/promptbook/discussions/55)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@promptbook/types",
|
|
3
|
-
"version": "0.68.
|
|
3
|
+
"version": "0.68.2",
|
|
4
4
|
"description": "Supercharge your use of large language models",
|
|
5
5
|
"private": false,
|
|
6
6
|
"sideEffects": false,
|
|
@@ -45,6 +45,6 @@
|
|
|
45
45
|
],
|
|
46
46
|
"typings": "./esm/typings/src/_packages/types.index.d.ts",
|
|
47
47
|
"peerDependencies": {
|
|
48
|
-
"@promptbook/core": "0.68.
|
|
48
|
+
"@promptbook/core": "0.68.2"
|
|
49
49
|
}
|
|
50
50
|
}
|