@promptbook/documents 0.112.0-115 → 0.112.0-117
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 +10 -11
- package/esm/index.es.js.map +1 -1
- package/esm/src/_packages/components.index.d.ts +2 -0
- package/esm/src/_packages/node.index.d.ts +10 -0
- package/esm/src/book-3.0/CliAgent.d.ts +8 -15
- package/esm/src/book-3.0/agentFolderPaths.d.ts +30 -0
- package/esm/src/book-components/BookEditor/BookEditorBrowserConfig.d.ts +2 -0
- package/esm/src/book-components/BookEditor/BookEditorForClient.d.ts +7 -0
- package/esm/src/book-components/BookEditor/createDeprecatedCommitmentDiagnostics.browser.d.ts +9 -0
- package/esm/src/cli/cli-commands/agent-folder/agentProjectPaths.d.ts +2 -30
- package/esm/src/scrapers/website/utils/createShowdownConverter.d.ts +2 -2
- package/esm/src/version.d.ts +1 -1
- package/package.json +2 -3
- package/umd/index.umd.js +14 -12
- package/umd/index.umd.js.map +1 -1
- package/umd/src/_packages/components.index.d.ts +2 -0
- package/umd/src/_packages/node.index.d.ts +10 -0
- package/umd/src/book-3.0/CliAgent.d.ts +8 -15
- package/umd/src/book-3.0/agentFolderPaths.d.ts +30 -0
- package/umd/src/book-components/BookEditor/BookEditorBrowserConfig.d.ts +2 -0
- package/umd/src/book-components/BookEditor/BookEditorForClient.d.ts +7 -0
- package/umd/src/book-components/BookEditor/createDeprecatedCommitmentDiagnostics.browser.d.ts +9 -0
- package/umd/src/cli/cli-commands/agent-folder/agentProjectPaths.d.ts +2 -30
- package/umd/src/scrapers/website/utils/createShowdownConverter.d.ts +2 -2
- package/umd/src/version.d.ts +1 -1
|
@@ -12,6 +12,7 @@ import type { BookEditorUploadProgressCallback } from '../book-components/BookEd
|
|
|
12
12
|
import type { BookEditorUploadOptions } from '../book-components/BookEditor/BookEditor';
|
|
13
13
|
import type { BookEditorProps } from '../book-components/BookEditor/BookEditor';
|
|
14
14
|
import { BookEditor } from '../book-components/BookEditor/BookEditor';
|
|
15
|
+
import { BookEditorForClient } from '../book-components/BookEditor/BookEditorForClient';
|
|
15
16
|
import { AgentChat } from '../book-components/Chat/AgentChat/AgentChat';
|
|
16
17
|
import type { AgentChatProps } from '../book-components/Chat/AgentChat/AgentChatProps';
|
|
17
18
|
import { Chat } from '../book-components/Chat/Chat/Chat';
|
|
@@ -95,6 +96,7 @@ export type { BookEditorUploadProgressCallback };
|
|
|
95
96
|
export type { BookEditorUploadOptions };
|
|
96
97
|
export type { BookEditorProps };
|
|
97
98
|
export { BookEditor };
|
|
99
|
+
export { BookEditorForClient };
|
|
98
100
|
export { AgentChat };
|
|
99
101
|
export type { AgentChatProps };
|
|
100
102
|
export { Chat };
|
|
@@ -1,4 +1,9 @@
|
|
|
1
1
|
import { BOOK_LANGUAGE_VERSION, PROMPTBOOK_ENGINE_VERSION } from '../version';
|
|
2
|
+
import { AGENT_BOOK_FILE_PATH } from '../book-3.0/agentFolderPaths';
|
|
3
|
+
import { AGENT_MESSAGES_DIRECTORY_PATH } from '../book-3.0/agentFolderPaths';
|
|
4
|
+
import { AGENT_QUEUED_MESSAGES_DIRECTORY_PATH } from '../book-3.0/agentFolderPaths';
|
|
5
|
+
import { AGENT_FINISHED_MESSAGES_DIRECTORY_PATH } from '../book-3.0/agentFolderPaths';
|
|
6
|
+
import { AGENT_FAILED_MESSAGES_DIRECTORY_PATH } from '../book-3.0/agentFolderPaths';
|
|
2
7
|
import type { BookNodeAgentSource } from '../book-3.0/BookNodeAgentSource';
|
|
3
8
|
import type { BookNodeAgentSourceOptions } from '../book-3.0/BookNodeAgentSource';
|
|
4
9
|
import type { CliAgentHarness } from '../book-3.0/CliAgent';
|
|
@@ -22,6 +27,11 @@ import { FileCacheStorage } from '../storage/file-cache-storage/FileCacheStorage
|
|
|
22
27
|
import { $execCommand } from '../utils/execCommand/$execCommand';
|
|
23
28
|
import { $execCommands } from '../utils/execCommand/$execCommands';
|
|
24
29
|
export { BOOK_LANGUAGE_VERSION, PROMPTBOOK_ENGINE_VERSION };
|
|
30
|
+
export { AGENT_BOOK_FILE_PATH };
|
|
31
|
+
export { AGENT_MESSAGES_DIRECTORY_PATH };
|
|
32
|
+
export { AGENT_QUEUED_MESSAGES_DIRECTORY_PATH };
|
|
33
|
+
export { AGENT_FINISHED_MESSAGES_DIRECTORY_PATH };
|
|
34
|
+
export { AGENT_FAILED_MESSAGES_DIRECTORY_PATH };
|
|
25
35
|
export type { BookNodeAgentSource };
|
|
26
36
|
export type { BookNodeAgentSourceOptions };
|
|
27
37
|
export type { CliAgentHarness };
|
|
@@ -31,19 +31,12 @@ export type CliAgentRunOptions = {
|
|
|
31
31
|
*
|
|
32
32
|
* @public exported from `@promptbook/node`
|
|
33
33
|
*/
|
|
34
|
-
export type CliAgentOptions = BookNodeAgentSourceOptions & CliAgentRunOptions
|
|
35
|
-
/**
|
|
36
|
-
* Executable used for the wrapper command.
|
|
37
|
-
*
|
|
38
|
-
* @default ptbk
|
|
39
|
-
*/
|
|
40
|
-
readonly command?: string;
|
|
41
|
-
};
|
|
34
|
+
export type CliAgentOptions = BookNodeAgentSourceOptions & CliAgentRunOptions;
|
|
42
35
|
/**
|
|
43
|
-
* Lightweight JavaScript wrapper around
|
|
36
|
+
* Lightweight JavaScript wrapper around the Promptbook agent execution pipeline.
|
|
44
37
|
*
|
|
45
|
-
* It uses the same
|
|
46
|
-
*
|
|
38
|
+
* It uses the same harnesses and execution path as `ptbk agent exec`, running the runner
|
|
39
|
+
* in-process instead of spawning a separate CLI process.
|
|
47
40
|
*
|
|
48
41
|
* @public exported from `@promptbook/node`
|
|
49
42
|
*/
|
|
@@ -52,15 +45,15 @@ export declare class CliAgent {
|
|
|
52
45
|
private temporaryAgentPath;
|
|
53
46
|
constructor(options: CliAgentOptions);
|
|
54
47
|
/**
|
|
55
|
-
* Runs one non-interactive agent turn through
|
|
48
|
+
* Runs one non-interactive agent turn through the selected harness.
|
|
56
49
|
*
|
|
57
50
|
* @param message - User message sent to the agent.
|
|
58
|
-
* @param options - Optional per-run
|
|
59
|
-
* @returns
|
|
51
|
+
* @param options - Optional per-run overrides.
|
|
52
|
+
* @returns Final agent answer.
|
|
60
53
|
*/
|
|
61
54
|
run(message: string, options?: CliAgentRunOptions): Promise<string>;
|
|
62
55
|
/**
|
|
63
|
-
* Resolves the agent path passed to the
|
|
56
|
+
* Resolves the agent path passed to the runner, materializing one temporary `.book` file when needed.
|
|
64
57
|
*
|
|
65
58
|
* @private internal utility of `CliAgent`
|
|
66
59
|
*/
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Relative path to the local agent source used by the agent folder convention.
|
|
3
|
+
*
|
|
4
|
+
* @public exported from `@promptbook/node`
|
|
5
|
+
*/
|
|
6
|
+
export declare const AGENT_BOOK_FILE_PATH = "agent.book";
|
|
7
|
+
/**
|
|
8
|
+
* Relative path to the message queue root used by the agent folder convention.
|
|
9
|
+
*
|
|
10
|
+
* @public exported from `@promptbook/node`
|
|
11
|
+
*/
|
|
12
|
+
export declare const AGENT_MESSAGES_DIRECTORY_PATH = "messages";
|
|
13
|
+
/**
|
|
14
|
+
* Relative path to queued user messages consumed by the agent runner.
|
|
15
|
+
*
|
|
16
|
+
* @public exported from `@promptbook/node`
|
|
17
|
+
*/
|
|
18
|
+
export declare const AGENT_QUEUED_MESSAGES_DIRECTORY_PATH: string;
|
|
19
|
+
/**
|
|
20
|
+
* Relative path to answered messages written by the agent runner.
|
|
21
|
+
*
|
|
22
|
+
* @public exported from `@promptbook/node`
|
|
23
|
+
*/
|
|
24
|
+
export declare const AGENT_FINISHED_MESSAGES_DIRECTORY_PATH: string;
|
|
25
|
+
/**
|
|
26
|
+
* Relative path to messages that the agent runner stopped retrying.
|
|
27
|
+
*
|
|
28
|
+
* @public exported from `@promptbook/node`
|
|
29
|
+
*/
|
|
30
|
+
export declare const AGENT_FAILED_MESSAGES_DIRECTORY_PATH: string;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Browser-compatible stub for `createDeprecatedCommitmentDiagnostics`.
|
|
3
|
+
*
|
|
4
|
+
* In the browser build the full Node.js implementation is not available,
|
|
5
|
+
* so this stub always returns an empty array to keep the editor functional.
|
|
6
|
+
*
|
|
7
|
+
* @private internal utility of `BookEditorMonaco`
|
|
8
|
+
*/
|
|
9
|
+
export declare function createDeprecatedCommitmentDiagnostics(_agentSource?: string): [];
|
|
@@ -1,39 +1,11 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
*
|
|
4
|
-
* @private internal utility of `ptbk agent-folder`
|
|
5
|
-
*/
|
|
6
|
-
export declare const AGENT_BOOK_FILE_PATH = "agent.book";
|
|
1
|
+
import { AGENT_BOOK_FILE_PATH, AGENT_FAILED_MESSAGES_DIRECTORY_PATH, AGENT_FINISHED_MESSAGES_DIRECTORY_PATH, AGENT_MESSAGES_DIRECTORY_PATH, AGENT_QUEUED_MESSAGES_DIRECTORY_PATH } from '../../../book-3.0/agentFolderPaths';
|
|
2
|
+
export { AGENT_BOOK_FILE_PATH, AGENT_FAILED_MESSAGES_DIRECTORY_PATH, AGENT_FINISHED_MESSAGES_DIRECTORY_PATH, AGENT_MESSAGES_DIRECTORY_PATH, AGENT_QUEUED_MESSAGES_DIRECTORY_PATH, };
|
|
7
3
|
/**
|
|
8
4
|
* Relative path to local knowledge files initialized by `ptbk agent-folder init`.
|
|
9
5
|
*
|
|
10
6
|
* @private internal utility of `ptbk agent-folder`
|
|
11
7
|
*/
|
|
12
8
|
export declare const AGENT_KNOWLEDGE_DIRECTORY_PATH = "knowledge";
|
|
13
|
-
/**
|
|
14
|
-
* Relative path to the message queue root initialized by `ptbk agent-folder init`.
|
|
15
|
-
*
|
|
16
|
-
* @private internal utility of `ptbk agent-folder`
|
|
17
|
-
*/
|
|
18
|
-
export declare const AGENT_MESSAGES_DIRECTORY_PATH = "messages";
|
|
19
|
-
/**
|
|
20
|
-
* Relative path to queued user messages consumed by `ptbk agent-folder run-once`.
|
|
21
|
-
*
|
|
22
|
-
* @private internal utility of `ptbk agent-folder`
|
|
23
|
-
*/
|
|
24
|
-
export declare const AGENT_QUEUED_MESSAGES_DIRECTORY_PATH: string;
|
|
25
|
-
/**
|
|
26
|
-
* Relative path to answered messages written by `ptbk agent-folder run-once`.
|
|
27
|
-
*
|
|
28
|
-
* @private internal utility of `ptbk agent-folder`
|
|
29
|
-
*/
|
|
30
|
-
export declare const AGENT_FINISHED_MESSAGES_DIRECTORY_PATH: string;
|
|
31
|
-
/**
|
|
32
|
-
* Relative path to messages that the agent runner stopped retrying.
|
|
33
|
-
*
|
|
34
|
-
* @private internal utility of `ptbk agent-folder`
|
|
35
|
-
*/
|
|
36
|
-
export declare const AGENT_FAILED_MESSAGES_DIRECTORY_PATH: string;
|
|
37
9
|
/**
|
|
38
10
|
* Relative path to generated local agent documentation initialized by `ptbk agent-folder init`.
|
|
39
11
|
*
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import
|
|
1
|
+
import showdown from 'showdown';
|
|
2
2
|
/**
|
|
3
3
|
* Create a new showdown converter instance
|
|
4
4
|
*
|
|
5
5
|
* @private utility of `WebsiteScraper`
|
|
6
6
|
*/
|
|
7
|
-
export declare function createShowdownConverter():
|
|
7
|
+
export declare function createShowdownConverter(): showdown.Converter;
|
package/esm/src/version.d.ts
CHANGED
|
@@ -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-
|
|
18
|
+
* It follows semantic versioning (e.g., `0.112.0-116`).
|
|
19
19
|
*
|
|
20
20
|
* @generated
|
|
21
21
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@promptbook/documents",
|
|
3
|
-
"version": "0.112.0-
|
|
3
|
+
"version": "0.112.0-117",
|
|
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,
|
|
@@ -99,11 +99,10 @@
|
|
|
99
99
|
"types": "./esm/src/_packages/documents.index.d.ts",
|
|
100
100
|
"typings": "./esm/src/_packages/documents.index.d.ts",
|
|
101
101
|
"peerDependencies": {
|
|
102
|
-
"@promptbook/core": "0.112.0-
|
|
102
|
+
"@promptbook/core": "0.112.0-117"
|
|
103
103
|
},
|
|
104
104
|
"dependencies": {
|
|
105
105
|
"colors": "1.4.0",
|
|
106
|
-
"crypto": "1.0.1",
|
|
107
106
|
"crypto-js": "4.2.0",
|
|
108
107
|
"papaparse": "5.4.1",
|
|
109
108
|
"rxjs": "7.8.2",
|
package/umd/index.umd.js
CHANGED
|
@@ -1,14 +1,16 @@
|
|
|
1
1
|
(function (global, factory) {
|
|
2
|
-
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('fs/promises'), require('spacetrim'), require('child_process'), require('colors'), require('waitasecond'), require('crypto'), require('rxjs'), require('crypto-js/enc-hex'), require('crypto-js/sha256'), require('path'), require('
|
|
3
|
-
typeof define === 'function' && define.amd ? define(['exports', 'fs/promises', 'spacetrim', 'child_process', 'colors', 'waitasecond', 'crypto', 'rxjs', 'crypto-js/enc-hex', 'crypto-js/sha256', 'path', '
|
|
4
|
-
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global["promptbook-documents"] = {}, global.promises, global.spacetrim, global.child_process, global.colors, global.waitasecond, global.
|
|
5
|
-
})(this, (function (exports, promises, spacetrim, child_process, colors, waitasecond,
|
|
2
|
+
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('fs/promises'), require('spacetrim'), require('child_process'), require('colors'), require('waitasecond'), require('crypto-js'), require('rxjs'), require('crypto-js/enc-hex'), require('crypto-js/sha256'), require('path'), require('mime-types'), require('papaparse')) :
|
|
3
|
+
typeof define === 'function' && define.amd ? define(['exports', 'fs/promises', 'spacetrim', 'child_process', 'colors', 'waitasecond', 'crypto-js', 'rxjs', 'crypto-js/enc-hex', 'crypto-js/sha256', 'path', 'mime-types', 'papaparse'], factory) :
|
|
4
|
+
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global["promptbook-documents"] = {}, global.promises, global.spacetrim, global.child_process, global.colors, global.waitasecond, global.CryptoJS, global.rxjs, global.hexEncoder, global.sha256, global.path, global.mimeTypes, global.papaparse));
|
|
5
|
+
})(this, (function (exports, promises, spacetrim, child_process, colors, waitasecond, CryptoJS, rxjs, hexEncoder, sha256, path, mimeTypes, papaparse) { 'use strict';
|
|
6
6
|
|
|
7
7
|
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
8
8
|
|
|
9
9
|
var colors__default = /*#__PURE__*/_interopDefaultLegacy(colors);
|
|
10
|
+
var CryptoJS__default = /*#__PURE__*/_interopDefaultLegacy(CryptoJS);
|
|
10
11
|
var hexEncoder__default = /*#__PURE__*/_interopDefaultLegacy(hexEncoder);
|
|
11
12
|
var sha256__default = /*#__PURE__*/_interopDefaultLegacy(sha256);
|
|
13
|
+
var papaparse__default = /*#__PURE__*/_interopDefaultLegacy(papaparse);
|
|
12
14
|
|
|
13
15
|
// ⚠️ WARNING: This code has been generated so that any manual changes will be overwritten
|
|
14
16
|
/**
|
|
@@ -24,7 +26,7 @@
|
|
|
24
26
|
* @generated
|
|
25
27
|
* @see https://github.com/webgptorg/promptbook
|
|
26
28
|
*/
|
|
27
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.112.0-
|
|
29
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.112.0-117';
|
|
28
30
|
/**
|
|
29
31
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
30
32
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
@@ -3356,7 +3358,7 @@
|
|
|
3356
3358
|
* @private internal helper function
|
|
3357
3359
|
*/
|
|
3358
3360
|
function $randomToken(randomness) {
|
|
3359
|
-
return
|
|
3361
|
+
return CryptoJS__default["default"].lib.WordArray.random(randomness).toString(CryptoJS__default["default"].enc.Hex);
|
|
3360
3362
|
}
|
|
3361
3363
|
// TODO: [🤶] Maybe export through `@promptbook/utils` or `@promptbook/random` package
|
|
3362
3364
|
// TODO: Maybe use nanoid instead https://github.com/ai/nanoid
|
|
@@ -5290,7 +5292,7 @@
|
|
|
5290
5292
|
* @public exported from `@promptbook/editable`
|
|
5291
5293
|
*/
|
|
5292
5294
|
function knowledgeSourceContentToName(knowledgeSourceContent) {
|
|
5293
|
-
const hash =
|
|
5295
|
+
const hash = CryptoJS__default["default"].SHA256(hexEncoder__default["default"].parse(JSON.stringify(knowledgeSourceContent)))
|
|
5294
5296
|
// <- TODO: [🥬] Encapsulate sha256 to some private utility function
|
|
5295
5297
|
.toString( /* hex */)
|
|
5296
5298
|
.substring(0, 20);
|
|
@@ -6251,7 +6253,7 @@
|
|
|
6251
6253
|
console.warn('CSV string contains carriage return characters, but in the CSV settings the `newline` setting does not include them. Autohealing the CSV string.');
|
|
6252
6254
|
value = value.replace(/\r\n/g, '\n').replace(/\r/g, '\n');
|
|
6253
6255
|
}
|
|
6254
|
-
const csv =
|
|
6256
|
+
const csv = papaparse__default["default"].parse(value, settings);
|
|
6255
6257
|
return csv;
|
|
6256
6258
|
}
|
|
6257
6259
|
|
|
@@ -6336,10 +6338,10 @@
|
|
|
6336
6338
|
i > index ? { ...row, [outputParameterName]: PENDING_VALUE_PLACEHOLDER } : row,
|
|
6337
6339
|
);
|
|
6338
6340
|
*/
|
|
6339
|
-
await onProgress(
|
|
6341
|
+
await onProgress(papaparse__default["default"].unparse(mappedData, { ...settings, ...MANDATORY_CSV_SETTINGS }));
|
|
6340
6342
|
}
|
|
6341
6343
|
}
|
|
6342
|
-
return
|
|
6344
|
+
return papaparse__default["default"].unparse(mappedData, { ...settings, ...MANDATORY_CSV_SETTINGS });
|
|
6343
6345
|
},
|
|
6344
6346
|
},
|
|
6345
6347
|
{
|
|
@@ -6367,7 +6369,7 @@
|
|
|
6367
6369
|
return /* not await */ mapCallback({ [key]: value }, index, array.length);
|
|
6368
6370
|
}));
|
|
6369
6371
|
}));
|
|
6370
|
-
return
|
|
6372
|
+
return papaparse__default["default"].unparse(mappedData, { ...settings, ...MANDATORY_CSV_SETTINGS });
|
|
6371
6373
|
},
|
|
6372
6374
|
},
|
|
6373
6375
|
],
|
|
@@ -8565,7 +8567,7 @@
|
|
|
8565
8567
|
const { filename: sourceFilename, url } = source;
|
|
8566
8568
|
const { rootDirname, cacheDirname, intermediateFilesStrategy, extension, isVerbose } = options;
|
|
8567
8569
|
// TODO: [👬] DRY
|
|
8568
|
-
const hash =
|
|
8570
|
+
const hash = CryptoJS__default["default"].SHA256(
|
|
8569
8571
|
// <- TODO: [🥬] Encapsulate sha256 to some private utility function
|
|
8570
8572
|
hexEncoder__default["default"].parse(sourceFilename || url || 'untitled'))
|
|
8571
8573
|
.toString( /* hex */)
|