@promptbook/google 0.103.0-3 → 0.103.0-31
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 +6 -207
- package/esm/index.es.js +23 -5
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/_packages/browser.index.d.ts +6 -0
- package/esm/typings/src/_packages/cli.index.d.ts +4 -0
- package/esm/typings/src/_packages/components.index.d.ts +12 -8
- package/esm/typings/src/_packages/core.index.d.ts +10 -0
- package/esm/typings/src/_packages/types.index.d.ts +10 -0
- package/esm/typings/src/_packages/wizard.index.d.ts +4 -0
- package/esm/typings/src/book-2.0/agent-source/padBook.d.ts +16 -0
- package/esm/typings/src/book-components/BookEditor/BookEditor.d.ts +76 -15
- package/esm/typings/src/book-components/BookEditor/BookEditorActionbar.d.ts +14 -0
- package/esm/typings/src/book-components/BookEditor/BookEditorMonaco.d.ts +5 -0
- package/esm/typings/src/book-components/Chat/MarkdownContent/MarkdownContent.d.ts +15 -0
- package/esm/typings/src/book-components/Chat/MockedChat/MockedChat.d.ts +5 -0
- package/esm/typings/src/book-components/Qr/BrandedQrCode.d.ts +18 -0
- package/esm/typings/src/book-components/Qr/GenericQrCode.d.ts +10 -0
- package/esm/typings/src/book-components/Qr/PromptbookQrCode.d.ts +18 -0
- package/esm/typings/src/book-components/Qr/useQrCode.d.ts +15 -0
- package/esm/typings/src/book-components/_common/Dropdown/Dropdown.d.ts +15 -0
- package/esm/typings/src/book-components/_common/Modal/Modal.d.ts +4 -1
- package/esm/typings/src/book-components/_common/react-utils/classNames.d.ts +1 -1
- package/esm/typings/src/book-components/icons/AboutIcon.d.ts +9 -0
- package/esm/typings/src/book-components/icons/CloseIcon.d.ts +4 -8
- package/esm/typings/src/book-components/icons/DownloadIcon.d.ts +9 -0
- package/esm/typings/src/book-components/icons/ExitFullscreenIcon.d.ts +7 -0
- package/esm/typings/src/book-components/icons/FullscreenIcon.d.ts +7 -0
- package/esm/typings/src/book-components/icons/MenuIcon.d.ts +12 -0
- package/esm/typings/src/cli/cli-commands/_boilerplate.d.ts +2 -1
- package/esm/typings/src/cli/cli-commands/about.d.ts +3 -1
- package/esm/typings/src/cli/cli-commands/hello.d.ts +2 -1
- package/esm/typings/src/cli/cli-commands/list-models.d.ts +2 -1
- package/esm/typings/src/cli/cli-commands/list-scrapers.d.ts +2 -1
- package/esm/typings/src/cli/cli-commands/login.d.ts +2 -1
- package/esm/typings/src/cli/cli-commands/make.d.ts +2 -1
- package/esm/typings/src/cli/cli-commands/prettify.d.ts +2 -1
- package/esm/typings/src/cli/cli-commands/run.d.ts +2 -1
- package/esm/typings/src/cli/cli-commands/start-server.d.ts +3 -1
- package/esm/typings/src/cli/cli-commands/test-command.d.ts +2 -1
- package/esm/typings/src/cli/common/$addGlobalOptionsToCommand.d.ts +2 -1
- package/esm/typings/src/commands/_common/types/CommandParser.d.ts +4 -5
- package/esm/typings/src/config.d.ts +14 -1
- package/esm/typings/src/execution/utils/usage-constants.d.ts +4 -124
- package/esm/typings/src/high-level-abstractions/_common/HighLevelAbstraction.d.ts +2 -1
- package/esm/typings/src/llm-providers/_common/register/$registeredLlmToolsMessage.d.ts +2 -1
- package/esm/typings/src/remote-server/startRemoteServer.d.ts +1 -0
- package/esm/typings/src/scrapers/_boilerplate/createBoilerplateScraper.d.ts +1 -12
- package/esm/typings/src/scrapers/_boilerplate/register-metadata.d.ts +1 -9
- package/esm/typings/src/scrapers/document/createDocumentScraper.d.ts +1 -12
- package/esm/typings/src/scrapers/document/register-metadata.d.ts +1 -9
- package/esm/typings/src/scrapers/document-legacy/createLegacyDocumentScraper.d.ts +1 -12
- package/esm/typings/src/scrapers/document-legacy/register-metadata.d.ts +1 -9
- package/esm/typings/src/scrapers/markdown/createMarkdownScraper.d.ts +1 -12
- package/esm/typings/src/scrapers/markdown/register-metadata.d.ts +1 -9
- package/esm/typings/src/scrapers/markitdown/createMarkitdownScraper.d.ts +1 -12
- package/esm/typings/src/scrapers/markitdown/register-metadata.d.ts +1 -9
- package/esm/typings/src/scrapers/pdf/createPdfScraper.d.ts +1 -12
- package/esm/typings/src/scrapers/pdf/register-metadata.d.ts +1 -9
- package/esm/typings/src/scrapers/website/createWebsiteScraper.d.ts +1 -12
- package/esm/typings/src/scrapers/website/register-metadata.d.ts +1 -9
- package/esm/typings/src/storage/env-storage/$EnvStorage.d.ts +2 -1
- package/esm/typings/src/transpilers/_common/BookTranspiler.d.ts +19 -0
- package/esm/typings/src/transpilers/_common/BookTranspilerDefinition.d.ts +37 -0
- package/esm/typings/src/transpilers/_common/BookTranspilerOptions.d.ts +19 -0
- package/esm/typings/src/transpilers/_common/register/$bookTranspilersRegister.d.ts +15 -0
- package/esm/typings/src/transpilers/langchain/LangchainTranspiler.d.ts +7 -0
- package/esm/typings/src/transpilers/langchain/register.d.ts +15 -0
- package/esm/typings/src/transpilers/openai/OpenAiSdkTranspiler.d.ts +13 -0
- package/esm/typings/src/transpilers/openai/register.d.ts +15 -0
- package/esm/typings/src/types/typeAliases.d.ts +1 -1
- package/esm/typings/src/utils/execCommand/$execCommand.d.ts +2 -1
- package/esm/typings/src/utils/execCommand/$execCommands.d.ts +2 -1
- package/esm/typings/src/utils/files/$induceBookDownload.d.ts +13 -0
- package/esm/typings/src/utils/files/$induceFileDownload.d.ts +13 -0
- package/esm/typings/src/utils/files/ObjectUrl.d.ts +46 -0
- package/esm/typings/src/utils/misc/aboutPromptbookInformation.d.ts +21 -0
- package/esm/typings/src/utils/misc/injectCssModuleIntoShadowRoot.d.ts +1 -0
- package/esm/typings/src/utils/misc/xAboutPromptbookInformation.d.ts +13 -0
- package/esm/typings/src/utils/organization/$side_effect.d.ts +7 -0
- package/esm/typings/src/utils/serialization/$deepFreeze.d.ts +2 -1
- package/esm/typings/src/version.d.ts +1 -1
- package/package.json +4 -4
- package/umd/index.umd.js +23 -5
- package/umd/index.umd.js.map +1 -1
- package/esm/typings/src/book-components/BookEditor/BookEditorInner.d.ts +0 -5
- package/esm/typings/src/book-components/BookEditor/BookEditorWrapper.d.ts +0 -6
- package/esm/typings/src/book-components/BookEditor/config.d.ts +0 -10
- package/esm/typings/src/book-components/Chat/utils/renderMarkdown.d.ts +0 -21
- package/esm/typings/src/book-components/Chat/utils/renderMarkdown.test.d.ts +0 -1
|
@@ -3,145 +3,25 @@
|
|
|
3
3
|
*
|
|
4
4
|
* @public exported from `@promptbook/core`
|
|
5
5
|
*/
|
|
6
|
-
export declare const ZERO_VALUE:
|
|
7
|
-
readonly value: 0;
|
|
8
|
-
}>;
|
|
6
|
+
export declare const ZERO_VALUE: any;
|
|
9
7
|
/**
|
|
10
8
|
* Represents the uncertain value
|
|
11
9
|
*
|
|
12
10
|
* @public exported from `@promptbook/core`
|
|
13
11
|
*/
|
|
14
|
-
export declare const UNCERTAIN_ZERO_VALUE:
|
|
15
|
-
readonly value: 0;
|
|
16
|
-
readonly isUncertain: true;
|
|
17
|
-
}>;
|
|
12
|
+
export declare const UNCERTAIN_ZERO_VALUE: any;
|
|
18
13
|
/**
|
|
19
14
|
* Represents the usage with no resources consumed
|
|
20
15
|
*
|
|
21
16
|
* @public exported from `@promptbook/core`
|
|
22
17
|
*/
|
|
23
|
-
export declare const ZERO_USAGE:
|
|
24
|
-
readonly price: import("type-fest/source/readonly-deep").ReadonlyObjectDeep<{
|
|
25
|
-
readonly value: 0;
|
|
26
|
-
}>;
|
|
27
|
-
readonly input: {
|
|
28
|
-
readonly tokensCount: import("type-fest/source/readonly-deep").ReadonlyObjectDeep<{
|
|
29
|
-
readonly value: 0;
|
|
30
|
-
}>;
|
|
31
|
-
readonly charactersCount: import("type-fest/source/readonly-deep").ReadonlyObjectDeep<{
|
|
32
|
-
readonly value: 0;
|
|
33
|
-
}>;
|
|
34
|
-
readonly wordsCount: import("type-fest/source/readonly-deep").ReadonlyObjectDeep<{
|
|
35
|
-
readonly value: 0;
|
|
36
|
-
}>;
|
|
37
|
-
readonly sentencesCount: import("type-fest/source/readonly-deep").ReadonlyObjectDeep<{
|
|
38
|
-
readonly value: 0;
|
|
39
|
-
}>;
|
|
40
|
-
readonly linesCount: import("type-fest/source/readonly-deep").ReadonlyObjectDeep<{
|
|
41
|
-
readonly value: 0;
|
|
42
|
-
}>;
|
|
43
|
-
readonly paragraphsCount: import("type-fest/source/readonly-deep").ReadonlyObjectDeep<{
|
|
44
|
-
readonly value: 0;
|
|
45
|
-
}>;
|
|
46
|
-
readonly pagesCount: import("type-fest/source/readonly-deep").ReadonlyObjectDeep<{
|
|
47
|
-
readonly value: 0;
|
|
48
|
-
}>;
|
|
49
|
-
};
|
|
50
|
-
readonly output: {
|
|
51
|
-
readonly tokensCount: import("type-fest/source/readonly-deep").ReadonlyObjectDeep<{
|
|
52
|
-
readonly value: 0;
|
|
53
|
-
}>;
|
|
54
|
-
readonly charactersCount: import("type-fest/source/readonly-deep").ReadonlyObjectDeep<{
|
|
55
|
-
readonly value: 0;
|
|
56
|
-
}>;
|
|
57
|
-
readonly wordsCount: import("type-fest/source/readonly-deep").ReadonlyObjectDeep<{
|
|
58
|
-
readonly value: 0;
|
|
59
|
-
}>;
|
|
60
|
-
readonly sentencesCount: import("type-fest/source/readonly-deep").ReadonlyObjectDeep<{
|
|
61
|
-
readonly value: 0;
|
|
62
|
-
}>;
|
|
63
|
-
readonly linesCount: import("type-fest/source/readonly-deep").ReadonlyObjectDeep<{
|
|
64
|
-
readonly value: 0;
|
|
65
|
-
}>;
|
|
66
|
-
readonly paragraphsCount: import("type-fest/source/readonly-deep").ReadonlyObjectDeep<{
|
|
67
|
-
readonly value: 0;
|
|
68
|
-
}>;
|
|
69
|
-
readonly pagesCount: import("type-fest/source/readonly-deep").ReadonlyObjectDeep<{
|
|
70
|
-
readonly value: 0;
|
|
71
|
-
}>;
|
|
72
|
-
};
|
|
73
|
-
}>;
|
|
18
|
+
export declare const ZERO_USAGE: any;
|
|
74
19
|
/**
|
|
75
20
|
* Represents the usage with unknown resources consumed
|
|
76
21
|
*
|
|
77
22
|
* @public exported from `@promptbook/core`
|
|
78
23
|
*/
|
|
79
|
-
export declare const UNCERTAIN_USAGE:
|
|
80
|
-
readonly price: import("type-fest/source/readonly-deep").ReadonlyObjectDeep<{
|
|
81
|
-
readonly value: 0;
|
|
82
|
-
readonly isUncertain: true;
|
|
83
|
-
}>;
|
|
84
|
-
readonly input: {
|
|
85
|
-
readonly tokensCount: import("type-fest/source/readonly-deep").ReadonlyObjectDeep<{
|
|
86
|
-
readonly value: 0;
|
|
87
|
-
readonly isUncertain: true;
|
|
88
|
-
}>;
|
|
89
|
-
readonly charactersCount: import("type-fest/source/readonly-deep").ReadonlyObjectDeep<{
|
|
90
|
-
readonly value: 0;
|
|
91
|
-
readonly isUncertain: true;
|
|
92
|
-
}>;
|
|
93
|
-
readonly wordsCount: import("type-fest/source/readonly-deep").ReadonlyObjectDeep<{
|
|
94
|
-
readonly value: 0;
|
|
95
|
-
readonly isUncertain: true;
|
|
96
|
-
}>;
|
|
97
|
-
readonly sentencesCount: import("type-fest/source/readonly-deep").ReadonlyObjectDeep<{
|
|
98
|
-
readonly value: 0;
|
|
99
|
-
readonly isUncertain: true;
|
|
100
|
-
}>;
|
|
101
|
-
readonly linesCount: import("type-fest/source/readonly-deep").ReadonlyObjectDeep<{
|
|
102
|
-
readonly value: 0;
|
|
103
|
-
readonly isUncertain: true;
|
|
104
|
-
}>;
|
|
105
|
-
readonly paragraphsCount: import("type-fest/source/readonly-deep").ReadonlyObjectDeep<{
|
|
106
|
-
readonly value: 0;
|
|
107
|
-
readonly isUncertain: true;
|
|
108
|
-
}>;
|
|
109
|
-
readonly pagesCount: import("type-fest/source/readonly-deep").ReadonlyObjectDeep<{
|
|
110
|
-
readonly value: 0;
|
|
111
|
-
readonly isUncertain: true;
|
|
112
|
-
}>;
|
|
113
|
-
};
|
|
114
|
-
readonly output: {
|
|
115
|
-
readonly tokensCount: import("type-fest/source/readonly-deep").ReadonlyObjectDeep<{
|
|
116
|
-
readonly value: 0;
|
|
117
|
-
readonly isUncertain: true;
|
|
118
|
-
}>;
|
|
119
|
-
readonly charactersCount: import("type-fest/source/readonly-deep").ReadonlyObjectDeep<{
|
|
120
|
-
readonly value: 0;
|
|
121
|
-
readonly isUncertain: true;
|
|
122
|
-
}>;
|
|
123
|
-
readonly wordsCount: import("type-fest/source/readonly-deep").ReadonlyObjectDeep<{
|
|
124
|
-
readonly value: 0;
|
|
125
|
-
readonly isUncertain: true;
|
|
126
|
-
}>;
|
|
127
|
-
readonly sentencesCount: import("type-fest/source/readonly-deep").ReadonlyObjectDeep<{
|
|
128
|
-
readonly value: 0;
|
|
129
|
-
readonly isUncertain: true;
|
|
130
|
-
}>;
|
|
131
|
-
readonly linesCount: import("type-fest/source/readonly-deep").ReadonlyObjectDeep<{
|
|
132
|
-
readonly value: 0;
|
|
133
|
-
readonly isUncertain: true;
|
|
134
|
-
}>;
|
|
135
|
-
readonly paragraphsCount: import("type-fest/source/readonly-deep").ReadonlyObjectDeep<{
|
|
136
|
-
readonly value: 0;
|
|
137
|
-
readonly isUncertain: true;
|
|
138
|
-
}>;
|
|
139
|
-
readonly pagesCount: import("type-fest/source/readonly-deep").ReadonlyObjectDeep<{
|
|
140
|
-
readonly value: 0;
|
|
141
|
-
readonly isUncertain: true;
|
|
142
|
-
}>;
|
|
143
|
-
};
|
|
144
|
-
}>;
|
|
24
|
+
export declare const UNCERTAIN_USAGE: any;
|
|
145
25
|
/**
|
|
146
26
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
147
27
|
*/
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { $PipelineJson } from '../../commands/_common/types/CommandParser';
|
|
2
|
+
import { $side_effect } from '../../utils/organization/$side_effect';
|
|
2
3
|
/**
|
|
3
4
|
* Used in `parsePipeline`
|
|
4
5
|
*
|
|
@@ -11,7 +12,7 @@ export type SyncHighLevelAbstraction = {
|
|
|
11
12
|
*
|
|
12
13
|
* Note: `$` is used to indicate that this function mutates given `pipelineJson`
|
|
13
14
|
*/
|
|
14
|
-
$applyToPipelineJson($pipelineJson: $PipelineJson):
|
|
15
|
+
$applyToPipelineJson($pipelineJson: $PipelineJson): $side_effect;
|
|
15
16
|
};
|
|
16
17
|
/**
|
|
17
18
|
* TODO: [♓️] Add order here
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { string_filename, string_markdown } from '../../../types/typeAliases';
|
|
2
|
+
import { $side_effect } from '../../../utils/organization/$side_effect';
|
|
2
3
|
/**
|
|
3
4
|
* Pass the `.env` file which was used to configure LLM tools
|
|
4
5
|
*
|
|
@@ -6,7 +7,7 @@ import type { string_filename, string_markdown } from '../../../types/typeAliase
|
|
|
6
7
|
*
|
|
7
8
|
* @private internal log of `$provideLlmToolsConfigurationFromEnv` and `$registeredLlmToolsMessage`
|
|
8
9
|
*/
|
|
9
|
-
export declare function $setUsedEnvFilename(filepath: string_filename):
|
|
10
|
+
export declare function $setUsedEnvFilename(filepath: string_filename): $side_effect;
|
|
10
11
|
/**
|
|
11
12
|
* Creates a message with all registered LLM tools
|
|
12
13
|
*
|
|
@@ -11,6 +11,7 @@ import type { RemoteServerOptions } from './types/RemoteServerOptions';
|
|
|
11
11
|
*/
|
|
12
12
|
export declare function startRemoteServer<TCustomOptions = undefined>(options: RemoteServerOptions<TCustomOptions>): RemoteServer;
|
|
13
13
|
/**
|
|
14
|
+
* TODO: [🕋] Use here `aboutPromptbookInformation`
|
|
14
15
|
* TODO: [🌡] Add CORS and security - probably via `helmet`
|
|
15
16
|
* TODO: Split this file into multiple functions - handler for each request
|
|
16
17
|
* TODO: Maybe use `$exportJson`
|
|
@@ -1,20 +1,9 @@
|
|
|
1
|
-
import type { ExecutionTools } from '../../execution/ExecutionTools';
|
|
2
|
-
import type { PrepareAndScrapeOptions } from '../../prepare/PrepareAndScrapeOptions';
|
|
3
|
-
import { BoilerplateScraper } from './BoilerplateScraper';
|
|
4
1
|
/**
|
|
5
2
|
* Constructor of `BoilerplateScraper`
|
|
6
3
|
*
|
|
7
4
|
* @public exported from `@promptbook/boilerplate`
|
|
8
5
|
*/
|
|
9
|
-
export declare const createBoilerplateScraper:
|
|
10
|
-
title: string;
|
|
11
|
-
packageName: string;
|
|
12
|
-
className: string;
|
|
13
|
-
mimeTypes: string[];
|
|
14
|
-
documentationUrl: "https://github.com/webgptorg/promptbook/discussions/@@";
|
|
15
|
-
isAvailableInBrowser: false;
|
|
16
|
-
requiredExecutables: never[];
|
|
17
|
-
}>;
|
|
6
|
+
export declare const createBoilerplateScraper: any;
|
|
18
7
|
/**
|
|
19
8
|
* TODO: [🎶] Naming "constructor" vs "creator" vs "factory"
|
|
20
9
|
*/
|
|
@@ -4,15 +4,7 @@ import type { Registration } from '../../utils/misc/$Register';
|
|
|
4
4
|
*
|
|
5
5
|
* @private within the scraper directory
|
|
6
6
|
*/
|
|
7
|
-
export declare const boilerplateScraperMetadata:
|
|
8
|
-
title: string;
|
|
9
|
-
packageName: string;
|
|
10
|
-
className: string;
|
|
11
|
-
mimeTypes: string[];
|
|
12
|
-
documentationUrl: "https://github.com/webgptorg/promptbook/discussions/@@";
|
|
13
|
-
isAvailableInBrowser: false;
|
|
14
|
-
requiredExecutables: never[];
|
|
15
|
-
}>;
|
|
7
|
+
export declare const boilerplateScraperMetadata: any;
|
|
16
8
|
/**
|
|
17
9
|
* Registration of known scraper metadata
|
|
18
10
|
*
|
|
@@ -1,20 +1,9 @@
|
|
|
1
|
-
import type { ExecutionTools } from '../../execution/ExecutionTools';
|
|
2
|
-
import type { PrepareAndScrapeOptions } from '../../prepare/PrepareAndScrapeOptions';
|
|
3
|
-
import { DocumentScraper } from './DocumentScraper';
|
|
4
1
|
/**
|
|
5
2
|
* Creates a scraper for document content.
|
|
6
3
|
*
|
|
7
4
|
* @public exported from `@promptbook/documents`
|
|
8
5
|
*/
|
|
9
|
-
export declare const createDocumentScraper:
|
|
10
|
-
title: string;
|
|
11
|
-
packageName: string;
|
|
12
|
-
className: string;
|
|
13
|
-
mimeTypes: string[];
|
|
14
|
-
documentationUrl: "https://github.com/webgptorg/promptbook/discussions/@@";
|
|
15
|
-
isAvailableInBrowser: false;
|
|
16
|
-
requiredExecutables: "Pandoc"[];
|
|
17
|
-
}>;
|
|
6
|
+
export declare const createDocumentScraper: any;
|
|
18
7
|
/**
|
|
19
8
|
* TODO: [🎶] Naming "constructor" vs "creator" vs "factory"
|
|
20
9
|
*/
|
|
@@ -4,15 +4,7 @@ import type { Registration } from '../../utils/misc/$Register';
|
|
|
4
4
|
*
|
|
5
5
|
* @private within the scraper directory
|
|
6
6
|
*/
|
|
7
|
-
export declare const documentScraperMetadata:
|
|
8
|
-
title: string;
|
|
9
|
-
packageName: string;
|
|
10
|
-
className: string;
|
|
11
|
-
mimeTypes: string[];
|
|
12
|
-
documentationUrl: "https://github.com/webgptorg/promptbook/discussions/@@";
|
|
13
|
-
isAvailableInBrowser: false;
|
|
14
|
-
requiredExecutables: "Pandoc"[];
|
|
15
|
-
}>;
|
|
7
|
+
export declare const documentScraperMetadata: any;
|
|
16
8
|
/**
|
|
17
9
|
* Registration of known scraper metadata
|
|
18
10
|
*
|
|
@@ -1,21 +1,10 @@
|
|
|
1
|
-
import type { ExecutionTools } from '../../execution/ExecutionTools';
|
|
2
|
-
import type { PrepareAndScrapeOptions } from '../../prepare/PrepareAndScrapeOptions';
|
|
3
|
-
import { LegacyDocumentScraper } from './LegacyDocumentScraper';
|
|
4
1
|
/**
|
|
5
2
|
* Creates a scraper for legacy document formats (.doc, .rtf, etc).
|
|
6
3
|
* Uses LibreOffice for conversion to extract content from older document formats.
|
|
7
4
|
*
|
|
8
5
|
* @public exported from `@promptbook/legacy-documents`
|
|
9
6
|
*/
|
|
10
|
-
export declare const createLegacyDocumentScraper:
|
|
11
|
-
title: string;
|
|
12
|
-
packageName: string;
|
|
13
|
-
className: string;
|
|
14
|
-
mimeTypes: string[];
|
|
15
|
-
documentationUrl: "https://github.com/webgptorg/promptbook/discussions/@@";
|
|
16
|
-
isAvailableInBrowser: false;
|
|
17
|
-
requiredExecutables: ("Pandoc" | "LibreOffice")[];
|
|
18
|
-
}>;
|
|
7
|
+
export declare const createLegacyDocumentScraper: any;
|
|
19
8
|
/**
|
|
20
9
|
* TODO: [🎶] Naming "constructor" vs "creator" vs "factory"
|
|
21
10
|
*/
|
|
@@ -4,15 +4,7 @@ import type { Registration } from '../../utils/misc/$Register';
|
|
|
4
4
|
*
|
|
5
5
|
* @private within the scraper directory
|
|
6
6
|
*/
|
|
7
|
-
export declare const legacyDocumentScraperMetadata:
|
|
8
|
-
title: string;
|
|
9
|
-
packageName: string;
|
|
10
|
-
className: string;
|
|
11
|
-
mimeTypes: string[];
|
|
12
|
-
documentationUrl: "https://github.com/webgptorg/promptbook/discussions/@@";
|
|
13
|
-
isAvailableInBrowser: false;
|
|
14
|
-
requiredExecutables: ("Pandoc" | "LibreOffice")[];
|
|
15
|
-
}>;
|
|
7
|
+
export declare const legacyDocumentScraperMetadata: any;
|
|
16
8
|
/**
|
|
17
9
|
* Registration of known scraper metadata
|
|
18
10
|
*
|
|
@@ -1,20 +1,9 @@
|
|
|
1
|
-
import type { ExecutionTools } from '../../execution/ExecutionTools';
|
|
2
|
-
import type { PrepareAndScrapeOptions } from '../../prepare/PrepareAndScrapeOptions';
|
|
3
|
-
import { MarkdownScraper } from './MarkdownScraper';
|
|
4
1
|
/**
|
|
5
2
|
* Creates a scraper for markdown content.
|
|
6
3
|
*
|
|
7
4
|
* @public exported from `@promptbook/markdown-utils`
|
|
8
5
|
*/
|
|
9
|
-
export declare const createMarkdownScraper:
|
|
10
|
-
title: string;
|
|
11
|
-
packageName: string;
|
|
12
|
-
className: string;
|
|
13
|
-
mimeTypes: string[];
|
|
14
|
-
documentationUrl: "https://github.com/webgptorg/promptbook/discussions/@@";
|
|
15
|
-
isAvailableInBrowser: true;
|
|
16
|
-
requiredExecutables: never[];
|
|
17
|
-
}>;
|
|
6
|
+
export declare const createMarkdownScraper: any;
|
|
18
7
|
/**
|
|
19
8
|
* TODO: [🎶] Naming "constructor" vs "creator" vs "factory"
|
|
20
9
|
*/
|
|
@@ -4,15 +4,7 @@ import type { Registration } from '../../utils/misc/$Register';
|
|
|
4
4
|
*
|
|
5
5
|
* @private within the scraper directory
|
|
6
6
|
*/
|
|
7
|
-
export declare const markdownScraperMetadata:
|
|
8
|
-
title: string;
|
|
9
|
-
packageName: string;
|
|
10
|
-
className: string;
|
|
11
|
-
mimeTypes: string[];
|
|
12
|
-
documentationUrl: "https://github.com/webgptorg/promptbook/discussions/@@";
|
|
13
|
-
isAvailableInBrowser: true;
|
|
14
|
-
requiredExecutables: never[];
|
|
15
|
-
}>;
|
|
7
|
+
export declare const markdownScraperMetadata: any;
|
|
16
8
|
/**
|
|
17
9
|
* Registration of known scraper metadata
|
|
18
10
|
*
|
|
@@ -1,21 +1,10 @@
|
|
|
1
|
-
import type { ExecutionTools } from '../../execution/ExecutionTools';
|
|
2
|
-
import type { PrepareAndScrapeOptions } from '../../prepare/PrepareAndScrapeOptions';
|
|
3
|
-
import { MarkitdownScraper } from './MarkitdownScraper';
|
|
4
1
|
/**
|
|
5
2
|
* Constructor of `MarkitdownScraper`
|
|
6
3
|
*
|
|
7
4
|
* @public exported from `@promptbook/markitdown`
|
|
8
5
|
* @public exported from `@promptbook/pdf`
|
|
9
6
|
*/
|
|
10
|
-
export declare const createMarkitdownScraper:
|
|
11
|
-
title: string;
|
|
12
|
-
packageName: string;
|
|
13
|
-
className: string;
|
|
14
|
-
mimeTypes: string[];
|
|
15
|
-
documentationUrl: "https://github.com/webgptorg/promptbook/discussions/@@";
|
|
16
|
-
isAvailableInBrowser: false;
|
|
17
|
-
requiredExecutables: never[];
|
|
18
|
-
}>;
|
|
7
|
+
export declare const createMarkitdownScraper: any;
|
|
19
8
|
/**
|
|
20
9
|
* TODO: [🧠][🌜] Export only from `@promptbook/markitdown` or `@promptbook/pdf` NOT both
|
|
21
10
|
* TODO: [🎶] Naming "constructor" vs "creator" vs "factory"
|
|
@@ -4,15 +4,7 @@ import type { Registration } from '../../utils/misc/$Register';
|
|
|
4
4
|
*
|
|
5
5
|
* @private within the scraper directory
|
|
6
6
|
*/
|
|
7
|
-
export declare const markitdownScraperMetadata:
|
|
8
|
-
title: string;
|
|
9
|
-
packageName: string;
|
|
10
|
-
className: string;
|
|
11
|
-
mimeTypes: string[];
|
|
12
|
-
documentationUrl: "https://github.com/webgptorg/promptbook/discussions/@@";
|
|
13
|
-
isAvailableInBrowser: false;
|
|
14
|
-
requiredExecutables: never[];
|
|
15
|
-
}>;
|
|
7
|
+
export declare const markitdownScraperMetadata: any;
|
|
16
8
|
/**
|
|
17
9
|
* Registration of known scraper metadata
|
|
18
10
|
*
|
|
@@ -1,21 +1,10 @@
|
|
|
1
|
-
import type { ExecutionTools } from '../../execution/ExecutionTools';
|
|
2
|
-
import type { PrepareAndScrapeOptions } from '../../prepare/PrepareAndScrapeOptions';
|
|
3
|
-
import { PdfScraper } from './PdfScraper';
|
|
4
1
|
/**
|
|
5
2
|
* Factory function to create an instance of PdfScraper.
|
|
6
3
|
* It bundles the scraper class with its metadata.
|
|
7
4
|
*
|
|
8
5
|
* @public exported from `@promptbook/pdf`
|
|
9
6
|
*/
|
|
10
|
-
export declare const createPdfScraper:
|
|
11
|
-
title: string;
|
|
12
|
-
packageName: string;
|
|
13
|
-
className: string;
|
|
14
|
-
mimeTypes: string[];
|
|
15
|
-
documentationUrl: "https://github.com/webgptorg/promptbook/discussions/@@";
|
|
16
|
-
isAvailableInBrowser: false;
|
|
17
|
-
requiredExecutables: never[];
|
|
18
|
-
}>;
|
|
7
|
+
export declare const createPdfScraper: any;
|
|
19
8
|
/**
|
|
20
9
|
* TODO: [🎶] Naming "constructor" vs "creator" vs "factory"
|
|
21
10
|
*/
|
|
@@ -4,15 +4,7 @@ import type { Registration } from '../../utils/misc/$Register';
|
|
|
4
4
|
*
|
|
5
5
|
* @private within the scraper directory
|
|
6
6
|
*/
|
|
7
|
-
export declare const pdfScraperMetadata:
|
|
8
|
-
title: string;
|
|
9
|
-
packageName: string;
|
|
10
|
-
className: string;
|
|
11
|
-
mimeTypes: string[];
|
|
12
|
-
documentationUrl: "https://github.com/webgptorg/promptbook/discussions/@@";
|
|
13
|
-
isAvailableInBrowser: false;
|
|
14
|
-
requiredExecutables: never[];
|
|
15
|
-
}>;
|
|
7
|
+
export declare const pdfScraperMetadata: any;
|
|
16
8
|
/**
|
|
17
9
|
* Registration of known scraper metadata
|
|
18
10
|
*
|
|
@@ -1,21 +1,10 @@
|
|
|
1
|
-
import type { ExecutionTools } from '../../execution/ExecutionTools';
|
|
2
|
-
import type { PrepareAndScrapeOptions } from '../../prepare/PrepareAndScrapeOptions';
|
|
3
|
-
import { WebsiteScraper } from './WebsiteScraper';
|
|
4
1
|
/**
|
|
5
2
|
* Factory function to create an instance of WebsiteScraper.
|
|
6
3
|
* It bundles the scraper class with its metadata.
|
|
7
4
|
*
|
|
8
5
|
* @public exported from `@promptbook/website-crawler`
|
|
9
6
|
*/
|
|
10
|
-
export declare const createWebsiteScraper:
|
|
11
|
-
title: string;
|
|
12
|
-
packageName: string;
|
|
13
|
-
className: string;
|
|
14
|
-
mimeTypes: string[];
|
|
15
|
-
documentationUrl: "https://github.com/webgptorg/promptbook/discussions/@@";
|
|
16
|
-
isAvailableInBrowser: false;
|
|
17
|
-
requiredExecutables: never[];
|
|
18
|
-
}>;
|
|
7
|
+
export declare const createWebsiteScraper: any;
|
|
19
8
|
/**
|
|
20
9
|
* TODO: [🎶] Naming "constructor" vs "creator" vs "factory"
|
|
21
10
|
*/
|
|
@@ -4,15 +4,7 @@ import type { Registration } from '../../utils/misc/$Register';
|
|
|
4
4
|
*
|
|
5
5
|
* @private within the scraper directory
|
|
6
6
|
*/
|
|
7
|
-
export declare const websiteScraperMetadata:
|
|
8
|
-
title: string;
|
|
9
|
-
packageName: string;
|
|
10
|
-
className: string;
|
|
11
|
-
mimeTypes: string[];
|
|
12
|
-
documentationUrl: "https://github.com/webgptorg/promptbook/discussions/@@";
|
|
13
|
-
isAvailableInBrowser: false;
|
|
14
|
-
requiredExecutables: never[];
|
|
15
|
-
}>;
|
|
7
|
+
export declare const websiteScraperMetadata: any;
|
|
16
8
|
/**
|
|
17
9
|
* Registration of known scraper metadata
|
|
18
10
|
*
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { PromptbookStorage } from '../_common/PromptbookStorage';
|
|
2
|
+
import { $side_effect } from '../../utils/organization/$side_effect';
|
|
2
3
|
/**
|
|
3
4
|
* Stores data in .env variables
|
|
4
5
|
*
|
|
@@ -29,7 +30,7 @@ export declare class $EnvStorage<TItem> implements PromptbookStorage<TItem> {
|
|
|
29
30
|
/**
|
|
30
31
|
* Sets the value of the pair identified by key to value, creating a new key/value pair if none existed for key previously.
|
|
31
32
|
*/
|
|
32
|
-
setItem(key: string, value: TItem): Promise
|
|
33
|
+
setItem(key: string, value: TItem): Promise<$side_effect>;
|
|
33
34
|
/**
|
|
34
35
|
* Removes the key/value pair with the given key from the list associated with the object, if a key/value pair with the given key exists.
|
|
35
36
|
*/
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import type { BookTranspilerOptions } from './BookTranspilerOptions';
|
|
2
|
+
/**
|
|
3
|
+
* Transpiler takes a book and transpiles it into another format.
|
|
4
|
+
*/
|
|
5
|
+
export type BookTranspiler =
|
|
6
|
+
/**
|
|
7
|
+
* Transpiles a book.
|
|
8
|
+
*
|
|
9
|
+
* @param book book to transpile
|
|
10
|
+
* @param options additional options for the transpiler
|
|
11
|
+
* @returns transpiled book
|
|
12
|
+
*/
|
|
13
|
+
(book: string, options: BookTranspilerOptions) => Promise<string>;
|
|
14
|
+
/**
|
|
15
|
+
* TODO: [🧠] Should there be a BookTranspiler class or just a function?
|
|
16
|
+
* Maybe a class with a constructor that takes ExecutionTools.
|
|
17
|
+
* Then the instance would be a function.
|
|
18
|
+
* @see LlmExecutionTools
|
|
19
|
+
*/
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import type { ExecutionTools } from '../../execution/ExecutionTools';
|
|
2
|
+
import type { string_name, string_title } from '../../types/typeAliases';
|
|
3
|
+
import type { Registered } from '../../utils/misc/$Register';
|
|
4
|
+
import type { BookTranspiler } from './BookTranspiler';
|
|
5
|
+
/**
|
|
6
|
+
* Definition of a book transpiler.
|
|
7
|
+
*
|
|
8
|
+
* @see https://github.com/webgptorg/promptbook/issues/249
|
|
9
|
+
*/
|
|
10
|
+
export type BookTranspilerDefinition = Registered & {
|
|
11
|
+
/**
|
|
12
|
+
* The name of the transpiler.
|
|
13
|
+
* It is used to identify the transpiler in the register.
|
|
14
|
+
*
|
|
15
|
+
* @example 'python-langchain'
|
|
16
|
+
*/
|
|
17
|
+
readonly name: string_name;
|
|
18
|
+
/**
|
|
19
|
+
* The title of the transpiler.
|
|
20
|
+
* It is used to display the transpiler in the UI.
|
|
21
|
+
*
|
|
22
|
+
* @example 'Python Langchain'
|
|
23
|
+
*/
|
|
24
|
+
readonly title: string_title;
|
|
25
|
+
/**
|
|
26
|
+
* The factory function to create a transpiler instance.
|
|
27
|
+
* It can be async.
|
|
28
|
+
*
|
|
29
|
+
* @param tools the execution tools that can be used by the transpiler
|
|
30
|
+
* @returns the transpiler instance
|
|
31
|
+
*/
|
|
32
|
+
readonly new: (tools: ExecutionTools) => BookTranspiler | Promise<BookTranspiler>;
|
|
33
|
+
};
|
|
34
|
+
/**
|
|
35
|
+
* TODO: [🧠] What other information should be in the public profile of the transpiler?
|
|
36
|
+
* - input format, output format, version, description, icon, etc.
|
|
37
|
+
*/
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Options for the BookTranspiler.
|
|
3
|
+
*
|
|
4
|
+
* @see https://github.com/webgptorg/promptbook/issues/249
|
|
5
|
+
*/
|
|
6
|
+
export type BookTranspilerOptions = {
|
|
7
|
+
/**
|
|
8
|
+
* If true, the transpiler will log verbose information to the console.
|
|
9
|
+
*
|
|
10
|
+
* @default false
|
|
11
|
+
*/
|
|
12
|
+
readonly isVerbose?: boolean;
|
|
13
|
+
/**
|
|
14
|
+
* If true, the transpiler will include comments in the output.
|
|
15
|
+
*
|
|
16
|
+
* @default true
|
|
17
|
+
*/
|
|
18
|
+
readonly shouldIncludeComments?: boolean;
|
|
19
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { $Register } from '../../../utils/misc/$Register';
|
|
2
|
+
import type { BookTranspilerDefinition } from '../BookTranspilerDefinition';
|
|
3
|
+
/**
|
|
4
|
+
* Register for book transpilers.
|
|
5
|
+
*
|
|
6
|
+
* Note: `$` is used to indicate that this interacts with the global scope
|
|
7
|
+
* @singleton Only one instance of each register is created per build, but there can be more instances across different builds or environments.
|
|
8
|
+
* @see https://github.com/webgptorg/promptbook/issues/249
|
|
9
|
+
*
|
|
10
|
+
* @public exported from `@promptbook/core`
|
|
11
|
+
*/
|
|
12
|
+
export declare const $bookTranspilersRegister: $Register<BookTranspilerDefinition>;
|
|
13
|
+
/**
|
|
14
|
+
* TODO: [®] DRY Register logic
|
|
15
|
+
*/
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { BookTranspilerDefinition } from '../_common/BookTranspilerDefinition';
|
|
2
|
+
/**
|
|
3
|
+
* Transpiler to Python code using LangChain library.
|
|
4
|
+
*
|
|
5
|
+
* @private TODO: !!!! Which package should export this?
|
|
6
|
+
*/
|
|
7
|
+
export declare const LangchainTranspiler: BookTranspilerDefinition;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Registration } from '../../_packages/types.index';
|
|
2
|
+
/**
|
|
3
|
+
* Registration of LLM provider
|
|
4
|
+
*
|
|
5
|
+
* Warning: This is not useful for the end user, it is just a side effect of the mechanism that handles all available LLM tools
|
|
6
|
+
*
|
|
7
|
+
* @public exported from `@promptbook/wizard`
|
|
8
|
+
* @public exported from `@promptbook/cli`
|
|
9
|
+
*
|
|
10
|
+
* TODO: !!!! Which package should export this?
|
|
11
|
+
*/
|
|
12
|
+
export declare const _LangchainTranspilerRegistration: Registration;
|
|
13
|
+
/**
|
|
14
|
+
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
15
|
+
*/
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { BookTranspilerDefinition } from '../_common/BookTranspilerDefinition';
|
|
2
|
+
/**
|
|
3
|
+
* Transpiler to Javascript code using OpenAI SDK.
|
|
4
|
+
*
|
|
5
|
+
* @private TODO: !!!! Which package should export this?
|
|
6
|
+
*/
|
|
7
|
+
export declare const OpenAiSdkTranspiler: BookTranspilerDefinition;
|
|
8
|
+
/**
|
|
9
|
+
* TODO: [🧠] What should be the scope of the transpiled code?
|
|
10
|
+
* - Just a single function?
|
|
11
|
+
* - A class?
|
|
12
|
+
* - A whole package?
|
|
13
|
+
*/
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Registration } from '../../_packages/types.index';
|
|
2
|
+
/**
|
|
3
|
+
* Registration of LLM provider
|
|
4
|
+
*
|
|
5
|
+
* Warning: This is not useful for the end user, it is just a side effect of the mechanism that handles all available LLM tools
|
|
6
|
+
*
|
|
7
|
+
* @public exported from `@promptbook/wizard`
|
|
8
|
+
* @public exported from `@promptbook/cli`
|
|
9
|
+
*
|
|
10
|
+
* TODO: !!!! Which package should export this?
|
|
11
|
+
*/
|
|
12
|
+
export declare const _OpenAiSdkTranspilerRegistration: Registration;
|
|
13
|
+
/**
|
|
14
|
+
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
15
|
+
*/
|