promptbook 0.51.0 → 0.52.0-1
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 +14 -12
package/README.md
CHANGED
|
@@ -310,6 +310,8 @@ Or you can install them separately:
|
|
|
310
310
|
- _(Not finished)_ **[@promptbook/wizzard](https://www.npmjs.com/package/@promptbook/wizzard)** - Wizard for creating+running promptbooks in single line
|
|
311
311
|
- **[@promptbook/execute-javascript](https://www.npmjs.com/package/@promptbook/execute-javascript)** - Execution tools for javascript inside promptbooks
|
|
312
312
|
- **[@promptbook/openai](https://www.npmjs.com/package/@promptbook/openai)** - Execution tools for OpenAI API, wrapper around OpenAI SDK
|
|
313
|
+
- **[@promptbook/anthropic-claude](https://www.npmjs.com/package/@promptbook/anthropic-claude)** - Execution tools for Anthropic Claude API, wrapper around Anthropic Claude SDK
|
|
314
|
+
- **[@promptbook/azure-openai](https://www.npmjs.com/package/@promptbook/azure-openai)** - Execution tools for Azure OpenAI API
|
|
313
315
|
- **[@promptbook/langtail](https://www.npmjs.com/package/@promptbook/langtail)** - Execution tools for Langtail API, wrapper around Langtail SDK
|
|
314
316
|
- **[@promptbook/mock](https://www.npmjs.com/package/@promptbook/mock)** - Mocked execution tools for testing the library and saving the tokens
|
|
315
317
|
- **[@promptbook/remote-client](https://www.npmjs.com/package/@promptbook/remote-client)** - Remote client for remote execution of promptbooks
|
|
@@ -317,6 +319,8 @@ Or you can install them separately:
|
|
|
317
319
|
- **[@promptbook/types](https://www.npmjs.com/package/@promptbook/types)** - Just typescript types used in the library
|
|
318
320
|
- **[@promptbook/cli](https://www.npmjs.com/package/@promptbook/cli)** - Command line interface utilities for promptbooks
|
|
319
321
|
|
|
322
|
+
|
|
323
|
+
|
|
320
324
|
## 📚 Dictionary
|
|
321
325
|
|
|
322
326
|
The following glossary is used to clarify certain basic concepts:
|
|
@@ -459,8 +463,8 @@ Internally it calls OpenAI, Azure, GPU, proxy, cache, logging,...
|
|
|
459
463
|
`LlmExecutionTools` an abstract interface that is implemented by concrete execution tools:
|
|
460
464
|
|
|
461
465
|
- `OpenAiExecutionTools`
|
|
462
|
-
- _(Not implemented yet)_ `AnthropicClaudeExecutionTools`
|
|
463
|
-
- _(Not implemented yet)_ `AzureOpenAiExecutionTools`
|
|
466
|
+
- _(Not implemented yet !!!!! )_ `AnthropicClaudeExecutionTools`
|
|
467
|
+
- _(Not implemented yet !!!!! )_ `AzureOpenAiExecutionTools`
|
|
464
468
|
- _(Not implemented yet)_ `BardExecutionTools`
|
|
465
469
|
- _(Not implemented yet)_ `LamaExecutionTools`
|
|
466
470
|
- _(Not implemented yet)_ `GpuExecutionTools`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "promptbook",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.52.0-1",
|
|
4
4
|
"description": "Library to supercharge your use of large language models",
|
|
5
5
|
"private": false,
|
|
6
6
|
"sideEffects": false,
|
|
@@ -44,16 +44,18 @@
|
|
|
44
44
|
}
|
|
45
45
|
],
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@promptbook/
|
|
48
|
-
"@promptbook/
|
|
49
|
-
"@promptbook/
|
|
50
|
-
"@promptbook/
|
|
51
|
-
"@promptbook/
|
|
52
|
-
"@promptbook/
|
|
53
|
-
"@promptbook/
|
|
54
|
-
"@promptbook/
|
|
55
|
-
"@promptbook/
|
|
56
|
-
"@promptbook/
|
|
57
|
-
"@promptbook/
|
|
47
|
+
"@promptbook/anthropic-claude": "0.52.0-1",
|
|
48
|
+
"@promptbook/azure-openai": "0.52.0-1",
|
|
49
|
+
"@promptbook/cli": "0.52.0-1",
|
|
50
|
+
"@promptbook/core": "0.52.0-1",
|
|
51
|
+
"@promptbook/execute-javascript": "0.52.0-1",
|
|
52
|
+
"@promptbook/langtail": "0.52.0-1",
|
|
53
|
+
"@promptbook/mock": "0.52.0-1",
|
|
54
|
+
"@promptbook/openai": "0.52.0-1",
|
|
55
|
+
"@promptbook/remote-client": "0.52.0-1",
|
|
56
|
+
"@promptbook/remote-server": "0.52.0-1",
|
|
57
|
+
"@promptbook/types": "0.52.0-1",
|
|
58
|
+
"@promptbook/utils": "0.52.0-1",
|
|
59
|
+
"@promptbook/wizzard": "0.52.0-1"
|
|
58
60
|
}
|
|
59
61
|
}
|