@promptbook/wizard 0.95.0 → 0.98.0-3
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 +12 -0
- package/esm/index.es.js +72 -17
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/_packages/cli.index.d.ts +2 -0
- package/esm/typings/src/_packages/core.index.d.ts +2 -0
- package/esm/typings/src/_packages/openai.index.d.ts +4 -0
- package/esm/typings/src/_packages/types.index.d.ts +2 -0
- package/esm/typings/src/_packages/wizard.index.d.ts +2 -0
- package/esm/typings/src/llm-providers/openai/OpenAiAssistantExecutionToolsOptions.d.ts +2 -2
- package/esm/typings/src/llm-providers/openai/OpenAiCompatibleExecutionTools.d.ts +3 -3
- package/esm/typings/src/llm-providers/openai/OpenAiCompatibleExecutionToolsOptions.d.ts +11 -0
- package/esm/typings/src/llm-providers/openai/OpenAiExecutionToolsOptions.d.ts +3 -5
- package/esm/typings/src/llm-providers/openai/createOpenAiCompatibleExecutionTools.d.ts +17 -0
- package/esm/typings/src/llm-providers/openai/register-configuration.d.ts +11 -0
- package/esm/typings/src/llm-providers/openai/register-constructor.d.ts +4 -0
- package/esm/typings/src/version.d.ts +1 -1
- package/package.json +2 -2
- package/umd/index.umd.js +72 -16
- package/umd/index.umd.js.map +1 -1
@@ -12,6 +12,7 @@ import { _OllamaMetadataRegistration } from '../llm-providers/ollama/register-co
|
|
12
12
|
import { _OllamaRegistration } from '../llm-providers/ollama/register-constructor';
|
13
13
|
import { _OpenAiMetadataRegistration } from '../llm-providers/openai/register-configuration';
|
14
14
|
import { _OpenAiAssistantMetadataRegistration } from '../llm-providers/openai/register-configuration';
|
15
|
+
import { _OpenAiCompatibleMetadataRegistration } from '../llm-providers/openai/register-configuration';
|
15
16
|
import { _OpenAiRegistration } from '../llm-providers/openai/register-constructor';
|
16
17
|
import { _OpenAiAssistantRegistration } from '../llm-providers/openai/register-constructor';
|
17
18
|
import { _BoilerplateScraperRegistration } from '../scrapers/_boilerplate/register-constructor';
|
@@ -42,6 +43,7 @@ export { _OllamaMetadataRegistration };
|
|
42
43
|
export { _OllamaRegistration };
|
43
44
|
export { _OpenAiMetadataRegistration };
|
44
45
|
export { _OpenAiAssistantMetadataRegistration };
|
46
|
+
export { _OpenAiCompatibleMetadataRegistration };
|
45
47
|
export { _OpenAiRegistration };
|
46
48
|
export { _OpenAiAssistantRegistration };
|
47
49
|
export { _BoilerplateScraperRegistration };
|
@@ -111,6 +111,7 @@ import { _GoogleMetadataRegistration } from '../llm-providers/google/register-co
|
|
111
111
|
import { _OllamaMetadataRegistration } from '../llm-providers/ollama/register-configuration';
|
112
112
|
import { _OpenAiMetadataRegistration } from '../llm-providers/openai/register-configuration';
|
113
113
|
import { _OpenAiAssistantMetadataRegistration } from '../llm-providers/openai/register-configuration';
|
114
|
+
import { _OpenAiCompatibleMetadataRegistration } from '../llm-providers/openai/register-configuration';
|
114
115
|
import { migratePipeline } from '../migrations/migratePipeline';
|
115
116
|
import { preparePersona } from '../personas/preparePersona';
|
116
117
|
import { book } from '../pipeline/book-notation';
|
@@ -259,6 +260,7 @@ export { _GoogleMetadataRegistration };
|
|
259
260
|
export { _OllamaMetadataRegistration };
|
260
261
|
export { _OpenAiMetadataRegistration };
|
261
262
|
export { _OpenAiAssistantMetadataRegistration };
|
263
|
+
export { _OpenAiCompatibleMetadataRegistration };
|
262
264
|
export { migratePipeline };
|
263
265
|
export { preparePersona };
|
264
266
|
export { book };
|
@@ -1,21 +1,25 @@
|
|
1
1
|
import { BOOK_LANGUAGE_VERSION, PROMPTBOOK_ENGINE_VERSION } from '../version';
|
2
2
|
import { createOpenAiAssistantExecutionTools } from '../llm-providers/openai/createOpenAiAssistantExecutionTools';
|
3
|
+
import { createOpenAiCompatibleExecutionTools } from '../llm-providers/openai/createOpenAiCompatibleExecutionTools';
|
3
4
|
import { createOpenAiExecutionTools } from '../llm-providers/openai/createOpenAiExecutionTools';
|
4
5
|
import { OPENAI_MODELS } from '../llm-providers/openai/openai-models';
|
5
6
|
import { OpenAiAssistantExecutionTools } from '../llm-providers/openai/OpenAiAssistantExecutionTools';
|
6
7
|
import type { OpenAiAssistantExecutionToolsOptions } from '../llm-providers/openai/OpenAiAssistantExecutionToolsOptions';
|
7
8
|
import { OpenAiCompatibleExecutionTools } from '../llm-providers/openai/OpenAiCompatibleExecutionTools';
|
9
|
+
import type { OpenAiCompatibleExecutionToolsOptions } from '../llm-providers/openai/OpenAiCompatibleExecutionToolsOptions';
|
8
10
|
import { OpenAiExecutionTools } from '../llm-providers/openai/OpenAiExecutionTools';
|
9
11
|
import type { OpenAiExecutionToolsOptions } from '../llm-providers/openai/OpenAiExecutionToolsOptions';
|
10
12
|
import { _OpenAiRegistration } from '../llm-providers/openai/register-constructor';
|
11
13
|
import { _OpenAiAssistantRegistration } from '../llm-providers/openai/register-constructor';
|
12
14
|
export { BOOK_LANGUAGE_VERSION, PROMPTBOOK_ENGINE_VERSION };
|
13
15
|
export { createOpenAiAssistantExecutionTools };
|
16
|
+
export { createOpenAiCompatibleExecutionTools };
|
14
17
|
export { createOpenAiExecutionTools };
|
15
18
|
export { OPENAI_MODELS };
|
16
19
|
export { OpenAiAssistantExecutionTools };
|
17
20
|
export type { OpenAiAssistantExecutionToolsOptions };
|
18
21
|
export { OpenAiCompatibleExecutionTools };
|
22
|
+
export type { OpenAiCompatibleExecutionToolsOptions };
|
19
23
|
export { OpenAiExecutionTools };
|
20
24
|
export type { OpenAiExecutionToolsOptions };
|
21
25
|
export { _OpenAiRegistration };
|
@@ -81,6 +81,7 @@ import type { DeepseekExecutionToolsOptions } from '../llm-providers/deepseek/De
|
|
81
81
|
import type { GoogleExecutionToolsOptions } from '../llm-providers/google/GoogleExecutionToolsOptions';
|
82
82
|
import type { OllamaExecutionToolsOptions } from '../llm-providers/ollama/OllamaExecutionToolsOptions';
|
83
83
|
import type { OpenAiAssistantExecutionToolsOptions } from '../llm-providers/openai/OpenAiAssistantExecutionToolsOptions';
|
84
|
+
import type { OpenAiCompatibleExecutionToolsOptions } from '../llm-providers/openai/OpenAiCompatibleExecutionToolsOptions';
|
84
85
|
import type { OpenAiExecutionToolsOptions } from '../llm-providers/openai/OpenAiExecutionToolsOptions';
|
85
86
|
import type { VercelExecutionToolsOptions } from '../llm-providers/vercel/VercelExecutionToolsOptions';
|
86
87
|
import type { VercelProvider } from '../llm-providers/vercel/VercelProvider';
|
@@ -380,6 +381,7 @@ export type { DeepseekExecutionToolsOptions };
|
|
380
381
|
export type { GoogleExecutionToolsOptions };
|
381
382
|
export type { OllamaExecutionToolsOptions };
|
382
383
|
export type { OpenAiAssistantExecutionToolsOptions };
|
384
|
+
export type { OpenAiCompatibleExecutionToolsOptions };
|
383
385
|
export type { OpenAiExecutionToolsOptions };
|
384
386
|
export type { VercelExecutionToolsOptions };
|
385
387
|
export type { VercelProvider };
|
@@ -11,6 +11,7 @@ import { _OllamaMetadataRegistration } from '../llm-providers/ollama/register-co
|
|
11
11
|
import { _OllamaRegistration } from '../llm-providers/ollama/register-constructor';
|
12
12
|
import { _OpenAiMetadataRegistration } from '../llm-providers/openai/register-configuration';
|
13
13
|
import { _OpenAiAssistantMetadataRegistration } from '../llm-providers/openai/register-configuration';
|
14
|
+
import { _OpenAiCompatibleMetadataRegistration } from '../llm-providers/openai/register-configuration';
|
14
15
|
import { _OpenAiRegistration } from '../llm-providers/openai/register-constructor';
|
15
16
|
import { _OpenAiAssistantRegistration } from '../llm-providers/openai/register-constructor';
|
16
17
|
import { _BoilerplateScraperRegistration } from '../scrapers/_boilerplate/register-constructor';
|
@@ -41,6 +42,7 @@ export { _OllamaMetadataRegistration };
|
|
41
42
|
export { _OllamaRegistration };
|
42
43
|
export { _OpenAiMetadataRegistration };
|
43
44
|
export { _OpenAiAssistantMetadataRegistration };
|
45
|
+
export { _OpenAiCompatibleMetadataRegistration };
|
44
46
|
export { _OpenAiRegistration };
|
45
47
|
export { _OpenAiAssistantRegistration };
|
46
48
|
export { _BoilerplateScraperRegistration };
|
@@ -1,12 +1,12 @@
|
|
1
1
|
import type { ClientOptions } from 'openai';
|
2
2
|
import type { string_token } from '../../types/typeAliases';
|
3
|
-
import type {
|
3
|
+
import type { OpenAiCompatibleExecutionToolsOptions } from './OpenAiCompatibleExecutionToolsOptions';
|
4
4
|
/**
|
5
5
|
* Options for `createOpenAiAssistantExecutionTools` and `OpenAiAssistantExecutionTools`
|
6
6
|
*
|
7
7
|
* @public exported from `@promptbook/openai`
|
8
8
|
*/
|
9
|
-
export type OpenAiAssistantExecutionToolsOptions =
|
9
|
+
export type OpenAiAssistantExecutionToolsOptions = OpenAiCompatibleExecutionToolsOptions & ClientOptions & {
|
10
10
|
/**
|
11
11
|
* Which assistant to use
|
12
12
|
*/
|
@@ -11,14 +11,14 @@ import type { string_markdown_text } from '../../types/typeAliases';
|
|
11
11
|
import type { string_model_name } from '../../types/typeAliases';
|
12
12
|
import type { string_title } from '../../types/typeAliases';
|
13
13
|
import { computeOpenAiUsage } from './computeOpenAiUsage';
|
14
|
-
import type {
|
14
|
+
import type { OpenAiCompatibleExecutionToolsOptions } from './OpenAiCompatibleExecutionToolsOptions';
|
15
15
|
/**
|
16
16
|
* Execution Tools for calling OpenAI API or other OpeenAI compatible provider
|
17
17
|
*
|
18
18
|
* @public exported from `@promptbook/openai`
|
19
19
|
*/
|
20
20
|
export declare abstract class OpenAiCompatibleExecutionTools implements LlmExecutionTools {
|
21
|
-
protected readonly options:
|
21
|
+
protected readonly options: OpenAiCompatibleExecutionToolsOptions;
|
22
22
|
/**
|
23
23
|
* OpenAI API client.
|
24
24
|
*/
|
@@ -32,7 +32,7 @@ export declare abstract class OpenAiCompatibleExecutionTools implements LlmExecu
|
|
32
32
|
*
|
33
33
|
* @param options which are relevant are directly passed to the OpenAI compatible client
|
34
34
|
*/
|
35
|
-
constructor(options:
|
35
|
+
constructor(options: OpenAiCompatibleExecutionToolsOptions);
|
36
36
|
abstract get title(): string_title & string_markdown_text;
|
37
37
|
abstract get description(): string_markdown;
|
38
38
|
getClient(): Promise<OpenAI>;
|
@@ -0,0 +1,11 @@
|
|
1
|
+
import type { ClientOptions } from 'openai';
|
2
|
+
import type { CommonToolsOptions } from '../../execution/CommonToolsOptions';
|
3
|
+
/**
|
4
|
+
* Options for `createOpenAiCompatibleExecutionTools` and `OpenAiCompatibleExecutionTools`
|
5
|
+
*
|
6
|
+
* This extends OpenAI's `ClientOptions` with are directly passed to the OpenAI client.
|
7
|
+
* Rest is used by the `OpenAiCompatibleExecutionTools`.
|
8
|
+
*
|
9
|
+
* @public exported from `@promptbook/openai`
|
10
|
+
*/
|
11
|
+
export type OpenAiCompatibleExecutionToolsOptions = CommonToolsOptions & ClientOptions;
|
@@ -1,11 +1,9 @@
|
|
1
|
-
import type {
|
2
|
-
import type { CommonToolsOptions } from '../../execution/CommonToolsOptions';
|
1
|
+
import type { OpenAiCompatibleExecutionToolsOptions } from './OpenAiCompatibleExecutionToolsOptions';
|
3
2
|
/**
|
4
3
|
* Options for `createOpenAiExecutionTools` and `OpenAiExecutionTools`
|
5
4
|
*
|
6
|
-
* This extends
|
7
|
-
* Rest is used by the `OpenAiExecutionTools`.
|
5
|
+
* This extends OpenAiCompatibleExecutionToolsOptions.
|
8
6
|
*
|
9
7
|
* @public exported from `@promptbook/openai`
|
10
8
|
*/
|
11
|
-
export type OpenAiExecutionToolsOptions =
|
9
|
+
export type OpenAiExecutionToolsOptions = OpenAiCompatibleExecutionToolsOptions;
|
@@ -0,0 +1,17 @@
|
|
1
|
+
import { OpenAiCompatibleExecutionTools } from './OpenAiCompatibleExecutionTools';
|
2
|
+
import type { OpenAiCompatibleExecutionToolsOptions } from './OpenAiCompatibleExecutionToolsOptions';
|
3
|
+
/**
|
4
|
+
* Execution Tools for calling OpenAI compatible API
|
5
|
+
*
|
6
|
+
* Note: This can be used for any OpenAI compatible APIs
|
7
|
+
*
|
8
|
+
* @public exported from `@promptbook/openai`
|
9
|
+
*/
|
10
|
+
export declare const createOpenAiCompatibleExecutionTools: ((options: OpenAiCompatibleExecutionToolsOptions) => OpenAiCompatibleExecutionTools) & {
|
11
|
+
packageName: string;
|
12
|
+
className: string;
|
13
|
+
};
|
14
|
+
/**
|
15
|
+
* TODO: [🦺] Is there some way how to put `packageName` and `className` on top and function definition on bottom?
|
16
|
+
* TODO: [🎶] Naming "constructor" vs "creator" vs "factory"
|
17
|
+
*/
|
@@ -19,6 +19,17 @@ export declare const _OpenAiMetadataRegistration: Registration;
|
|
19
19
|
* @public exported from `@promptbook/cli`
|
20
20
|
*/
|
21
21
|
export declare const _OpenAiAssistantMetadataRegistration: Registration;
|
22
|
+
/**
|
23
|
+
* Registration of the OpenAI Compatible metadata
|
24
|
+
*
|
25
|
+
* Note: OpenAiCompatibleExecutionTools is an abstract class and cannot be instantiated directly.
|
26
|
+
* It serves as a base class for OpenAiExecutionTools and other compatible implementations.
|
27
|
+
*
|
28
|
+
* @public exported from `@promptbook/core`
|
29
|
+
* @public exported from `@promptbook/wizard`
|
30
|
+
* @public exported from `@promptbook/cli`
|
31
|
+
*/
|
32
|
+
export declare const _OpenAiCompatibleMetadataRegistration: Registration;
|
22
33
|
/**
|
23
34
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
24
35
|
*/
|
@@ -19,6 +19,10 @@ export declare const _OpenAiRegistration: Registration;
|
|
19
19
|
* @public exported from `@promptbook/cli`
|
20
20
|
*/
|
21
21
|
export declare const _OpenAiAssistantRegistration: Registration;
|
22
|
+
/**
|
23
|
+
* Note: OpenAiCompatibleExecutionTools is an abstract class and cannot be registered directly.
|
24
|
+
* It serves as a base class for OpenAiExecutionTools and other compatible implementations.
|
25
|
+
*/
|
22
26
|
/**
|
23
27
|
* TODO: [🎶] Naming "constructor" vs "creator" vs "factory"
|
24
28
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
@@ -15,7 +15,7 @@ export declare const BOOK_LANGUAGE_VERSION: string_semantic_version;
|
|
15
15
|
export declare const PROMPTBOOK_ENGINE_VERSION: string_promptbook_version;
|
16
16
|
/**
|
17
17
|
* Represents the version string of the Promptbook engine.
|
18
|
-
* It follows semantic versioning (e.g., `0.
|
18
|
+
* It follows semantic versioning (e.g., `0.98.0-2`).
|
19
19
|
*
|
20
20
|
* @generated
|
21
21
|
*/
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@promptbook/wizard",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.98.0-3",
|
4
4
|
"description": "Promptbook: Run AI apps in plain human language across multiple models and platforms",
|
5
5
|
"private": false,
|
6
6
|
"sideEffects": false,
|
@@ -74,7 +74,7 @@
|
|
74
74
|
"module": "./esm/index.es.js",
|
75
75
|
"typings": "./esm/typings/src/_packages/wizard.index.d.ts",
|
76
76
|
"peerDependencies": {
|
77
|
-
"@promptbook/core": "0.
|
77
|
+
"@promptbook/core": "0.98.0-3"
|
78
78
|
},
|
79
79
|
"dependencies": {
|
80
80
|
"@ai-sdk/deepseek": "0.1.6",
|
package/umd/index.umd.js
CHANGED
@@ -49,7 +49,7 @@
|
|
49
49
|
* @generated
|
50
50
|
* @see https://github.com/webgptorg/promptbook
|
51
51
|
*/
|
52
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.
|
52
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.98.0-3';
|
53
53
|
/**
|
54
54
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
55
55
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
@@ -5098,6 +5098,38 @@
|
|
5098
5098
|
*/
|
5099
5099
|
},
|
5100
5100
|
});
|
5101
|
+
/**
|
5102
|
+
* Registration of the OpenAI Compatible metadata
|
5103
|
+
*
|
5104
|
+
* Note: OpenAiCompatibleExecutionTools is an abstract class and cannot be instantiated directly.
|
5105
|
+
* It serves as a base class for OpenAiExecutionTools and other compatible implementations.
|
5106
|
+
*
|
5107
|
+
* @public exported from `@promptbook/core`
|
5108
|
+
* @public exported from `@promptbook/wizard`
|
5109
|
+
* @public exported from `@promptbook/cli`
|
5110
|
+
*/
|
5111
|
+
const _OpenAiCompatibleMetadataRegistration = $llmToolsMetadataRegister.register({
|
5112
|
+
title: 'Open AI Compatible',
|
5113
|
+
packageName: '@promptbook/openai',
|
5114
|
+
className: 'OpenAiCompatibleExecutionTools',
|
5115
|
+
envVariables: ['OPENAI_API_KEY'],
|
5116
|
+
trustLevel: 'CLOSED',
|
5117
|
+
order: MODEL_ORDERS.TOP_TIER,
|
5118
|
+
getBoilerplateConfiguration() {
|
5119
|
+
return {
|
5120
|
+
title: 'Open AI Compatible',
|
5121
|
+
packageName: '@promptbook/openai',
|
5122
|
+
className: 'OpenAiCompatibleExecutionTools',
|
5123
|
+
options: {
|
5124
|
+
apiKey: 'sk-',
|
5125
|
+
maxRequestsPerMinute: DEFAULT_MAX_REQUESTS_PER_MINUTE,
|
5126
|
+
},
|
5127
|
+
};
|
5128
|
+
},
|
5129
|
+
createConfigurationFromEnv(env) {
|
5130
|
+
return null;
|
5131
|
+
},
|
5132
|
+
});
|
5101
5133
|
/**
|
5102
5134
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
5103
5135
|
*/
|
@@ -5371,6 +5403,7 @@
|
|
5371
5403
|
* TODO: [🎶] Naming "constructor" vs "creator" vs "factory"
|
5372
5404
|
*/
|
5373
5405
|
|
5406
|
+
// Note: OpenAiCompatibleExecutionTools is an abstract class and cannot be instantiated directly
|
5374
5407
|
/**
|
5375
5408
|
* Registration of LLM provider
|
5376
5409
|
*
|
@@ -5391,6 +5424,10 @@
|
|
5391
5424
|
* @public exported from `@promptbook/cli`
|
5392
5425
|
*/
|
5393
5426
|
const _OpenAiAssistantRegistration = $llmToolsRegister.register(createOpenAiAssistantExecutionTools);
|
5427
|
+
/**
|
5428
|
+
* Note: OpenAiCompatibleExecutionTools is an abstract class and cannot be registered directly.
|
5429
|
+
* It serves as a base class for OpenAiExecutionTools and other compatible implementations.
|
5430
|
+
*/
|
5394
5431
|
/**
|
5395
5432
|
* TODO: [🎶] Naming "constructor" vs "creator" vs "factory"
|
5396
5433
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
@@ -11774,21 +11811,39 @@
|
|
11774
11811
|
}
|
11775
11812
|
// TODO: [🧠] !!5 How to do timing in mixed cache / non-cache situation
|
11776
11813
|
// promptResult.timing: FromtoItems
|
11777
|
-
|
11778
|
-
|
11779
|
-
|
11780
|
-
|
11781
|
-
|
11782
|
-
|
11783
|
-
|
11784
|
-
|
11785
|
-
|
11786
|
-
|
11787
|
-
|
11788
|
-
|
11789
|
-
|
11790
|
-
|
11791
|
-
|
11814
|
+
// Check if the result is valid and should be cached
|
11815
|
+
// A result is considered failed if:
|
11816
|
+
// 1. It has a content property that is null or undefined
|
11817
|
+
// 2. It has an error property that is truthy
|
11818
|
+
// 3. It has a success property that is explicitly false
|
11819
|
+
const isFailedResult = promptResult.content === null ||
|
11820
|
+
promptResult.content === undefined ||
|
11821
|
+
promptResult.error ||
|
11822
|
+
promptResult.success === false;
|
11823
|
+
if (!isFailedResult) {
|
11824
|
+
await storage.setItem(key, {
|
11825
|
+
date: $getCurrentDate(),
|
11826
|
+
promptbookVersion: PROMPTBOOK_ENGINE_VERSION,
|
11827
|
+
bookVersion: BOOK_LANGUAGE_VERSION,
|
11828
|
+
prompt: {
|
11829
|
+
...prompt,
|
11830
|
+
parameters: Object.entries(parameters).length === Object.entries(relevantParameters).length
|
11831
|
+
? parameters
|
11832
|
+
: {
|
11833
|
+
...relevantParameters,
|
11834
|
+
note: `<- Note: Only relevant parameters are stored in the cache`,
|
11835
|
+
},
|
11836
|
+
},
|
11837
|
+
promptResult,
|
11838
|
+
});
|
11839
|
+
}
|
11840
|
+
else if (isVerbose) {
|
11841
|
+
console.info('Not caching failed result for key:', key, {
|
11842
|
+
content: promptResult.content,
|
11843
|
+
error: promptResult.error,
|
11844
|
+
success: promptResult.success,
|
11845
|
+
});
|
11846
|
+
}
|
11792
11847
|
return promptResult;
|
11793
11848
|
};
|
11794
11849
|
if (llmTools.callChatModel !== undefined) {
|
@@ -16680,6 +16735,7 @@
|
|
16680
16735
|
exports._OllamaRegistration = _OllamaRegistration;
|
16681
16736
|
exports._OpenAiAssistantMetadataRegistration = _OpenAiAssistantMetadataRegistration;
|
16682
16737
|
exports._OpenAiAssistantRegistration = _OpenAiAssistantRegistration;
|
16738
|
+
exports._OpenAiCompatibleMetadataRegistration = _OpenAiCompatibleMetadataRegistration;
|
16683
16739
|
exports._OpenAiMetadataRegistration = _OpenAiMetadataRegistration;
|
16684
16740
|
exports._OpenAiRegistration = _OpenAiRegistration;
|
16685
16741
|
exports._PdfScraperMetadataRegistration = _PdfScraperMetadataRegistration;
|