@promptbook/openai 0.51.0 → 0.52.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.
- package/README.md +6 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -332,6 +332,8 @@ Or you can install them separately:
|
|
|
332
332
|
- _(Not finished)_ **[@promptbook/wizzard](https://www.npmjs.com/package/@promptbook/wizzard)** - Wizard for creating+running promptbooks in single line
|
|
333
333
|
- **[@promptbook/execute-javascript](https://www.npmjs.com/package/@promptbook/execute-javascript)** - Execution tools for javascript inside promptbooks
|
|
334
334
|
- **[@promptbook/openai](https://www.npmjs.com/package/@promptbook/openai)** - Execution tools for OpenAI API, wrapper around OpenAI SDK
|
|
335
|
+
- **[@promptbook/anthropic-claude](https://www.npmjs.com/package/@promptbook/anthropic-claude)** - Execution tools for Anthropic Claude API, wrapper around Anthropic Claude SDK
|
|
336
|
+
- **[@promptbook/azure-openai](https://www.npmjs.com/package/@promptbook/azure-openai)** - Execution tools for Azure OpenAI API
|
|
335
337
|
- **[@promptbook/langtail](https://www.npmjs.com/package/@promptbook/langtail)** - Execution tools for Langtail API, wrapper around Langtail SDK
|
|
336
338
|
- **[@promptbook/mock](https://www.npmjs.com/package/@promptbook/mock)** - Mocked execution tools for testing the library and saving the tokens
|
|
337
339
|
- **[@promptbook/remote-client](https://www.npmjs.com/package/@promptbook/remote-client)** - Remote client for remote execution of promptbooks
|
|
@@ -339,6 +341,8 @@ Or you can install them separately:
|
|
|
339
341
|
- **[@promptbook/types](https://www.npmjs.com/package/@promptbook/types)** - Just typescript types used in the library
|
|
340
342
|
- **[@promptbook/cli](https://www.npmjs.com/package/@promptbook/cli)** - Command line interface utilities for promptbooks
|
|
341
343
|
|
|
344
|
+
|
|
345
|
+
|
|
342
346
|
## 📚 Dictionary
|
|
343
347
|
|
|
344
348
|
The following glossary is used to clarify certain basic concepts:
|
|
@@ -481,8 +485,8 @@ Internally it calls OpenAI, Azure, GPU, proxy, cache, logging,...
|
|
|
481
485
|
`LlmExecutionTools` an abstract interface that is implemented by concrete execution tools:
|
|
482
486
|
|
|
483
487
|
- `OpenAiExecutionTools`
|
|
484
|
-
- _(Not implemented yet)_ `AnthropicClaudeExecutionTools`
|
|
485
|
-
- _(Not implemented yet)_ `AzureOpenAiExecutionTools`
|
|
488
|
+
- _(Not implemented yet !!!!! )_ `AnthropicClaudeExecutionTools`
|
|
489
|
+
- _(Not implemented yet !!!!! )_ `AzureOpenAiExecutionTools`
|
|
486
490
|
- _(Not implemented yet)_ `BardExecutionTools`
|
|
487
491
|
- _(Not implemented yet)_ `LamaExecutionTools`
|
|
488
492
|
- _(Not implemented yet)_ `GpuExecutionTools`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@promptbook/openai",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.52.0-0",
|
|
4
4
|
"description": "Library to supercharge your use of large language models",
|
|
5
5
|
"private": false,
|
|
6
6
|
"sideEffects": false,
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
}
|
|
49
49
|
],
|
|
50
50
|
"peerDependencies": {
|
|
51
|
-
"@promptbook/core": "0.
|
|
51
|
+
"@promptbook/core": "0.52.0-0"
|
|
52
52
|
},
|
|
53
53
|
"main": "./umd/index.umd.js",
|
|
54
54
|
"module": "./esm/index.es.js",
|