promptbook 0.52.0-2 → 0.52.0-3

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 +6 -3
  2. package/package.json +14 -14
package/README.md CHANGED
@@ -469,9 +469,10 @@ Internally it calls OpenAI, Azure, GPU, proxy, cache, logging,...
469
469
  - _(Not implemented yet)_ `BardExecutionTools`
470
470
  - _(Not implemented yet)_ `LamaExecutionTools`
471
471
  - _(Not implemented yet)_ `GpuExecutionTools`
472
- - And a special case are `RemoteLlmExecutionTools` that connect to a remote server and run one of the above execution tools on that server.
473
- - The second special case is `MockedEchoLlmExecutionTools` that is used for testing and mocking.
474
- - The third special case is `LogLlmExecutionToolsWrapper` that is technically also an execution tools but it is more proxy wrapper around other execution tools that logs all calls to execution tools.
472
+ - And a special case are `MultipleLlmExecutionTools` that combines multiple execution tools together and tries to execute the prompt on the best one.
473
+ - Another special case are `RemoteLlmExecutionTools` that connect to a remote server and run one of the above execution tools on that server.
474
+ - The another special case is `MockedEchoLlmExecutionTools` that is used for testing and mocking.
475
+ - The another special case is `LogLlmExecutionToolsWrapper` that is technically also an execution tools but it is more proxy wrapper around other execution tools that logs all calls to execution tools.
475
476
 
476
477
  #### Script Execution Tools
477
478
 
@@ -570,6 +571,8 @@ Execution report is a simple object or markdown that contains information about
570
571
 
571
572
 
572
573
 
574
+
575
+
573
576
  ### Remote server
574
577
 
575
578
  Remote server is a proxy server that uses its execution tools internally and exposes the executor interface externally.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "promptbook",
3
- "version": "0.52.0-2",
3
+ "version": "0.52.0-3",
4
4
  "description": "Library to supercharge your use of large language models",
5
5
  "private": false,
6
6
  "sideEffects": false,
@@ -44,18 +44,18 @@
44
44
  }
45
45
  ],
46
46
  "dependencies": {
47
- "@promptbook/anthropic-claude": "0.52.0-2",
48
- "@promptbook/azure-openai": "0.52.0-2",
49
- "@promptbook/cli": "0.52.0-2",
50
- "@promptbook/core": "0.52.0-2",
51
- "@promptbook/execute-javascript": "0.52.0-2",
52
- "@promptbook/langtail": "0.52.0-2",
53
- "@promptbook/mock": "0.52.0-2",
54
- "@promptbook/openai": "0.52.0-2",
55
- "@promptbook/remote-client": "0.52.0-2",
56
- "@promptbook/remote-server": "0.52.0-2",
57
- "@promptbook/types": "0.52.0-2",
58
- "@promptbook/utils": "0.52.0-2",
59
- "@promptbook/wizzard": "0.52.0-2"
47
+ "@promptbook/anthropic-claude": "0.52.0-3",
48
+ "@promptbook/azure-openai": "0.52.0-3",
49
+ "@promptbook/cli": "0.52.0-3",
50
+ "@promptbook/core": "0.52.0-3",
51
+ "@promptbook/execute-javascript": "0.52.0-3",
52
+ "@promptbook/langtail": "0.52.0-3",
53
+ "@promptbook/mock": "0.52.0-3",
54
+ "@promptbook/openai": "0.52.0-3",
55
+ "@promptbook/remote-client": "0.52.0-3",
56
+ "@promptbook/remote-server": "0.52.0-3",
57
+ "@promptbook/types": "0.52.0-3",
58
+ "@promptbook/utils": "0.52.0-3",
59
+ "@promptbook/wizzard": "0.52.0-3"
60
60
  }
61
61
  }