@promptbook/node 0.110.0-1 → 0.110.0-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.
@@ -12,7 +12,7 @@ export type OpenAiAssistantExecutionToolsOptions = OpenAiCompatibleExecutionTool
12
12
  *
13
13
  * @default false
14
14
  */
15
- readonly isCreatingNewAssistantsAllowed?: boolean;
15
+ readonly isCreatingNewAssistantsAllowed: boolean;
16
16
  /**
17
17
  * Which assistant to use
18
18
  */
@@ -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.110.0-0`).
18
+ * It follows semantic versioning (e.g., `0.110.0-1`).
19
19
  *
20
20
  * @generated
21
21
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promptbook/node",
3
- "version": "0.110.0-1",
3
+ "version": "0.110.0-2",
4
4
  "description": "Promptbook: Turn your company's scattered knowledge into AI ready books",
5
5
  "private": false,
6
6
  "sideEffects": false,
@@ -93,7 +93,7 @@
93
93
  "module": "./esm/index.es.js",
94
94
  "typings": "./esm/typings/src/_packages/node.index.d.ts",
95
95
  "peerDependencies": {
96
- "@promptbook/core": "0.110.0-1"
96
+ "@promptbook/core": "0.110.0-2"
97
97
  },
98
98
  "dependencies": {
99
99
  "@mozilla/readability": "0.6.0",
package/umd/index.umd.js CHANGED
@@ -48,7 +48,7 @@
48
48
  * @generated
49
49
  * @see https://github.com/webgptorg/promptbook
50
50
  */
51
- const PROMPTBOOK_ENGINE_VERSION = '0.110.0-1';
51
+ const PROMPTBOOK_ENGINE_VERSION = '0.110.0-2';
52
52
  /**
53
53
  * TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
54
54
  * Note: [💞] Ignore a discrepancy between file name and entity name
@@ -23978,6 +23978,7 @@
23978
23978
  getAssistant(assistantId) {
23979
23979
  return new OpenAiAssistantExecutionTools({
23980
23980
  ...this.options,
23981
+ isCreatingNewAssistantsAllowed: this.isCreatingNewAssistantsAllowed,
23981
23982
  assistantId,
23982
23983
  });
23983
23984
  }