@promptbook/openai 0.63.1 → 0.63.2
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/esm/index.es.js
CHANGED
|
@@ -6,7 +6,7 @@ import spaceTrim$1, { spaceTrim } from 'spacetrim';
|
|
|
6
6
|
/**
|
|
7
7
|
* The version of the Promptbook library
|
|
8
8
|
*/
|
|
9
|
-
var PROMPTBOOK_VERSION = '0.63.
|
|
9
|
+
var PROMPTBOOK_VERSION = '0.63.1';
|
|
10
10
|
// TODO: !!!! List here all the versions and annotate + put into script
|
|
11
11
|
|
|
12
12
|
/*! *****************************************************************************
|
|
@@ -36,6 +36,7 @@ import type { LlmExecutionToolsWithTotalUsage } from '../llm-providers/_common/u
|
|
|
36
36
|
import type { AnthropicClaudeExecutionToolsOptions } from '../llm-providers/anthropic-claude/AnthropicClaudeExecutionToolsOptions';
|
|
37
37
|
import type { AzureOpenAiExecutionToolsOptions } from '../llm-providers/azure-openai/AzureOpenAiExecutionToolsOptions';
|
|
38
38
|
import type { LangtailExecutionToolsOptions } from '../llm-providers/langtail/LangtailExecutionToolsOptions';
|
|
39
|
+
import type { MultipleLlmExecutionTools } from '../llm-providers/multiple/MultipleLlmExecutionTools';
|
|
39
40
|
import type { OpenAiExecutionToolsOptions } from '../llm-providers/openai/OpenAiExecutionToolsOptions';
|
|
40
41
|
import type { Promptbook_Server_Error } from '../llm-providers/remote/interfaces/Promptbook_Server_Error';
|
|
41
42
|
import type { Promptbook_Server_Progress } from '../llm-providers/remote/interfaces/Promptbook_Server_Progress';
|
|
@@ -242,6 +243,7 @@ export type { LlmExecutionToolsWithTotalUsage };
|
|
|
242
243
|
export type { AnthropicClaudeExecutionToolsOptions };
|
|
243
244
|
export type { AzureOpenAiExecutionToolsOptions };
|
|
244
245
|
export type { LangtailExecutionToolsOptions };
|
|
246
|
+
export type { MultipleLlmExecutionTools };
|
|
245
247
|
export type { OpenAiExecutionToolsOptions };
|
|
246
248
|
export type { Promptbook_Server_Error };
|
|
247
249
|
export type { Promptbook_Server_Progress };
|
|
@@ -12,7 +12,8 @@ import type { string_title } from '../../types/typeAliases';
|
|
|
12
12
|
/**
|
|
13
13
|
* Multiple LLM Execution Tools is a proxy server that uses multiple execution tools internally and exposes the executor interface externally.
|
|
14
14
|
*
|
|
15
|
-
*
|
|
15
|
+
* Note: Internal utility of `joinLlmExecutionTools` but exposed type
|
|
16
|
+
* @public exported from `@promptbook/types`
|
|
16
17
|
*/
|
|
17
18
|
export declare class MultipleLlmExecutionTools implements LlmExecutionTools {
|
|
18
19
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@promptbook/openai",
|
|
3
|
-
"version": "0.63.
|
|
3
|
+
"version": "0.63.2",
|
|
4
4
|
"description": "Supercharge your use of large language models",
|
|
5
5
|
"private": false,
|
|
6
6
|
"sideEffects": false,
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"module": "./esm/index.es.js",
|
|
48
48
|
"typings": "./esm/typings/src/_packages/openai.index.d.ts",
|
|
49
49
|
"peerDependencies": {
|
|
50
|
-
"@promptbook/core": "0.63.
|
|
50
|
+
"@promptbook/core": "0.63.2"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
53
|
"colors": "1.4.0",
|
package/umd/index.umd.js
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
/**
|
|
15
15
|
* The version of the Promptbook library
|
|
16
16
|
*/
|
|
17
|
-
var PROMPTBOOK_VERSION = '0.63.
|
|
17
|
+
var PROMPTBOOK_VERSION = '0.63.1';
|
|
18
18
|
// TODO: !!!! List here all the versions and annotate + put into script
|
|
19
19
|
|
|
20
20
|
/*! *****************************************************************************
|