@promptbook/openai 0.52.0-17 → 0.52.0-18
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/typings/library/constructors/createPromptbookLibraryFromDirectory.d.ts +7 -1
- package/esm/typings/library/constructors/createPromptbookLibraryFromDirectory.test.d.ts +1 -0
- package/package.json +2 -2
- package/umd/typings/library/constructors/createPromptbookLibraryFromDirectory.d.ts +7 -1
- package/umd/typings/library/constructors/createPromptbookLibraryFromDirectory.test.d.ts +1 -0
|
@@ -10,6 +10,12 @@ type CreatePromptbookLibraryFromDirectoryOptions = {
|
|
|
10
10
|
* @default true
|
|
11
11
|
*/
|
|
12
12
|
isRecursive?: boolean;
|
|
13
|
+
/**
|
|
14
|
+
* If true, the library ceation outputs information about each file it reads
|
|
15
|
+
*
|
|
16
|
+
* @default false
|
|
17
|
+
*/
|
|
18
|
+
isVerbose?: boolean;
|
|
13
19
|
};
|
|
14
20
|
/**
|
|
15
21
|
* Constructs Promptbook from given directory
|
|
@@ -25,7 +31,7 @@ type CreatePromptbookLibraryFromDirectoryOptions = {
|
|
|
25
31
|
export declare function createPromptbookLibraryFromDirectory(path: string_folder_path, options?: CreatePromptbookLibraryFromDirectoryOptions): PromptbookLibrary;
|
|
26
32
|
export {};
|
|
27
33
|
/***
|
|
28
|
-
* Note: [1] Fixing the dynamic import issue in Webpack
|
|
34
|
+
* Note: [1] Fixing the dynamic import issue in Webpack (! Not working !)
|
|
29
35
|
* > ./node_modules/@promptbook/core/esm/index.es.js
|
|
30
36
|
* > Critical dependency: the request of a dependency is an expression
|
|
31
37
|
*
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@promptbook/openai",
|
|
3
|
-
"version": "0.52.0-
|
|
3
|
+
"version": "0.52.0-18",
|
|
4
4
|
"description": "Library to supercharge your use of large language models",
|
|
5
5
|
"private": false,
|
|
6
6
|
"sideEffects": false,
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
}
|
|
49
49
|
],
|
|
50
50
|
"peerDependencies": {
|
|
51
|
-
"@promptbook/core": "0.52.0-
|
|
51
|
+
"@promptbook/core": "0.52.0-18"
|
|
52
52
|
},
|
|
53
53
|
"main": "./umd/index.umd.js",
|
|
54
54
|
"module": "./esm/index.es.js",
|
|
@@ -10,6 +10,12 @@ type CreatePromptbookLibraryFromDirectoryOptions = {
|
|
|
10
10
|
* @default true
|
|
11
11
|
*/
|
|
12
12
|
isRecursive?: boolean;
|
|
13
|
+
/**
|
|
14
|
+
* If true, the library ceation outputs information about each file it reads
|
|
15
|
+
*
|
|
16
|
+
* @default false
|
|
17
|
+
*/
|
|
18
|
+
isVerbose?: boolean;
|
|
13
19
|
};
|
|
14
20
|
/**
|
|
15
21
|
* Constructs Promptbook from given directory
|
|
@@ -25,7 +31,7 @@ type CreatePromptbookLibraryFromDirectoryOptions = {
|
|
|
25
31
|
export declare function createPromptbookLibraryFromDirectory(path: string_folder_path, options?: CreatePromptbookLibraryFromDirectoryOptions): PromptbookLibrary;
|
|
26
32
|
export {};
|
|
27
33
|
/***
|
|
28
|
-
* Note: [1] Fixing the dynamic import issue in Webpack
|
|
34
|
+
* Note: [1] Fixing the dynamic import issue in Webpack (! Not working !)
|
|
29
35
|
* > ./node_modules/@promptbook/core/esm/index.es.js
|
|
30
36
|
* > Critical dependency: the request of a dependency is an expression
|
|
31
37
|
*
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|