promptbook 0.54.0 → 0.55.0-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 +1 -1
  2. package/package.json +13 -13
package/README.md CHANGED
@@ -488,7 +488,7 @@ There are [postprocessing functions](#postprocessing-functions) that can be used
488
488
  Executor is a simple async function that takes **input parameters** and returns **output parameters**.
489
489
  It is constructed by combining execution tools and promptbook to execute together.
490
490
 
491
- ### 🃏 Jokers
491
+ ### 🃏 Jokers (conditions)
492
492
 
493
493
  Joker is a previously defined parameter that is used to bypass some parts of the pipeline.
494
494
  If the joker is present in the template, it is checked to see if it meets the requirements (without postprocessing), and if so, it is used instead of executing that prompt template. There can be multiple wildcards in a prompt template, if so they are checked in order and the first one that meets the requirements is used.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "promptbook",
3
- "version": "0.54.0",
3
+ "version": "0.55.0-0",
4
4
  "description": "Library to supercharge your use of large language models",
5
5
  "private": false,
6
6
  "sideEffects": false,
@@ -44,17 +44,17 @@
44
44
  }
45
45
  ],
46
46
  "dependencies": {
47
- "@promptbook/anthropic-claude": "0.54.0",
48
- "@promptbook/azure-openai": "0.54.0",
49
- "@promptbook/cli": "0.54.0",
50
- "@promptbook/core": "0.54.0",
51
- "@promptbook/execute-javascript": "0.54.0",
52
- "@promptbook/langtail": "0.54.0",
53
- "@promptbook/mock": "0.54.0",
54
- "@promptbook/openai": "0.54.0",
55
- "@promptbook/remote-client": "0.54.0",
56
- "@promptbook/remote-server": "0.54.0",
57
- "@promptbook/types": "0.54.0",
58
- "@promptbook/utils": "0.54.0"
47
+ "@promptbook/anthropic-claude": "0.55.0-0",
48
+ "@promptbook/azure-openai": "0.55.0-0",
49
+ "@promptbook/cli": "0.55.0-0",
50
+ "@promptbook/core": "0.55.0-0",
51
+ "@promptbook/execute-javascript": "0.55.0-0",
52
+ "@promptbook/langtail": "0.55.0-0",
53
+ "@promptbook/mock": "0.55.0-0",
54
+ "@promptbook/openai": "0.55.0-0",
55
+ "@promptbook/remote-client": "0.55.0-0",
56
+ "@promptbook/remote-server": "0.55.0-0",
57
+ "@promptbook/types": "0.55.0-0",
58
+ "@promptbook/utils": "0.55.0-0"
59
59
  }
60
60
  }