@promptbook/remote-server 0.89.0-32 → 0.89.0-33
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 +2 -8
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/_packages/types.index.d.ts +2 -0
- package/esm/typings/src/remote-server/socket-types/_subtypes/Identification.d.ts +7 -1
- package/esm/typings/src/remote-server/types/RemoteServerOptions.d.ts +2 -1
- package/esm/typings/src/types/typeAliases.d.ts +7 -0
- package/package.json +2 -2
- package/umd/index.umd.js +2 -8
- package/umd/index.umd.js.map +1 -1
package/esm/index.es.js
CHANGED
|
@@ -33,7 +33,7 @@ const BOOK_LANGUAGE_VERSION = '1.0.0';
|
|
|
33
33
|
* @generated
|
|
34
34
|
* @see https://github.com/webgptorg/promptbook
|
|
35
35
|
*/
|
|
36
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.89.0-
|
|
36
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.89.0-33';
|
|
37
37
|
/**
|
|
38
38
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
39
39
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
@@ -7059,13 +7059,7 @@ function startRemoteServer(options) {
|
|
|
7059
7059
|
}
|
|
7060
7060
|
else if (isAnonymous === false && createLlmExecutionTools !== null) {
|
|
7061
7061
|
// Note: Application mode
|
|
7062
|
-
|
|
7063
|
-
llm = await createLlmExecutionTools({
|
|
7064
|
-
isAnonymous: false,
|
|
7065
|
-
appId,
|
|
7066
|
-
userId,
|
|
7067
|
-
customOptions,
|
|
7068
|
-
});
|
|
7062
|
+
llm = await createLlmExecutionTools(identification);
|
|
7069
7063
|
}
|
|
7070
7064
|
else {
|
|
7071
7065
|
throw new PipelineExecutionError(`You must provide either llmToolsConfiguration or non-anonymous mode must be propperly configured`);
|