@promptbook/types 0.63.3 → 0.63.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.
@@ -42,8 +42,10 @@ export declare class MultipleLlmExecutionTools implements LlmExecutionTools {
42
42
  callEmbeddingModel(prompt: EmbeddingPrompt): Promise<EmbeddingPromptResult>;
43
43
  /**
44
44
  * Calls the best available model
45
+ *
46
+ * Note: This should be private or protected but is public to be usable with duck typing
45
47
  */
46
- protected callCommonModel(prompt: Prompt): Promise<PromptResult>;
48
+ callCommonModel(prompt: Prompt): Promise<PromptResult>;
47
49
  /**
48
50
  * List all available models that can be used
49
51
  * This lists is a combination of all available models from all execution tools
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promptbook/types",
3
- "version": "0.63.3",
3
+ "version": "0.63.4",
4
4
  "description": "Supercharge your use of large language models",
5
5
  "private": false,
6
6
  "sideEffects": false,
@@ -45,6 +45,6 @@
45
45
  ],
46
46
  "typings": "./esm/typings/src/_packages/types.index.d.ts",
47
47
  "peerDependencies": {
48
- "@promptbook/core": "0.63.3"
48
+ "@promptbook/core": "0.63.4"
49
49
  }
50
50
  }