@promptbook/vercel 0.103.0-2 → 0.103.0-21
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/components.index.d.ts +4 -4
- package/esm/typings/src/_packages/core.index.d.ts +6 -0
- package/esm/typings/src/book-2.0/agent-source/padBook.d.ts +16 -0
- package/esm/typings/src/book-components/AvatarProfile/AvatarProfile/AvatarProfile.d.ts +5 -0
- package/esm/typings/src/book-components/AvatarProfile/AvatarProfile/AvatarProfileTooltip.d.ts +15 -0
- package/esm/typings/src/book-components/BookEditor/BookEditor.d.ts +66 -8
- package/esm/typings/src/book-components/BookEditor/BookEditorActionbar.d.ts +11 -0
- package/esm/typings/src/book-components/BookEditor/BookEditorMonaco.d.ts +5 -0
- package/esm/typings/src/book-components/BookEditor/config.d.ts +1 -0
- package/esm/typings/src/book-components/Chat/MarkdownContent/MarkdownContent.d.ts +12 -0
- package/esm/typings/src/book-components/Chat/types/ChatParticipant.d.ts +5 -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 +13 -0
- 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/DownloadIcon.d.ts +9 -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 +2 -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 +2 -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/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/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/injectCssModuleIntoShadowRoot.d.ts +1 -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 +2 -2
- 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/Chat/utils/renderMarkdown.d.ts +0 -21
- package/esm/typings/src/book-components/Chat/utils/renderMarkdown.test.d.ts +0 -1
|
@@ -7,6 +7,7 @@ import type { AvatarProfileProps } from '../book-components/AvatarProfile/Avatar
|
|
|
7
7
|
import { AvatarProfile } from '../book-components/AvatarProfile/AvatarProfile/AvatarProfile';
|
|
8
8
|
import type { AvatarProfileFromSourceProps } from '../book-components/AvatarProfile/AvatarProfile/AvatarProfileFromSource';
|
|
9
9
|
import { AvatarProfileFromSource } from '../book-components/AvatarProfile/AvatarProfile/AvatarProfileFromSource';
|
|
10
|
+
import { DEFAULT_BOOK_EDITOR_HEIGHT } from '../book-components/BookEditor/BookEditor';
|
|
10
11
|
import type { BookEditorProps } from '../book-components/BookEditor/BookEditor';
|
|
11
12
|
import { BookEditor } from '../book-components/BookEditor/BookEditor';
|
|
12
13
|
import { DEFAULT_BOOK_FONT_CLASS } from '../book-components/BookEditor/config';
|
|
@@ -17,6 +18,7 @@ import type { SendMessageToLlmChatFunction } from '../book-components/Chat/hooks
|
|
|
17
18
|
import { useSendMessageToLlmChat } from '../book-components/Chat/hooks/useSendMessageToLlmChat';
|
|
18
19
|
import { LlmChat } from '../book-components/Chat/LlmChat/LlmChat';
|
|
19
20
|
import type { LlmChatProps } from '../book-components/Chat/LlmChat/LlmChatProps';
|
|
21
|
+
import { MarkdownContent } from '../book-components/Chat/MarkdownContent/MarkdownContent';
|
|
20
22
|
import { NORMAL_FLOW } from '../book-components/Chat/MockedChat/constants';
|
|
21
23
|
import { FAST_FLOW } from '../book-components/Chat/MockedChat/constants';
|
|
22
24
|
import { SLOW_FLOW } from '../book-components/Chat/MockedChat/constants';
|
|
@@ -40,8 +42,6 @@ import type { ChatMessage } from '../book-components/Chat/types/ChatMessage';
|
|
|
40
42
|
import type { ChatParticipant } from '../book-components/Chat/types/ChatParticipant';
|
|
41
43
|
import type { MessageButton } from '../book-components/Chat/utils/parseMessageButtons';
|
|
42
44
|
import { parseMessageButtons } from '../book-components/Chat/utils/parseMessageButtons';
|
|
43
|
-
import { renderMarkdown } from '../book-components/Chat/utils/renderMarkdown';
|
|
44
|
-
import { isMarkdownContent } from '../book-components/Chat/utils/renderMarkdown';
|
|
45
45
|
import { ArrowIcon } from '../book-components/icons/ArrowIcon';
|
|
46
46
|
import { AttachmentIcon } from '../book-components/icons/AttachmentIcon';
|
|
47
47
|
import { CloseIcon } from '../book-components/icons/CloseIcon';
|
|
@@ -61,6 +61,7 @@ export type { AvatarProfileProps };
|
|
|
61
61
|
export { AvatarProfile };
|
|
62
62
|
export type { AvatarProfileFromSourceProps };
|
|
63
63
|
export { AvatarProfileFromSource };
|
|
64
|
+
export { DEFAULT_BOOK_EDITOR_HEIGHT };
|
|
64
65
|
export type { BookEditorProps };
|
|
65
66
|
export { BookEditor };
|
|
66
67
|
export { DEFAULT_BOOK_FONT_CLASS };
|
|
@@ -71,6 +72,7 @@ export type { SendMessageToLlmChatFunction };
|
|
|
71
72
|
export { useSendMessageToLlmChat };
|
|
72
73
|
export { LlmChat };
|
|
73
74
|
export type { LlmChatProps };
|
|
75
|
+
export { MarkdownContent };
|
|
74
76
|
export { NORMAL_FLOW };
|
|
75
77
|
export { FAST_FLOW };
|
|
76
78
|
export { SLOW_FLOW };
|
|
@@ -94,8 +96,6 @@ export type { ChatMessage };
|
|
|
94
96
|
export type { ChatParticipant };
|
|
95
97
|
export type { MessageButton };
|
|
96
98
|
export { parseMessageButtons };
|
|
97
|
-
export { renderMarkdown };
|
|
98
|
-
export { isMarkdownContent };
|
|
99
99
|
export { ArrowIcon };
|
|
100
100
|
export { AttachmentIcon };
|
|
101
101
|
export { CloseIcon };
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { BOOK_LANGUAGE_VERSION, PROMPTBOOK_ENGINE_VERSION } from '../version';
|
|
2
2
|
import { createAgentModelRequirements } from '../book-2.0/agent-source/createAgentModelRequirements';
|
|
3
3
|
import { createAgentModelRequirementsWithCommitments } from '../book-2.0/agent-source/createAgentModelRequirementsWithCommitments';
|
|
4
|
+
import { PADDING_LINES } from '../book-2.0/agent-source/padBook';
|
|
5
|
+
import { padBook } from '../book-2.0/agent-source/padBook';
|
|
4
6
|
import { parseAgentSource } from '../book-2.0/agent-source/parseAgentSource';
|
|
5
7
|
import { parseParameters } from '../book-2.0/agent-source/parseParameters';
|
|
6
8
|
import { isValidBook } from '../book-2.0/agent-source/string_book';
|
|
@@ -24,6 +26,7 @@ import { ADMIN_EMAIL } from '../config';
|
|
|
24
26
|
import { ADMIN_GITHUB_NAME } from '../config';
|
|
25
27
|
import { CLAIM } from '../config';
|
|
26
28
|
import { PROMPTBOOK_COLOR } from '../config';
|
|
29
|
+
import { PROMPTBOOK_SYNTAX_COLORS } from '../config';
|
|
27
30
|
import { PROMPTBOOK_CHAT_COLOR } from '../config';
|
|
28
31
|
import { USER_CHAT_COLOR } from '../config';
|
|
29
32
|
import { DEFAULT_BOOK_TITLE } from '../config';
|
|
@@ -176,6 +179,8 @@ import { REMOTE_SERVER_URLS } from '../../servers';
|
|
|
176
179
|
export { BOOK_LANGUAGE_VERSION, PROMPTBOOK_ENGINE_VERSION };
|
|
177
180
|
export { createAgentModelRequirements };
|
|
178
181
|
export { createAgentModelRequirementsWithCommitments };
|
|
182
|
+
export { PADDING_LINES };
|
|
183
|
+
export { padBook };
|
|
179
184
|
export { parseAgentSource };
|
|
180
185
|
export { parseParameters };
|
|
181
186
|
export { isValidBook };
|
|
@@ -199,6 +204,7 @@ export { ADMIN_EMAIL };
|
|
|
199
204
|
export { ADMIN_GITHUB_NAME };
|
|
200
205
|
export { CLAIM };
|
|
201
206
|
export { PROMPTBOOK_COLOR };
|
|
207
|
+
export { PROMPTBOOK_SYNTAX_COLORS };
|
|
202
208
|
export { PROMPTBOOK_CHAT_COLOR };
|
|
203
209
|
export { USER_CHAT_COLOR };
|
|
204
210
|
export { DEFAULT_BOOK_TITLE };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { string_book } from './string_book';
|
|
2
|
+
/**
|
|
3
|
+
* Number of padding lines to add at the end of the book content
|
|
4
|
+
*
|
|
5
|
+
* @public exported from `@promptbook/core`
|
|
6
|
+
*/
|
|
7
|
+
export declare const PADDING_LINES = 11;
|
|
8
|
+
/**
|
|
9
|
+
* A function that adds padding to the book content
|
|
10
|
+
*
|
|
11
|
+
* @public exported from `@promptbook/core`
|
|
12
|
+
*/
|
|
13
|
+
export declare function padBook(content: string_book): string_book;
|
|
14
|
+
/**
|
|
15
|
+
* TODO: [🧠] Maybe export
|
|
16
|
+
*/
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { AgentBasicInformation } from '../../../book-2.0/agent-source/AgentBasicInformation';
|
|
2
|
+
import type { string_book } from '../../../book-2.0/agent-source/string_book';
|
|
2
3
|
import type { string_css_class } from '../../../types/typeAliases';
|
|
3
4
|
/**
|
|
4
5
|
* Props of `AvatarProfile`
|
|
@@ -10,6 +11,10 @@ export type AvatarProfileProps = {
|
|
|
10
11
|
* Agent to be shown
|
|
11
12
|
*/
|
|
12
13
|
readonly agent: AgentBasicInformation;
|
|
14
|
+
/**
|
|
15
|
+
* The source of the agent, which will be displayed in the BookEditor.
|
|
16
|
+
*/
|
|
17
|
+
readonly agentSource: string_book;
|
|
13
18
|
/**
|
|
14
19
|
* Optional CSS class name which will be added to root <div> element
|
|
15
20
|
*/
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import type { string_book } from '../../../book-2.0/agent-source/string_book';
|
|
3
|
+
type AvatarProfileTooltipProps = {
|
|
4
|
+
agentSource: string_book;
|
|
5
|
+
position: {
|
|
6
|
+
top: number;
|
|
7
|
+
left: number;
|
|
8
|
+
};
|
|
9
|
+
};
|
|
10
|
+
/**
|
|
11
|
+
*
|
|
12
|
+
* @private internal subcomponent of `<Chat>` component
|
|
13
|
+
*/
|
|
14
|
+
export declare const AvatarProfileTooltip: import("react").ForwardRefExoticComponent<AvatarProfileTooltipProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
15
|
+
export {};
|
|
@@ -1,13 +1,25 @@
|
|
|
1
1
|
import type { CSSProperties } from 'react';
|
|
2
2
|
import type { Promisable } from 'type-fest';
|
|
3
|
-
import type
|
|
4
|
-
import type { string_knowledge_source_content } from '../../types/typeAliases';
|
|
3
|
+
import { type string_book } from '../../book-2.0/agent-source/string_book';
|
|
4
|
+
import type { number_percent, number_positive, string_css_value, string_knowledge_source_content } from '../../types/typeAliases';
|
|
5
|
+
/**
|
|
6
|
+
* Default height of the book editor
|
|
7
|
+
*
|
|
8
|
+
* Note: This height is computed based on the number of lines in the default book + padding multiplied by an estimated line height.
|
|
9
|
+
*
|
|
10
|
+
* @public exported from `@promptbook/components`
|
|
11
|
+
*/
|
|
12
|
+
export declare const DEFAULT_BOOK_EDITOR_HEIGHT: number;
|
|
5
13
|
/**
|
|
6
14
|
* Props of `BookEditor`
|
|
7
15
|
*
|
|
8
16
|
* @public exported from `@promptbook/components`
|
|
9
17
|
*/
|
|
10
18
|
export type BookEditorProps = {
|
|
19
|
+
/**
|
|
20
|
+
* The source of the agent to be displayed in the editor.
|
|
21
|
+
*/
|
|
22
|
+
readonly agentSource?: string_book;
|
|
11
23
|
/**
|
|
12
24
|
* Additional CSS classes to apply to the editor container.
|
|
13
25
|
*/
|
|
@@ -17,10 +29,21 @@ export type BookEditorProps = {
|
|
|
17
29
|
*/
|
|
18
30
|
readonly style?: CSSProperties;
|
|
19
31
|
/**
|
|
20
|
-
*
|
|
21
|
-
*
|
|
32
|
+
* Height of the `BookEditor` component
|
|
33
|
+
*
|
|
34
|
+
* - You can use any valid CSS value, e.g., `500px`, `100%`, `50vh`, etc.
|
|
35
|
+
* - If not set, the default height is `DEFAULT_BOOK_EDITOR_HEIGHT`.
|
|
36
|
+
* - If set to `null`, the height should be controlled entirely via `className` or `style`, otherwise the editor will have zero height.
|
|
37
|
+
*
|
|
38
|
+
* @default `DEFAULT_BOOK_EDITOR_HEIGHT`
|
|
39
|
+
*/
|
|
40
|
+
readonly height?: string_css_value | null;
|
|
41
|
+
/**
|
|
42
|
+
* Zoom level of the editor
|
|
43
|
+
*
|
|
44
|
+
* @default 1 (100%)
|
|
22
45
|
*/
|
|
23
|
-
readonly
|
|
46
|
+
readonly zoom?: number_percent & number_positive;
|
|
24
47
|
/**
|
|
25
48
|
* The book which is being edited.
|
|
26
49
|
*/
|
|
@@ -42,10 +65,45 @@ export type BookEditorProps = {
|
|
|
42
65
|
*/
|
|
43
66
|
readonly isBorderRadiusDisabled?: boolean;
|
|
44
67
|
/**
|
|
45
|
-
* If true,
|
|
46
|
-
*
|
|
68
|
+
* If true, the editor is in read-only mode
|
|
69
|
+
*
|
|
70
|
+
* @default false
|
|
71
|
+
*/
|
|
72
|
+
readonly isReadonly?: boolean;
|
|
73
|
+
/**
|
|
74
|
+
* Optional translations for the component
|
|
75
|
+
*/
|
|
76
|
+
readonly translations?: {
|
|
77
|
+
/**
|
|
78
|
+
* Message to show when trying to edit a readonly editor
|
|
79
|
+
*
|
|
80
|
+
* @default "You cannot edit this book"
|
|
81
|
+
*/
|
|
82
|
+
readonly readonlyMessage?: string;
|
|
83
|
+
};
|
|
84
|
+
/**
|
|
85
|
+
* If true, shows the download button in the action bar.
|
|
86
|
+
* By default, the download button is shown.
|
|
87
|
+
*/
|
|
88
|
+
readonly isDownloadButtonShown?: boolean;
|
|
89
|
+
/**
|
|
90
|
+
* If true, shows the about button in the action bar.
|
|
91
|
+
* By default, the about button is shown.
|
|
92
|
+
*/
|
|
93
|
+
readonly isAboutButtonShown?: boolean;
|
|
94
|
+
/**
|
|
95
|
+
* If defined, the editor will be synced with other editors with the same sync configuration.
|
|
47
96
|
*/
|
|
48
|
-
readonly
|
|
97
|
+
readonly sync?: {
|
|
98
|
+
/**
|
|
99
|
+
* The URL of the y-websocket server.
|
|
100
|
+
*/
|
|
101
|
+
readonly serverUrl: string;
|
|
102
|
+
/**
|
|
103
|
+
* The name of the room to join.
|
|
104
|
+
*/
|
|
105
|
+
readonly roomName: string;
|
|
106
|
+
};
|
|
49
107
|
};
|
|
50
108
|
/**
|
|
51
109
|
* Renders a book editor
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
type BookEditorActionbarProps = {
|
|
2
|
+
value: string | undefined;
|
|
3
|
+
isDownloadButtonShown?: boolean;
|
|
4
|
+
isAboutButtonShown?: boolean;
|
|
5
|
+
};
|
|
6
|
+
/**
|
|
7
|
+
*
|
|
8
|
+
* @private Internal component used by `BookEditor`
|
|
9
|
+
*/
|
|
10
|
+
export declare function BookEditorActionbar(props: BookEditorActionbarProps): import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export {};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { string_markdown } from '../../../types/typeAliases';
|
|
2
|
+
/**
|
|
3
|
+
* Renders markdown content with support for code highlighting, math, and tables.
|
|
4
|
+
*
|
|
5
|
+
* @public exported from `@promptbook/components`
|
|
6
|
+
*/
|
|
7
|
+
export declare function MarkdownContent({ content }: {
|
|
8
|
+
content: string_markdown;
|
|
9
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
/**
|
|
11
|
+
* TODO: !!! Split into multiple files
|
|
12
|
+
*/
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import type { id, string_color, string_person_fullname, string_url_image } from '../../../types/typeAliases';
|
|
2
2
|
import { Color } from '../../../utils/color/Color';
|
|
3
|
+
import type { string_book } from '../../../book-2.0/agent-source/string_book';
|
|
3
4
|
/**
|
|
4
5
|
* A participant in the chat
|
|
5
6
|
*
|
|
@@ -26,6 +27,10 @@ export type ChatParticipant = {
|
|
|
26
27
|
* Color associated with the participant
|
|
27
28
|
*/
|
|
28
29
|
color?: string_color | Color;
|
|
30
|
+
/**
|
|
31
|
+
* Agent source for avatar profile
|
|
32
|
+
*/
|
|
33
|
+
agentSource?: string_book;
|
|
29
34
|
};
|
|
30
35
|
/**
|
|
31
36
|
* TODO: [🕛] Unite `AgentBasicInformation`, `ChatParticipant`, `LlmExecutionTools` + `LlmToolsMetadata`
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { JSX } from 'react';
|
|
2
|
+
type DropdownProps = {
|
|
3
|
+
actions: Array<{
|
|
4
|
+
icon: JSX.Element;
|
|
5
|
+
name: string;
|
|
6
|
+
onClick: () => void;
|
|
7
|
+
}>;
|
|
8
|
+
};
|
|
9
|
+
/**
|
|
10
|
+
* @@@
|
|
11
|
+
*
|
|
12
|
+
* @private internal subcomponent used by various components
|
|
13
|
+
*/
|
|
14
|
+
export declare function Dropdown({ actions }: DropdownProps): import("react/jsx-runtime").JSX.Element;
|
|
15
|
+
export {};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
/**
|
|
3
|
+
*
|
|
4
|
+
* @private internal subcomponent used by various components
|
|
5
|
+
*/
|
|
6
|
+
export declare function Modal({ children, onClose, className, }: {
|
|
7
|
+
children: ReactNode;
|
|
8
|
+
onClose: () => void;
|
|
9
|
+
className?: string;
|
|
10
|
+
}): import("react").ReactPortal;
|
|
11
|
+
/**
|
|
12
|
+
* TODO: !!!! Use this also for feedback modal in Chat component - Make modals DRY
|
|
13
|
+
*/
|
|
@@ -4,4 +4,4 @@ import type { string_css_class } from '../../../types/typeAliases';
|
|
|
4
4
|
*
|
|
5
5
|
* @private within the `@promptbook/components`
|
|
6
6
|
*/
|
|
7
|
-
export declare function classNames(...classes: Array<string_css_class | undefined | false | null>): string_css_class;
|
|
7
|
+
export declare function classNames(...classes: Array<string_css_class | undefined | false | null | 0>): string_css_class;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { SVGProps } from 'react';
|
|
2
|
+
/**
|
|
3
|
+
* @@@
|
|
4
|
+
*
|
|
5
|
+
* @private internal subcomponent used by various components
|
|
6
|
+
*/
|
|
7
|
+
export declare function MenuIcon(props: SVGProps<SVGSVGElement> & {
|
|
8
|
+
size?: number;
|
|
9
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
/**
|
|
11
|
+
* TODO: !!! Mark all components to not be used outside of browser
|
|
12
|
+
*/
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { Command as Program } from 'commander';
|
|
2
|
+
import { $side_effect } from '../../utils/organization/$side_effect';
|
|
2
3
|
/**
|
|
3
4
|
* Initializes `boilerplate` command for Promptbook CLI utilities
|
|
4
5
|
*
|
|
@@ -6,7 +7,7 @@ import type { Command as Program } from 'commander';
|
|
|
6
7
|
*
|
|
7
8
|
* @private internal function of `promptbookCli`
|
|
8
9
|
*/
|
|
9
|
-
export declare function $initializeBoilerplateCommand(program: Program):
|
|
10
|
+
export declare function $initializeBoilerplateCommand(program: Program): $side_effect;
|
|
10
11
|
/**
|
|
11
12
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
12
13
|
* Note: [🟡] Code in this file should never be published outside of `@promptbook/cli`
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { Command as Program } from 'commander';
|
|
2
|
+
import { $side_effect } from '../../utils/organization/$side_effect';
|
|
2
3
|
/**
|
|
3
4
|
* Initializes `about` command for Promptbook CLI utilities
|
|
4
5
|
*
|
|
@@ -6,7 +7,7 @@ import type { Command as Program } from 'commander';
|
|
|
6
7
|
*
|
|
7
8
|
* @private internal function of `promptbookCli`
|
|
8
9
|
*/
|
|
9
|
-
export declare function $initializeAboutCommand(program: Program):
|
|
10
|
+
export declare function $initializeAboutCommand(program: Program): $side_effect;
|
|
10
11
|
/**
|
|
11
12
|
* TODO: [🗽] Unite branding and make single place for it
|
|
12
13
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { Command as Program } from 'commander';
|
|
2
|
+
import { $side_effect } from '../../utils/organization/$side_effect';
|
|
2
3
|
/**
|
|
3
4
|
* Initializes testing `hello` command for Promptbook CLI utilities
|
|
4
5
|
*
|
|
@@ -6,7 +7,7 @@ import type { Command as Program } from 'commander';
|
|
|
6
7
|
*
|
|
7
8
|
* @private internal function of `promptbookCli`
|
|
8
9
|
*/
|
|
9
|
-
export declare function $initializeHelloCommand(program: Program):
|
|
10
|
+
export declare function $initializeHelloCommand(program: Program): $side_effect;
|
|
10
11
|
/**
|
|
11
12
|
* TODO: [🧠][🐣] Make here some easter egg with generated hello greeting via LLM models
|
|
12
13
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { Command as Program } from 'commander';
|
|
2
|
+
import { $side_effect } from '../../utils/organization/$side_effect';
|
|
2
3
|
/**
|
|
3
4
|
* Initializes `list-models` command for Promptbook CLI utilities
|
|
4
5
|
*
|
|
@@ -6,7 +7,7 @@ import type { Command as Program } from 'commander';
|
|
|
6
7
|
*
|
|
7
8
|
* @private internal function of `promptbookCli`
|
|
8
9
|
*/
|
|
9
|
-
export declare function $initializeListModelsCommand(program: Program):
|
|
10
|
+
export declare function $initializeListModelsCommand(program: Program): $side_effect;
|
|
10
11
|
/**
|
|
11
12
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
12
13
|
* Note: [🟡] Code in this file should never be published outside of `@promptbook/cli`
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { Command as Program } from 'commander';
|
|
2
|
+
import { $side_effect } from '../../utils/organization/$side_effect';
|
|
2
3
|
/**
|
|
3
4
|
* Initializes `list-scrapers` command for Promptbook CLI utilities
|
|
4
5
|
*
|
|
@@ -6,7 +7,7 @@ import type { Command as Program } from 'commander';
|
|
|
6
7
|
*
|
|
7
8
|
* @private internal function of `promptbookCli`
|
|
8
9
|
*/
|
|
9
|
-
export declare function $initializeListScrapersCommand(program: Program):
|
|
10
|
+
export declare function $initializeListScrapersCommand(program: Program): $side_effect;
|
|
10
11
|
/**
|
|
11
12
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
12
13
|
* Note: [🟡] Code in this file should never be published outside of `@promptbook/cli`
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { Command as Program } from 'commander';
|
|
2
|
+
import { $side_effect } from '../../utils/organization/$side_effect';
|
|
2
3
|
/**
|
|
3
4
|
* Initializes `login` command for Promptbook CLI utilities
|
|
4
5
|
*
|
|
@@ -6,7 +7,7 @@ import type { Command as Program } from 'commander';
|
|
|
6
7
|
*
|
|
7
8
|
* @private internal function of `promptbookCli`
|
|
8
9
|
*/
|
|
9
|
-
export declare function $initializeLoginCommand(program: Program):
|
|
10
|
+
export declare function $initializeLoginCommand(program: Program): $side_effect;
|
|
10
11
|
/**
|
|
11
12
|
* TODO: Implement non-interactive login
|
|
12
13
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { Command as Program } from 'commander';
|
|
2
|
+
import { $side_effect } from '../../utils/organization/$side_effect';
|
|
2
3
|
/**
|
|
3
4
|
* Initializes `make` command for Promptbook CLI utilities
|
|
4
5
|
*
|
|
@@ -6,7 +7,7 @@ import type { Command as Program } from 'commander';
|
|
|
6
7
|
*
|
|
7
8
|
* @private internal function of `promptbookCli`
|
|
8
9
|
*/
|
|
9
|
-
export declare function $initializeMakeCommand(program: Program):
|
|
10
|
+
export declare function $initializeMakeCommand(program: Program): $side_effect;
|
|
10
11
|
/**
|
|
11
12
|
* TODO: [🥃][main] !!3 Allow `ptbk make` without configuring any llm tools
|
|
12
13
|
* TODO: [0] DRY Javascript and typescript - Maybe make ONLY typescript and for javascript just remove types
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { Command as Program } from 'commander';
|
|
2
|
+
import { $side_effect } from '../../utils/organization/$side_effect';
|
|
2
3
|
/**
|
|
3
4
|
* Initializes `prettify` command for Promptbook CLI utilities
|
|
4
5
|
*
|
|
@@ -6,7 +7,7 @@ import type { Command as Program } from 'commander';
|
|
|
6
7
|
*
|
|
7
8
|
* @private internal function of `promptbookCli`
|
|
8
9
|
*/
|
|
9
|
-
export declare function $initializePrettifyCommand(program: Program):
|
|
10
|
+
export declare function $initializePrettifyCommand(program: Program): $side_effect;
|
|
10
11
|
/**
|
|
11
12
|
* TODO: [😶] Unite folder listing
|
|
12
13
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { Command as Program } from 'commander';
|
|
2
|
+
import { $side_effect } from '../../utils/organization/$side_effect';
|
|
2
3
|
/**
|
|
3
4
|
* Initializes `run` command for Promptbook CLI utilities
|
|
4
5
|
*
|
|
@@ -6,7 +7,7 @@ import type { Command as Program } from 'commander';
|
|
|
6
7
|
*
|
|
7
8
|
* @private internal function of `promptbookCli`
|
|
8
9
|
*/
|
|
9
|
-
export declare function $initializeRunCommand(program: Program):
|
|
10
|
+
export declare function $initializeRunCommand(program: Program): $side_effect;
|
|
10
11
|
/**
|
|
11
12
|
* TODO: !!5 Catch and wrap all errors from CLI
|
|
12
13
|
* TODO: [🧠] Pass `maxExecutionAttempts`, `csvSettings`
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { Command as Program } from 'commander';
|
|
2
|
+
import { $side_effect } from '../../utils/organization/$side_effect';
|
|
2
3
|
/**
|
|
3
4
|
* Initializes `start-server` command for Promptbook CLI utilities
|
|
4
5
|
*
|
|
@@ -6,7 +7,7 @@ import type { Command as Program } from 'commander';
|
|
|
6
7
|
*
|
|
7
8
|
* @private internal function of `promptbookCli`
|
|
8
9
|
*/
|
|
9
|
-
export declare function $initializeStartServerCommand(program: Program):
|
|
10
|
+
export declare function $initializeStartServerCommand(program: Program): $side_effect;
|
|
10
11
|
/**
|
|
11
12
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
12
13
|
* Note: [🟡] Code in this file should never be published outside of `@promptbook/cli`
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { Command as Program } from 'commander';
|
|
2
|
+
import { $side_effect } from '../../utils/organization/$side_effect';
|
|
2
3
|
/**
|
|
3
4
|
* Initializes `test` command for Promptbook CLI utilities
|
|
4
5
|
*
|
|
@@ -6,7 +7,7 @@ import type { Command as Program } from 'commander';
|
|
|
6
7
|
*
|
|
7
8
|
* @private internal function of `promptbookCli`
|
|
8
9
|
*/
|
|
9
|
-
export declare function $initializeTestCommand(program: Program):
|
|
10
|
+
export declare function $initializeTestCommand(program: Program): $side_effect;
|
|
10
11
|
/**
|
|
11
12
|
* TODO: [😶] Unite folder listing
|
|
12
13
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { Command } from 'commander';
|
|
2
|
+
import { $side_effect } from '../../utils/organization/$side_effect';
|
|
2
3
|
/**
|
|
3
4
|
* Note: `$` is used to indicate that this function is not a pure function - it registers an option in the CLI
|
|
4
5
|
*
|
|
5
6
|
* @private utility of CLI
|
|
6
7
|
*/
|
|
7
|
-
export declare function $addGlobalOptionsToCommand(command: Command):
|
|
8
|
+
export declare function $addGlobalOptionsToCommand(command: Command): $side_effect;
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
import type { SetOptional, WritableDeep } from 'type-fest';
|
|
2
2
|
import type { PipelineJson } from '../../../pipeline/PipelineJson/PipelineJson';
|
|
3
3
|
import type { TaskJson } from '../../../pipeline/PipelineJson/TaskJson';
|
|
4
|
-
import type { string_markdown_text } from '../../../types/typeAliases';
|
|
5
|
-
import type { string_name } from '../../../types/typeAliases';
|
|
6
|
-
import type { string_promptbook_documentation_url } from '../../../types/typeAliases';
|
|
4
|
+
import type { string_markdown_text, string_name, string_promptbook_documentation_url } from '../../../types/typeAliases';
|
|
7
5
|
import type { string_SCREAMING_CASE } from '../../../utils/normalization/normalizeTo_SCREAMING_CASE';
|
|
6
|
+
import { $side_effect } from '../../../utils/organization/$side_effect';
|
|
8
7
|
import type { ___and___ } from '../../../utils/organization/___and___';
|
|
9
8
|
import type { CommandUsagePlace } from './CommandUsagePlaces';
|
|
10
9
|
/**
|
|
@@ -98,7 +97,7 @@ export type PipelineHeadCommandParser<TCommand extends CommandBase> = CommonComm
|
|
|
98
97
|
*
|
|
99
98
|
* Note: `$` is used to indicate that this function mutates given `pipelineJson`
|
|
100
99
|
*/
|
|
101
|
-
$applyToPipelineJson(command: TCommand, $pipelineJson: $PipelineJson):
|
|
100
|
+
$applyToPipelineJson(command: TCommand, $pipelineJson: $PipelineJson): $side_effect;
|
|
102
101
|
/**
|
|
103
102
|
* Reads the command from the `PipelineJson`
|
|
104
103
|
*
|
|
@@ -126,7 +125,7 @@ export type PipelineTaskCommandParser<TCommand extends CommandBase> = CommonComm
|
|
|
126
125
|
*
|
|
127
126
|
* Note: `$` is used to indicate that this function mutates given `taskJson` and/or `pipelineJson`
|
|
128
127
|
*/
|
|
129
|
-
$applyToTaskJson(command: TCommand, $taskJson: $TaskJson, $pipelineJson: $PipelineJson):
|
|
128
|
+
$applyToTaskJson(command: TCommand, $taskJson: $TaskJson, $pipelineJson: $PipelineJson): $side_effect;
|
|
130
129
|
/**
|
|
131
130
|
* Reads the command from the `TaskJson`
|
|
132
131
|
*
|
|
@@ -45,7 +45,20 @@ export declare const CLAIM = "Turn your company's scattered knowledge into AI re
|
|
|
45
45
|
*/
|
|
46
46
|
export declare const PROMPTBOOK_COLOR: import("./utils/take/interfaces/ITakeChain").WithTake<Color>;
|
|
47
47
|
/**
|
|
48
|
-
*
|
|
48
|
+
* Colors for syntax highlighting in the `<BookEditor/>`
|
|
49
|
+
*
|
|
50
|
+
* TODO: [🗽] Unite branding and make single place for it
|
|
51
|
+
*
|
|
52
|
+
* @public exported from `@promptbook/core`
|
|
53
|
+
*/
|
|
54
|
+
export declare const PROMPTBOOK_SYNTAX_COLORS: {
|
|
55
|
+
readonly TITLE: import("./utils/take/interfaces/ITakeChain").WithTake<Color>;
|
|
56
|
+
readonly LINE: import("./utils/take/interfaces/ITakeChain").WithTake<Color>;
|
|
57
|
+
readonly COMMITMENT: import("./utils/take/interfaces/ITakeChain").WithTake<Color>;
|
|
58
|
+
readonly PARAMETER: import("./utils/take/interfaces/ITakeChain").WithTake<Color>;
|
|
59
|
+
};
|
|
60
|
+
/**
|
|
61
|
+
* Chat color of the Promptbook (in chat)
|
|
49
62
|
*
|
|
50
63
|
* TODO: [🗽] Unite branding and make single place for it
|
|
51
64
|
*
|