@promptbook/remote-server 0.52.0-13 → 0.52.0-15
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 +1 -1
- package/esm/typings/library/constructors/createPromptbookLibraryFromDirectory.d.ts +6 -0
- package/esm/typings/library/constructors/createPromptbookLibraryFromPromise.test.d.ts +1 -0
- package/esm/typings/library/constructors/createPromptbookLibraryFromSources.test.d.ts +1 -0
- package/package.json +2 -2
- package/umd/index.umd.js +1 -1
- package/umd/typings/library/constructors/createPromptbookLibraryFromDirectory.d.ts +6 -0
- package/umd/typings/library/constructors/createPromptbookLibraryFromPromise.test.d.ts +1 -0
- package/umd/typings/library/constructors/createPromptbookLibraryFromSources.test.d.ts +1 -0
package/esm/index.es.js
CHANGED
|
@@ -89,7 +89,7 @@ var PromptbookExecutionError = /** @class */ (function (_super) {
|
|
|
89
89
|
/**
|
|
90
90
|
* The version of the Promptbook library
|
|
91
91
|
*/
|
|
92
|
-
var PROMPTBOOK_VERSION = '0.52.0-
|
|
92
|
+
var PROMPTBOOK_VERSION = '0.52.0-14';
|
|
93
93
|
|
|
94
94
|
/**
|
|
95
95
|
* Remote server is a proxy server that uses its execution tools internally and exposes the executor interface externally.
|
|
@@ -25,5 +25,11 @@ type CreatePromptbookLibraryFromDirectoryOptions = {
|
|
|
25
25
|
export declare function createPromptbookLibraryFromDirectory(path: string_folder_path, options?: CreatePromptbookLibraryFromDirectoryOptions): PromptbookLibrary;
|
|
26
26
|
export {};
|
|
27
27
|
/***
|
|
28
|
+
* Note: [1] Fixing the dynamic import issue in Webpack
|
|
29
|
+
* > ./node_modules/@promptbook/core/esm/index.es.js
|
|
30
|
+
* > Critical dependency: the request of a dependency is an expression
|
|
31
|
+
*
|
|
32
|
+
* Note: [2] Using require(just('fs/promises')) to allow
|
|
33
|
+
* the `@promptbook/core` work for both Node.js and browser environments
|
|
28
34
|
* TODO: [🍓][🚯] !!! Add to README and samples + maybe make `@promptbook/library` package
|
|
29
35
|
*/
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@promptbook/remote-server",
|
|
3
|
-
"version": "0.52.0-
|
|
3
|
+
"version": "0.52.0-15",
|
|
4
4
|
"description": "Library to supercharge your use of large language models",
|
|
5
5
|
"private": false,
|
|
6
6
|
"sideEffects": false,
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
}
|
|
50
50
|
],
|
|
51
51
|
"peerDependencies": {
|
|
52
|
-
"@promptbook/core": "0.52.0-
|
|
52
|
+
"@promptbook/core": "0.52.0-15"
|
|
53
53
|
},
|
|
54
54
|
"main": "./umd/index.umd.js",
|
|
55
55
|
"module": "./esm/index.es.js",
|
package/umd/index.umd.js
CHANGED
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
/**
|
|
96
96
|
* The version of the Promptbook library
|
|
97
97
|
*/
|
|
98
|
-
var PROMPTBOOK_VERSION = '0.52.0-
|
|
98
|
+
var PROMPTBOOK_VERSION = '0.52.0-14';
|
|
99
99
|
|
|
100
100
|
/**
|
|
101
101
|
* Remote server is a proxy server that uses its execution tools internally and exposes the executor interface externally.
|
|
@@ -25,5 +25,11 @@ type CreatePromptbookLibraryFromDirectoryOptions = {
|
|
|
25
25
|
export declare function createPromptbookLibraryFromDirectory(path: string_folder_path, options?: CreatePromptbookLibraryFromDirectoryOptions): PromptbookLibrary;
|
|
26
26
|
export {};
|
|
27
27
|
/***
|
|
28
|
+
* Note: [1] Fixing the dynamic import issue in Webpack
|
|
29
|
+
* > ./node_modules/@promptbook/core/esm/index.es.js
|
|
30
|
+
* > Critical dependency: the request of a dependency is an expression
|
|
31
|
+
*
|
|
32
|
+
* Note: [2] Using require(just('fs/promises')) to allow
|
|
33
|
+
* the `@promptbook/core` work for both Node.js and browser environments
|
|
28
34
|
* TODO: [🍓][🚯] !!! Add to README and samples + maybe make `@promptbook/library` package
|
|
29
35
|
*/
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|