@promptbook/core 0.112.0-138 → 0.112.0-140

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 CHANGED
@@ -35,7 +35,7 @@ Run the standalone VPS installer only on a fresh server. Interactive mode asks f
35
35
  sudo curl -fsSL https://raw.githubusercontent.com/webgptorg/promptbook/refs/heads/main/other/vps/install.sh | bash
36
36
  ```
37
37
 
38
- Non-interactive mode takes defaults from command-line options and skips initial code-runner CLI setup, which can be configured later from the UI or SSH:
38
+ Non-interactive mode takes defaults from command-line options. When `--openai-api-key` is provided with the default OpenAI Codex runner, the installer installs and configures Codex automatically; other runner authentication can be configured later from the UI or SSH:
39
39
 
40
40
  ```bash
41
41
  sudo curl -fsSL https://raw.githubusercontent.com/webgptorg/promptbook/refs/heads/main/other/vps/install.sh | bash -s -- \
package/esm/index.es.js CHANGED
@@ -28,7 +28,7 @@ const BOOK_LANGUAGE_VERSION = '2.0.0';
28
28
  * @generated
29
29
  * @see https://github.com/webgptorg/promptbook
30
30
  */
31
- const PROMPTBOOK_ENGINE_VERSION = '0.112.0-138';
31
+ const PROMPTBOOK_ENGINE_VERSION = '0.112.0-140';
32
32
  /**
33
33
  * TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
34
34
  * Note: [💞] Ignore a discrepancy between file name and entity name
@@ -0,0 +1,10 @@
1
+ import { type ToolCall } from '../../../types/ToolCall';
2
+ /**
3
+ * Returns true when one tool call represents a user-facing action.
4
+ *
5
+ * @param toolCall - Tool call candidate.
6
+ * @returns Whether the tool call should be visible in chat progress and chips.
7
+ *
8
+ * @private internal utility of `<Chat/>`
9
+ */
10
+ export declare function isVisibleChatToolCall(toolCall: Pick<ToolCall, 'name'>): boolean;
@@ -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.112.0-137`).
18
+ * It follows semantic versioning (e.g., `0.112.0-139`).
19
19
  *
20
20
  * @generated
21
21
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promptbook/core",
3
- "version": "0.112.0-138",
3
+ "version": "0.112.0-140",
4
4
  "description": "Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action",
5
5
  "private": false,
6
6
  "sideEffects": false,
package/umd/index.umd.js CHANGED
@@ -29,7 +29,7 @@
29
29
  * @generated
30
30
  * @see https://github.com/webgptorg/promptbook
31
31
  */
32
- const PROMPTBOOK_ENGINE_VERSION = '0.112.0-138';
32
+ const PROMPTBOOK_ENGINE_VERSION = '0.112.0-140';
33
33
  /**
34
34
  * TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
35
35
  * Note: [💞] Ignore a discrepancy between file name and entity name
@@ -0,0 +1,10 @@
1
+ import { type ToolCall } from '../../../types/ToolCall';
2
+ /**
3
+ * Returns true when one tool call represents a user-facing action.
4
+ *
5
+ * @param toolCall - Tool call candidate.
6
+ * @returns Whether the tool call should be visible in chat progress and chips.
7
+ *
8
+ * @private internal utility of `<Chat/>`
9
+ */
10
+ export declare function isVisibleChatToolCall(toolCall: Pick<ToolCall, 'name'>): boolean;
@@ -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.112.0-137`).
18
+ * It follows semantic versioning (e.g., `0.112.0-139`).
19
19
  *
20
20
  * @generated
21
21
  */