@promptbook/types 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.
Files changed (2) hide show
  1. package/README.md +6 -2
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -338,6 +338,8 @@ Or you can install them separately:
338
338
  - _(Not finished)_ **[@promptbook/wizzard](https://www.npmjs.com/package/@promptbook/wizzard)** - Wizard for creating+running promptbooks in single line
339
339
  - **[@promptbook/execute-javascript](https://www.npmjs.com/package/@promptbook/execute-javascript)** - Execution tools for javascript inside promptbooks
340
340
  - **[@promptbook/openai](https://www.npmjs.com/package/@promptbook/openai)** - Execution tools for OpenAI API, wrapper around OpenAI SDK
341
+ - **[@promptbook/anthropic-claude](https://www.npmjs.com/package/@promptbook/anthropic-claude)** - Execution tools for Anthropic Claude API, wrapper around Anthropic Claude SDK
342
+ - **[@promptbook/azure-openai](https://www.npmjs.com/package/@promptbook/azure-openai)** - Execution tools for Azure OpenAI API
341
343
  - **[@promptbook/langtail](https://www.npmjs.com/package/@promptbook/langtail)** - Execution tools for Langtail API, wrapper around Langtail SDK
342
344
  - **[@promptbook/mock](https://www.npmjs.com/package/@promptbook/mock)** - Mocked execution tools for testing the library and saving the tokens
343
345
  - **[@promptbook/remote-client](https://www.npmjs.com/package/@promptbook/remote-client)** - Remote client for remote execution of promptbooks
@@ -345,6 +347,8 @@ Or you can install them separately:
345
347
  - **[@promptbook/types](https://www.npmjs.com/package/@promptbook/types)** - Just typescript types used in the library
346
348
  - **[@promptbook/cli](https://www.npmjs.com/package/@promptbook/cli)** - Command line interface utilities for promptbooks
347
349
 
350
+
351
+
348
352
  ## 📚 Dictionary
349
353
 
350
354
  The following glossary is used to clarify certain basic concepts:
@@ -487,8 +491,8 @@ Internally it calls OpenAI, Azure, GPU, proxy, cache, logging,...
487
491
  `LlmExecutionTools` an abstract interface that is implemented by concrete execution tools:
488
492
 
489
493
  - `OpenAiExecutionTools`
490
- - _(Not implemented yet)_ `AnthropicClaudeExecutionTools`
491
- - _(Not implemented yet)_ `AzureOpenAiExecutionTools`
494
+ - _(Not implemented yet !!!!! )_ `AnthropicClaudeExecutionTools`
495
+ - _(Not implemented yet !!!!! )_ `AzureOpenAiExecutionTools`
492
496
  - _(Not implemented yet)_ `BardExecutionTools`
493
497
  - _(Not implemented yet)_ `LamaExecutionTools`
494
498
  - _(Not implemented yet)_ `GpuExecutionTools`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promptbook/types",
3
- "version": "0.51.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,
@@ -45,7 +45,7 @@
45
45
  }
46
46
  ],
47
47
  "peerDependencies": {
48
- "@promptbook/core": "0.51.0"
48
+ "@promptbook/core": "0.52.0-1"
49
49
  },
50
50
  "main": "./umd/index.umd.js",
51
51
  "module": "./esm/index.es.js",