promptbook 0.52.0-2 → 0.52.0-4
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 +6 -3
- 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 `
|
|
473
|
-
-
|
|
474
|
-
- The
|
|
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-
|
|
3
|
+
"version": "0.52.0-4",
|
|
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-
|
|
48
|
-
"@promptbook/azure-openai": "0.52.0-
|
|
49
|
-
"@promptbook/cli": "0.52.0-
|
|
50
|
-
"@promptbook/core": "0.52.0-
|
|
51
|
-
"@promptbook/execute-javascript": "0.52.0-
|
|
52
|
-
"@promptbook/langtail": "0.52.0-
|
|
53
|
-
"@promptbook/mock": "0.52.0-
|
|
54
|
-
"@promptbook/openai": "0.52.0-
|
|
55
|
-
"@promptbook/remote-client": "0.52.0-
|
|
56
|
-
"@promptbook/remote-server": "0.52.0-
|
|
57
|
-
"@promptbook/types": "0.52.0-
|
|
58
|
-
"@promptbook/utils": "0.52.0-
|
|
59
|
-
"@promptbook/wizzard": "0.52.0-
|
|
47
|
+
"@promptbook/anthropic-claude": "0.52.0-4",
|
|
48
|
+
"@promptbook/azure-openai": "0.52.0-4",
|
|
49
|
+
"@promptbook/cli": "0.52.0-4",
|
|
50
|
+
"@promptbook/core": "0.52.0-4",
|
|
51
|
+
"@promptbook/execute-javascript": "0.52.0-4",
|
|
52
|
+
"@promptbook/langtail": "0.52.0-4",
|
|
53
|
+
"@promptbook/mock": "0.52.0-4",
|
|
54
|
+
"@promptbook/openai": "0.52.0-4",
|
|
55
|
+
"@promptbook/remote-client": "0.52.0-4",
|
|
56
|
+
"@promptbook/remote-server": "0.52.0-4",
|
|
57
|
+
"@promptbook/types": "0.52.0-4",
|
|
58
|
+
"@promptbook/utils": "0.52.0-4",
|
|
59
|
+
"@promptbook/wizzard": "0.52.0-4"
|
|
60
60
|
}
|
|
61
61
|
}
|