ptbk 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.
Files changed (2) hide show
  1. package/README.md +5 -1
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -26,7 +26,7 @@ But often you will struggle with the limitations of LLMs, such as hallucinations
26
26
 
27
27
  1. **Fine-tune** the model to your specifications or even train your own.
28
28
  2. **Prompt-engineer** the prompt to the best shape you can achieve.
29
- 3. Use **multiple prompts** in a [pipeline](https://github.com/webgptorg/promptbook/discussions/64) to get the best result.
29
+ 3. Orchestrate **multiple prompts** in a [pipeline](https://github.com/webgptorg/promptbook/discussions/64) to get the best result.
30
30
 
31
31
  In all of these situations, but especially in 3., the Promptbook library can make your life easier.
32
32
 
@@ -355,6 +355,8 @@ The following glossary is used to clarify certain concepts:
355
355
  - When you want to **version** your prompts and **test multiple versions**
356
356
  - When you want to **log** the execution of prompts and backtrace the issues
357
357
 
358
+ [See more](https://github.com/webgptorg/promptbook/discussions/111)
359
+
358
360
  ### βž– When not to use
359
361
 
360
362
  - When you have already implemented single simple prompt and it works fine for your job
@@ -364,6 +366,8 @@ The following glossary is used to clarify certain concepts:
364
366
  - 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))_
365
367
  - When you need to use recursion _([see the discussion](https://github.com/webgptorg/promptbook/discussions/38))_
366
368
 
369
+ [See more](https://github.com/webgptorg/promptbook/discussions/112)
370
+
367
371
  ## 🐜 Known issues
368
372
 
369
373
  - [πŸ€Έβ€β™‚οΈ Iterations not working yet](https://github.com/webgptorg/promptbook/discussions/55)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ptbk",
3
- "version": "0.68.0",
3
+ "version": "0.68.2",
4
4
  "description": "Supercharge your use of large language models",
5
5
  "private": false,
6
6
  "sideEffects": false,
@@ -44,9 +44,9 @@
44
44
  }
45
45
  ],
46
46
  "peerDependencies": {
47
- "@promptbook/core": "0.68.0"
47
+ "@promptbook/core": "0.68.2"
48
48
  },
49
49
  "dependencies": {
50
- "promptbook": "0.68.0"
50
+ "promptbook": "0.68.2"
51
51
  }
52
52
  }