@promptbook/fake-llm 0.105.0-8 → 0.105.0

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.
Files changed (114) hide show
  1. package/README.md +0 -4
  2. package/esm/index.es.js +150 -4044
  3. package/esm/index.es.js.map +1 -1
  4. package/esm/typings/src/_packages/browser.index.d.ts +2 -0
  5. package/esm/typings/src/_packages/components.index.d.ts +20 -0
  6. package/esm/typings/src/_packages/core.index.d.ts +21 -11
  7. package/esm/typings/src/_packages/node.index.d.ts +2 -0
  8. package/esm/typings/src/_packages/openai.index.d.ts +4 -0
  9. package/esm/typings/src/_packages/types.index.d.ts +32 -2
  10. package/esm/typings/src/_packages/utils.index.d.ts +2 -0
  11. package/esm/typings/src/book-2.0/agent-source/AgentBasicInformation.d.ts +10 -1
  12. package/esm/typings/src/book-2.0/agent-source/parseTeamCommitment.d.ts +28 -0
  13. package/esm/typings/src/book-components/BookEditor/BookEditor.d.ts +1 -1
  14. package/esm/typings/src/book-components/Chat/AgentChat/AgentChatProps.d.ts +5 -0
  15. package/esm/typings/src/book-components/Chat/AgentChip/AgentChip.d.ts +67 -0
  16. package/esm/typings/src/book-components/Chat/AgentChip/index.d.ts +2 -0
  17. package/esm/typings/src/book-components/Chat/Chat/ChatMessageItem.d.ts +33 -1
  18. package/esm/typings/src/book-components/Chat/Chat/ChatProps.d.ts +87 -6
  19. package/esm/typings/src/book-components/Chat/Chat/ChatSoundToggle.d.ts +23 -0
  20. package/esm/typings/src/book-components/Chat/Chat/ClockIcon.d.ts +9 -0
  21. package/esm/typings/src/book-components/Chat/LlmChat/FriendlyErrorMessage.d.ts +20 -0
  22. package/esm/typings/src/book-components/Chat/LlmChat/LlmChatProps.d.ts +13 -0
  23. package/esm/typings/src/book-components/Chat/SourceChip/SourceChip.d.ts +35 -0
  24. package/esm/typings/src/book-components/Chat/SourceChip/index.d.ts +2 -0
  25. package/esm/typings/src/book-components/Chat/effects/ChatEffectsSystem.d.ts +14 -0
  26. package/esm/typings/src/book-components/Chat/effects/components/ConfettiEffect.d.ts +18 -0
  27. package/esm/typings/src/book-components/Chat/effects/components/HeartsEffect.d.ts +18 -0
  28. package/esm/typings/src/book-components/Chat/effects/configs/defaultEffectConfigs.d.ts +7 -0
  29. package/esm/typings/src/book-components/Chat/effects/index.d.ts +18 -0
  30. package/esm/typings/src/book-components/Chat/effects/types/ChatEffect.d.ts +20 -0
  31. package/esm/typings/src/book-components/Chat/effects/types/ChatEffectConfig.d.ts +21 -0
  32. package/esm/typings/src/book-components/Chat/effects/types/ChatEffectType.d.ts +6 -0
  33. package/esm/typings/src/book-components/Chat/effects/types/ChatEffectsSystemProps.d.ts +32 -0
  34. package/esm/typings/src/book-components/Chat/effects/utils/detectEffects.d.ts +12 -0
  35. package/esm/typings/src/book-components/Chat/types/ChatMessage.d.ts +34 -6
  36. package/esm/typings/src/book-components/Chat/types/ChatParticipant.d.ts +8 -0
  37. package/esm/typings/src/book-components/Chat/utils/createTeamToolNameFromUrl.d.ts +12 -0
  38. package/esm/typings/src/book-components/Chat/utils/getToolCallChipletText.d.ts +40 -0
  39. package/esm/typings/src/book-components/Chat/utils/loadAgentProfile.d.ts +69 -0
  40. package/esm/typings/src/book-components/Chat/utils/parseCitationsFromContent.d.ts +53 -0
  41. package/esm/typings/src/book-components/Chat/utils/resolveCitationUrl.d.ts +11 -0
  42. package/esm/typings/src/book-components/Chat/utils/resolveCitationUrl.test.d.ts +1 -0
  43. package/esm/typings/src/book-components/Chat/utils/toolCallParsing.d.ts +64 -0
  44. package/esm/typings/src/book-components/icons/EmailIcon.d.ts +15 -0
  45. package/esm/typings/src/commitments/TEAM/TEAM.d.ts +45 -0
  46. package/esm/typings/src/commitments/TEMPLATE/TEMPLATE.d.ts +44 -0
  47. package/esm/typings/src/commitments/TEMPLATE/TEMPLATE.test.d.ts +1 -0
  48. package/esm/typings/src/commitments/USE_BROWSER/USE_BROWSER.d.ts +19 -1
  49. package/esm/typings/src/commitments/USE_BROWSER/fetchUrlContent.d.ts +22 -0
  50. package/esm/typings/src/commitments/USE_BROWSER/fetchUrlContentViaBrowser.d.ts +13 -0
  51. package/esm/typings/src/commitments/USE_EMAIL/USE_EMAIL.d.ts +48 -0
  52. package/esm/typings/src/commitments/USE_EMAIL/resolveSendEmailToolForNode.d.ts +11 -0
  53. package/esm/typings/src/commitments/USE_EMAIL/sendEmailViaBrowser.d.ts +18 -0
  54. package/esm/typings/src/commitments/USE_IMAGE_GENERATOR/USE_IMAGE_GENERATOR.d.ts +46 -0
  55. package/esm/typings/src/commitments/USE_IMAGE_GENERATOR/USE_IMAGE_GENERATOR.test.d.ts +1 -0
  56. package/esm/typings/src/commitments/USE_SEARCH_ENGINE/USE_SEARCH_ENGINE.d.ts +5 -0
  57. package/esm/typings/src/commitments/USE_SEARCH_ENGINE/USE_SEARCH_ENGINE.test.d.ts +1 -0
  58. package/esm/typings/src/commitments/USE_TIME/USE_TIME.d.ts +6 -0
  59. package/esm/typings/src/commitments/_base/BaseCommitmentDefinition.d.ts +6 -0
  60. package/esm/typings/src/commitments/_base/CommitmentDefinition.d.ts +6 -0
  61. package/esm/typings/src/commitments/_base/formatOptionalInstructionBlock.d.ts +6 -0
  62. package/esm/typings/src/commitments/_common/commitmentToolFunctions.d.ts +26 -0
  63. package/esm/typings/src/commitments/_common/getAllCommitmentDefinitions.d.ts +8 -0
  64. package/esm/typings/src/commitments/_common/getAllCommitmentTypes.d.ts +8 -0
  65. package/esm/typings/src/commitments/_common/getAllCommitmentsToolFunctionsForBrowser.d.ts +9 -0
  66. package/esm/typings/src/commitments/_common/getAllCommitmentsToolFunctionsForNode.d.ts +13 -0
  67. package/esm/typings/src/commitments/_common/getAllCommitmentsToolTitles.d.ts +7 -0
  68. package/esm/typings/src/commitments/_common/getCommitmentDefinition.d.ts +10 -0
  69. package/esm/typings/src/commitments/_common/getGroupedCommitmentDefinitions.d.ts +17 -0
  70. package/esm/typings/src/commitments/_common/isCommitmentSupported.d.ts +9 -0
  71. package/esm/typings/src/commitments/index.d.ts +5 -58
  72. package/esm/typings/src/config.d.ts +6 -0
  73. package/esm/typings/src/constants.d.ts +129 -0
  74. package/esm/typings/src/executables/$provideExecutablesForNode.d.ts +1 -0
  75. package/esm/typings/src/execution/AvailableModel.d.ts +5 -4
  76. package/esm/typings/src/execution/PromptResult.d.ts +2 -19
  77. package/esm/typings/src/execution/createPipelineExecutor/10-executePipeline.d.ts +1 -1
  78. package/esm/typings/src/execution/utils/$provideExecutionToolsForNode.d.ts +1 -0
  79. package/esm/typings/src/llm-providers/agent/Agent.d.ts +15 -1
  80. package/esm/typings/src/llm-providers/agent/AgentLlmExecutionTools.d.ts +6 -1
  81. package/esm/typings/src/llm-providers/agent/RemoteAgent.d.ts +5 -0
  82. package/esm/typings/src/llm-providers/google/createGoogleExecutionTools.d.ts +1 -0
  83. package/esm/typings/src/llm-providers/openai/OpenAiAgentExecutionTools.d.ts +43 -0
  84. package/esm/typings/src/llm-providers/openai/OpenAiAssistantExecutionTools.d.ts +4 -2
  85. package/esm/typings/src/llm-providers/openai/OpenAiCompatibleExecutionTools.d.ts +1 -1
  86. package/esm/typings/src/llm-providers/openai/createOpenAiAgentExecutionTools.d.ts +11 -0
  87. package/esm/typings/src/llm-providers/openai/utils/uploadFilesToOpenAi.d.ts +7 -0
  88. package/esm/typings/src/pipeline/prompt-notation.d.ts +27 -2
  89. package/esm/typings/src/pipeline/prompt-notation.test.d.ts +1 -1
  90. package/esm/typings/src/scrapers/_common/register/$provideFilesystemForNode.d.ts +1 -0
  91. package/esm/typings/src/scrapers/_common/register/$provideScrapersForNode.d.ts +1 -0
  92. package/esm/typings/src/scrapers/_common/register/$provideScriptingForNode.d.ts +1 -0
  93. package/esm/typings/src/search-engines/SearchEngine.d.ts +1 -1
  94. package/esm/typings/src/search-engines/bing/BingSearchEngine.d.ts +1 -1
  95. package/esm/typings/src/search-engines/dummy/DummySearchEngine.d.ts +1 -1
  96. package/esm/typings/src/search-engines/google/GoogleSearchEngine.d.ts +1 -1
  97. package/esm/typings/src/search-engines/serp/SerpSearchEngine.d.ts +1 -1
  98. package/esm/typings/src/speech-recognition/OpenAiSpeechRecognition.d.ts +3 -0
  99. package/esm/typings/src/types/ModelRequirements.d.ts +6 -0
  100. package/esm/typings/src/types/Prompt.d.ts +12 -0
  101. package/esm/typings/src/types/ToolCall.d.ts +37 -0
  102. package/esm/typings/src/utils/markdown/extractAllListItemsFromMarkdown.d.ts +1 -2
  103. package/esm/typings/src/utils/markdown/humanizeAiTextEllipsis.d.ts +1 -1
  104. package/esm/typings/src/utils/markdown/humanizeAiTextEmdashed.d.ts +1 -1
  105. package/esm/typings/src/utils/markdown/humanizeAiTextWhitespace.d.ts +1 -1
  106. package/esm/typings/src/utils/markdown/parseMarkdownSection.d.ts +1 -3
  107. package/esm/typings/src/utils/markdown/splitMarkdownIntoSections.d.ts +1 -2
  108. package/esm/typings/src/utils/misc/linguisticHash.d.ts +4 -1
  109. package/esm/typings/src/utils/parameters/templateParameters.d.ts +1 -2
  110. package/esm/typings/src/version.d.ts +1 -1
  111. package/esm/typings/src/wizard/wizard.d.ts +1 -4
  112. package/package.json +2 -2
  113. package/umd/index.umd.js +150 -4044
  114. package/umd/index.umd.js.map +1 -1
@@ -0,0 +1,48 @@
1
+ import { string_javascript_name } from '../../_packages/types.index';
2
+ import type { AgentModelRequirements } from '../../book-2.0/agent-source/AgentModelRequirements';
3
+ import { ToolFunction } from '../../scripting/javascript/JavascriptExecutionToolsOptions';
4
+ import { BaseCommitmentDefinition } from '../_base/BaseCommitmentDefinition';
5
+ /**
6
+ * USE EMAIL commitment definition
7
+ *
8
+ * The `USE EMAIL` commitment enables the agent to send emails.
9
+ *
10
+ * Example usage in agent source:
11
+ *
12
+ * ```book
13
+ * USE EMAIL
14
+ * USE EMAIL Write always formal and polite emails, always greet.
15
+ * ```
16
+ *
17
+ * @private [🪔] Maybe export the commitments through some package
18
+ */
19
+ export declare class UseEmailCommitmentDefinition extends BaseCommitmentDefinition<'USE EMAIL'> {
20
+ constructor();
21
+ get requiresContent(): boolean;
22
+ /**
23
+ * Short one-line description of USE EMAIL.
24
+ */
25
+ get description(): string;
26
+ /**
27
+ * Icon for this commitment.
28
+ */
29
+ get icon(): string;
30
+ /**
31
+ * Markdown documentation for USE EMAIL commitment.
32
+ */
33
+ get documentation(): string;
34
+ applyToAgentModelRequirements(requirements: AgentModelRequirements, content: string): AgentModelRequirements;
35
+ /**
36
+ * Gets human-readable titles for tool functions provided by this commitment.
37
+ */
38
+ getToolTitles(): Record<string_javascript_name, string>;
39
+ /**
40
+ * Gets the `send_email` tool function implementation.
41
+ *
42
+ * Note: [??] This function has implementation both for browser and node, this is the proxied one for browser.
43
+ */
44
+ getToolFunctions(): Record<string_javascript_name, ToolFunction>;
45
+ }
46
+ /**
47
+ * Note: [💞] Ignore a discrepancy between file name and entity name
48
+ */
@@ -0,0 +1,11 @@
1
+ import type { ToolFunction } from '../../_packages/types.index';
2
+ /**
3
+ * Resolves the server-side implementation of the send_email tool for Node.js environments.
4
+ *
5
+ * This uses a lazy require so the core package can still load even if the Agents Server
6
+ * module is unavailable. When the server tool cannot be resolved, a fallback implementation
7
+ * throws a helpful error message.
8
+ *
9
+ * @private internal utility for USE EMAIL commitment
10
+ */
11
+ export declare function resolveSendEmailToolForNode(): ToolFunction;
@@ -0,0 +1,18 @@
1
+ /**
2
+ * Client-side safe wrapper for sending emails.
3
+ *
4
+ * This function proxies requests to the Agents Server API endpoint for email queuing,
5
+ * making it safe to use in browser environments.
6
+ *
7
+ * @param args Email payload containing recipients, subject, and body
8
+ * @param agentsServerUrl The base URL of the agents server (defaults to current origin)
9
+ * @returns Result string from the server-side send_email tool
10
+ *
11
+ * @private internal utility for USE EMAIL commitment
12
+ */
13
+ export declare function sendEmailViaBrowser(args: {
14
+ to: string[];
15
+ cc?: string[];
16
+ subject: string;
17
+ body: string;
18
+ }, agentsServerUrl?: string): Promise<string>;
@@ -0,0 +1,46 @@
1
+ import { string_javascript_name } from '../../_packages/types.index';
2
+ import type { AgentModelRequirements } from '../../book-2.0/agent-source/AgentModelRequirements';
3
+ import { ToolFunction } from '../../scripting/javascript/JavascriptExecutionToolsOptions';
4
+ import { BaseCommitmentDefinition } from '../_base/BaseCommitmentDefinition';
5
+ /**
6
+ * USE IMAGE GENERATOR commitment definition
7
+ *
8
+ * The `USE IMAGE GENERATOR` commitment indicates that the agent should utilize an image generation tool
9
+ * to create images based on text prompts.
10
+ *
11
+ * Example usage in agent source:
12
+ *
13
+ * ```book
14
+ * USE IMAGE GENERATOR
15
+ * USE IMAGE GENERATOR Create realistic images of nature
16
+ * ```
17
+ *
18
+ * @private [🪔] Maybe export the commitments through some package
19
+ */
20
+ export declare class UseImageGeneratorCommitmentDefinition extends BaseCommitmentDefinition<'USE IMAGE GENERATOR' | 'USE IMAGE GENERATION' | 'IMAGE GENERATOR' | 'IMAGE GENERATION' | 'USE IMAGE'> {
21
+ constructor(type?: 'USE IMAGE GENERATOR' | 'USE IMAGE GENERATION' | 'IMAGE GENERATOR' | 'IMAGE GENERATION' | 'USE IMAGE');
22
+ /**
23
+ * Short one-line description of USE IMAGE GENERATOR.
24
+ */
25
+ get description(): string;
26
+ /**
27
+ * Icon for this commitment.
28
+ */
29
+ get icon(): string;
30
+ /**
31
+ * Markdown documentation for USE IMAGE GENERATOR commitment.
32
+ */
33
+ get documentation(): string;
34
+ applyToAgentModelRequirements(requirements: AgentModelRequirements, content: string): AgentModelRequirements;
35
+ /**
36
+ * Gets human-readable titles for tool functions provided by this commitment.
37
+ */
38
+ getToolTitles(): Record<string_javascript_name, string>;
39
+ /**
40
+ * Gets the `generate_image` tool function implementation.
41
+ */
42
+ getToolFunctions(): Record<string_javascript_name, ToolFunction>;
43
+ }
44
+ /**
45
+ * Note: [💞] Ignore a discrepancy between file name and entity name
46
+ */
@@ -21,6 +21,7 @@ import { BaseCommitmentDefinition } from '../_base/BaseCommitmentDefinition';
21
21
  */
22
22
  export declare class UseSearchEngineCommitmentDefinition extends BaseCommitmentDefinition<'USE SEARCH ENGINE'> {
23
23
  constructor();
24
+ get requiresContent(): boolean;
24
25
  /**
25
26
  * Short one-line description of USE SEARCH ENGINE.
26
27
  */
@@ -34,6 +35,10 @@ export declare class UseSearchEngineCommitmentDefinition extends BaseCommitmentD
34
35
  */
35
36
  get documentation(): string;
36
37
  applyToAgentModelRequirements(requirements: AgentModelRequirements, content: string): AgentModelRequirements;
38
+ /**
39
+ * Gets human-readable titles for tool functions provided by this commitment.
40
+ */
41
+ getToolTitles(): Record<string_javascript_name, string>;
37
42
  /**
38
43
  * Gets the `web_search` tool function implementation.
39
44
  */
@@ -11,12 +11,14 @@ import { BaseCommitmentDefinition } from '../_base/BaseCommitmentDefinition';
11
11
  *
12
12
  * ```book
13
13
  * USE TIME
14
+ * USE TIME Prefer the user's local timezone.
14
15
  * ```
15
16
  *
16
17
  * @private [🪔] Maybe export the commitments through some package
17
18
  */
18
19
  export declare class UseTimeCommitmentDefinition extends BaseCommitmentDefinition<'USE TIME'> {
19
20
  constructor();
21
+ get requiresContent(): boolean;
20
22
  /**
21
23
  * Short one-line description of USE TIME.
22
24
  */
@@ -30,6 +32,10 @@ export declare class UseTimeCommitmentDefinition extends BaseCommitmentDefinitio
30
32
  */
31
33
  get documentation(): string;
32
34
  applyToAgentModelRequirements(requirements: AgentModelRequirements, content: string): AgentModelRequirements;
35
+ /**
36
+ * Gets human-readable titles for tool functions provided by this commitment.
37
+ */
38
+ getToolTitles(): Record<string_javascript_name, string>;
33
39
  /**
34
40
  * Gets the `get_current_time` tool function implementation.
35
41
  */
@@ -69,4 +69,10 @@ export declare abstract class BaseCommitmentDefinition<TBookCommitment extends s
69
69
  * When the `applyToAgentModelRequirements` adds tools to the requirements, this method should return the corresponding function definitions.
70
70
  */
71
71
  getToolFunctions(): Record<string_javascript_name, ToolFunction>;
72
+ /**
73
+ * Gets human-readable titles for tool functions provided by this commitment
74
+ *
75
+ * This is used in the UI to show a user-friendly name instead of the technical function name.
76
+ */
77
+ getToolTitles(): Record<string_javascript_name, string>;
72
78
  }
@@ -58,4 +58,10 @@ export type CommitmentDefinition = {
58
58
  * When the `applyToAgentModelRequirements` adds tools to the requirements, this method should return the corresponding function definitions.
59
59
  */
60
60
  getToolFunctions(): Record<string_javascript_name, ToolFunction>;
61
+ /**
62
+ * Gets human-readable titles for tool functions provided by this commitment
63
+ *
64
+ * This is used in the UI to show a user-friendly name instead of the technical function name.
65
+ */
66
+ getToolTitles(): Record<string_javascript_name, string>;
61
67
  };
@@ -0,0 +1,6 @@
1
+ /**
2
+ * @@@
3
+ *
4
+ * @private utility for commitments
5
+ */
6
+ export declare function formatOptionalInstructionBlock(label: string, content: string): string;
@@ -0,0 +1,26 @@
1
+ import { ToolFunction } from '../../_packages/types.index';
2
+ import { string_javascript_name } from '../../types/typeAliases';
3
+ /**
4
+ * Map of tool functions keyed by function name.
5
+ *
6
+ * @private internal helper for commitment tool registry
7
+ */
8
+ export type CommitmentToolFunctions = Record<string_javascript_name, ToolFunction>;
9
+ /**
10
+ * Collects tool functions from all commitment definitions.
11
+ *
12
+ * @returns Map of tool function implementations.
13
+ * @private internal helper for commitment tool registry
14
+ */
15
+ export declare function collectCommitmentToolFunctions(): CommitmentToolFunctions;
16
+ /**
17
+ * Creates a proxy that resolves tool functions on demand.
18
+ *
19
+ * @param getFunctions - Provider of current tool functions.
20
+ * @returns Proxy exposing tool functions as properties.
21
+ * @private internal helper for commitment tool registry
22
+ */
23
+ export declare function createToolFunctionsProxy(getFunctions: () => CommitmentToolFunctions): CommitmentToolFunctions;
24
+ /**
25
+ * Note: [💞] Ignore a discrepancy between file name and entity name
26
+ */
@@ -0,0 +1,8 @@
1
+ import type { CommitmentDefinition } from '../_base/CommitmentDefinition';
2
+ /**
3
+ * Gets all available commitment definitions
4
+ * @returns Array of all commitment definitions
5
+ *
6
+ * @public exported from `@promptbook/core`
7
+ */
8
+ export declare function getAllCommitmentDefinitions(): ReadonlyArray<CommitmentDefinition>;
@@ -0,0 +1,8 @@
1
+ import type { BookCommitment } from '../_base/BookCommitment';
2
+ /**
3
+ * Gets all available commitment types
4
+ * @returns Array of all commitment types
5
+ *
6
+ * @public exported from `@promptbook/core`
7
+ */
8
+ export declare function getAllCommitmentTypes(): ReadonlyArray<BookCommitment>;
@@ -0,0 +1,9 @@
1
+ import type { CommitmentToolFunctions } from './commitmentToolFunctions';
2
+ /**
3
+ * Gets all function implementations provided by all commitments
4
+ *
5
+ * Note: This function is intended for browser use, there is also equivalent `getAllCommitmentsToolFunctionsForNode` for server use
6
+ *
7
+ * @public exported from `@promptbook/browser`
8
+ */
9
+ export declare function getAllCommitmentsToolFunctionsForBrowser(): CommitmentToolFunctions;
@@ -0,0 +1,13 @@
1
+ import { type CommitmentToolFunctions } from './commitmentToolFunctions';
2
+ /**
3
+ * Gets all function implementations provided by all commitments
4
+ *
5
+ * Note: This function is intended for server use, there is also equivalent `getAllCommitmentsToolFunctionsForBrowser` for browser use
6
+ *
7
+ * @public exported from `@promptbook/node`
8
+ */
9
+ export declare function getAllCommitmentsToolFunctionsForNode(): CommitmentToolFunctions;
10
+ /**
11
+ * Note: [??] Code in this file should never be never released in packages that could be imported into browser environment
12
+ * TODO: [??] Unite `xxxForServer` and `xxxForNode` naming
13
+ */
@@ -0,0 +1,7 @@
1
+ import { string_javascript_name } from '../../types/typeAliases';
2
+ /**
3
+ * Gets all tool titles provided by all commitments
4
+ *
5
+ * @public exported from `@promptbook/core`
6
+ */
7
+ export declare function getAllCommitmentsToolTitles(): Record<string_javascript_name, string>;
@@ -0,0 +1,10 @@
1
+ import type { BookCommitment } from '../_base/BookCommitment';
2
+ import type { CommitmentDefinition } from '../_base/CommitmentDefinition';
3
+ /**
4
+ * Gets a commitment definition by its type
5
+ * @param type The commitment type to look up
6
+ * @returns The commitment definition or null if not found
7
+ *
8
+ * @public exported from `@promptbook/core`
9
+ */
10
+ export declare function getCommitmentDefinition(type: BookCommitment): CommitmentDefinition | null;
@@ -0,0 +1,17 @@
1
+ import { CommitmentDefinition } from '../_base/CommitmentDefinition';
2
+ /**
3
+ * Grouped commitment definition
4
+ */
5
+ type GroupedCommitmentDefinition = {
6
+ primary: CommitmentDefinition;
7
+ aliases: string[];
8
+ };
9
+ /**
10
+ * Gets all commitment definitions grouped by their aliases
11
+ *
12
+ * @returns Array of grouped commitment definitions
13
+ *
14
+ * @public exported from `@promptbook/core`
15
+ */
16
+ export declare function getGroupedCommitmentDefinitions(): ReadonlyArray<GroupedCommitmentDefinition>;
17
+ export {};
@@ -0,0 +1,9 @@
1
+ import type { BookCommitment } from '../_base/BookCommitment';
2
+ /**
3
+ * Checks if a commitment type is supported
4
+ * @param type The commitment type to check
5
+ * @returns True if the commitment type is supported
6
+ *
7
+ * @public exported from `@promptbook/core`
8
+ */
9
+ export declare function isCommitmentSupported(type: BookCommitment): boolean;
@@ -1,7 +1,3 @@
1
- import type { BookCommitment } from './_base/BookCommitment';
2
- import type { CommitmentDefinition } from './_base/CommitmentDefinition';
3
- import { ToolFunction } from '../scripting/javascript/JavascriptExecutionToolsOptions';
4
- import { string_javascript_name } from '../types/typeAliases';
5
1
  import { ActionCommitmentDefinition } from './ACTION/ACTION';
6
2
  import { ClosedCommitmentDefinition } from './CLOSED/CLOSED';
7
3
  import { ComponentCommitmentDefinition } from './COMPONENT/COMPONENT';
@@ -31,8 +27,12 @@ import { RuleCommitmentDefinition } from './RULE/RULE';
31
27
  import { SampleCommitmentDefinition } from './SAMPLE/SAMPLE';
32
28
  import { ScenarioCommitmentDefinition } from './SCENARIO/SCENARIO';
33
29
  import { StyleCommitmentDefinition } from './STYLE/STYLE';
30
+ import { TeamCommitmentDefinition } from './TEAM/TEAM';
31
+ import { TemplateCommitmentDefinition } from './TEMPLATE/TEMPLATE';
34
32
  import { UseCommitmentDefinition } from './USE/USE';
35
33
  import { UseBrowserCommitmentDefinition } from './USE_BROWSER/USE_BROWSER';
34
+ import { UseEmailCommitmentDefinition } from './USE_EMAIL/USE_EMAIL';
35
+ import { UseImageGeneratorCommitmentDefinition } from './USE_IMAGE_GENERATOR/USE_IMAGE_GENERATOR';
36
36
  import { UseMcpCommitmentDefinition } from './USE_MCP/USE_MCP';
37
37
  import { UseSearchEngineCommitmentDefinition } from './USE_SEARCH_ENGINE/USE_SEARCH_ENGINE';
38
38
  import { UseTimeCommitmentDefinition } from './USE_TIME/USE_TIME';
@@ -44,60 +44,7 @@ import { NotYetImplementedCommitmentDefinition } from './_base/NotYetImplemented
44
44
  *
45
45
  * @private Use functions to access commitments instead of this array directly
46
46
  */
47
- export declare const COMMITMENT_REGISTRY: readonly [PersonaCommitmentDefinition, PersonaCommitmentDefinition, KnowledgeCommitmentDefinition, MemoryCommitmentDefinition, MemoryCommitmentDefinition, StyleCommitmentDefinition, StyleCommitmentDefinition, RuleCommitmentDefinition, RuleCommitmentDefinition, LanguageCommitmentDefinition, LanguageCommitmentDefinition, SampleCommitmentDefinition, SampleCommitmentDefinition, FormatCommitmentDefinition, FormatCommitmentDefinition, FromCommitmentDefinition, ImportCommitmentDefinition, ImportCommitmentDefinition, ModelCommitmentDefinition, ModelCommitmentDefinition, ActionCommitmentDefinition, ActionCommitmentDefinition, ComponentCommitmentDefinition, MetaImageCommitmentDefinition, MetaColorCommitmentDefinition, MetaFontCommitmentDefinition, MetaLinkCommitmentDefinition, MetaCommitmentDefinition, NoteCommitmentDefinition, NoteCommitmentDefinition, NoteCommitmentDefinition, NoteCommitmentDefinition, NoteCommitmentDefinition, GoalCommitmentDefinition, GoalCommitmentDefinition, InitialMessageCommitmentDefinition, UserMessageCommitmentDefinition, AgentMessageCommitmentDefinition, MessageCommitmentDefinition, MessageCommitmentDefinition, ScenarioCommitmentDefinition, ScenarioCommitmentDefinition, DeleteCommitmentDefinition, DeleteCommitmentDefinition, DeleteCommitmentDefinition, DeleteCommitmentDefinition, DictionaryCommitmentDefinition, OpenCommitmentDefinition, ClosedCommitmentDefinition, UseBrowserCommitmentDefinition, UseSearchEngineCommitmentDefinition, UseTimeCommitmentDefinition, UseMcpCommitmentDefinition, UseCommitmentDefinition, NotYetImplementedCommitmentDefinition<"EXPECT">, NotYetImplementedCommitmentDefinition<"BEHAVIOUR">, NotYetImplementedCommitmentDefinition<"BEHAVIOURS">, NotYetImplementedCommitmentDefinition<"AVOID">, NotYetImplementedCommitmentDefinition<"AVOIDANCE">, NotYetImplementedCommitmentDefinition<"CONTEXT">];
48
- /**
49
- * Gets a commitment definition by its type
50
- * @param type The commitment type to look up
51
- * @returns The commitment definition or null if not found
52
- *
53
- * @public exported from `@promptbook/core`
54
- */
55
- export declare function getCommitmentDefinition(type: BookCommitment): CommitmentDefinition | null;
56
- /**
57
- * Gets all available commitment definitions
58
- * @returns Array of all commitment definitions
59
- *
60
- * @public exported from `@promptbook/core`
61
- */
62
- export declare function getAllCommitmentDefinitions(): ReadonlyArray<CommitmentDefinition>;
63
- /**
64
- * Gets all available commitment types
65
- * @returns Array of all commitment types
66
- *
67
- * @public exported from `@promptbook/core`
68
- */
69
- export declare function getAllCommitmentTypes(): ReadonlyArray<BookCommitment>;
70
- /**
71
- * Checks if a commitment type is supported
72
- * @param type The commitment type to check
73
- * @returns True if the commitment type is supported
74
- *
75
- * @public exported from `@promptbook/core`
76
- */
77
- export declare function isCommitmentSupported(type: BookCommitment): boolean;
78
- /**
79
- * Grouped commitment definition
80
- *
81
- * @public exported from `@promptbook/core`
82
- */
83
- export type GroupedCommitmentDefinition = {
84
- primary: CommitmentDefinition;
85
- aliases: string[];
86
- };
87
- /**
88
- * Gets all commitment definitions grouped by their aliases
89
- *
90
- * @returns Array of grouped commitment definitions
91
- *
92
- * @public exported from `@promptbook/core`
93
- */
94
- export declare function getGroupedCommitmentDefinitions(): ReadonlyArray<GroupedCommitmentDefinition>;
95
- /**
96
- * Gets all function implementations provided by all commitments
97
- *
98
- * @public exported from `@promptbook/core`
99
- */
100
- export declare function getAllCommitmentsToolFunctions(): Record<string_javascript_name, ToolFunction>;
47
+ export declare const COMMITMENT_REGISTRY: readonly [PersonaCommitmentDefinition, PersonaCommitmentDefinition, KnowledgeCommitmentDefinition, MemoryCommitmentDefinition, MemoryCommitmentDefinition, StyleCommitmentDefinition, StyleCommitmentDefinition, RuleCommitmentDefinition, RuleCommitmentDefinition, LanguageCommitmentDefinition, LanguageCommitmentDefinition, SampleCommitmentDefinition, SampleCommitmentDefinition, FormatCommitmentDefinition, FormatCommitmentDefinition, TemplateCommitmentDefinition, TemplateCommitmentDefinition, FromCommitmentDefinition, ImportCommitmentDefinition, ImportCommitmentDefinition, ModelCommitmentDefinition, ModelCommitmentDefinition, ActionCommitmentDefinition, ActionCommitmentDefinition, ComponentCommitmentDefinition, MetaImageCommitmentDefinition, MetaColorCommitmentDefinition, MetaFontCommitmentDefinition, MetaLinkCommitmentDefinition, MetaCommitmentDefinition, NoteCommitmentDefinition, NoteCommitmentDefinition, NoteCommitmentDefinition, NoteCommitmentDefinition, NoteCommitmentDefinition, GoalCommitmentDefinition, GoalCommitmentDefinition, InitialMessageCommitmentDefinition, UserMessageCommitmentDefinition, AgentMessageCommitmentDefinition, MessageCommitmentDefinition, MessageCommitmentDefinition, ScenarioCommitmentDefinition, ScenarioCommitmentDefinition, DeleteCommitmentDefinition, DeleteCommitmentDefinition, DeleteCommitmentDefinition, DeleteCommitmentDefinition, DictionaryCommitmentDefinition, OpenCommitmentDefinition, ClosedCommitmentDefinition, TeamCommitmentDefinition, UseBrowserCommitmentDefinition, UseSearchEngineCommitmentDefinition, UseTimeCommitmentDefinition, UseEmailCommitmentDefinition, UseImageGeneratorCommitmentDefinition, UseImageGeneratorCommitmentDefinition, UseImageGeneratorCommitmentDefinition, UseImageGeneratorCommitmentDefinition, UseImageGeneratorCommitmentDefinition, UseMcpCommitmentDefinition, UseCommitmentDefinition, NotYetImplementedCommitmentDefinition<"EXPECT">, NotYetImplementedCommitmentDefinition<"BEHAVIOUR">, NotYetImplementedCommitmentDefinition<"BEHAVIOURS">, NotYetImplementedCommitmentDefinition<"AVOID">, NotYetImplementedCommitmentDefinition<"AVOIDANCE">, NotYetImplementedCommitmentDefinition<"CONTEXT">];
101
48
  /**
102
49
  * TODO: [🧠] Maybe create through standardized $register
103
50
  * Note: [💞] Ignore a discrepancy between file name and entity name
@@ -214,6 +214,12 @@ export declare const DEFAULT_INTERMEDIATE_FILES_STRATEGY: IntermediateFilesStrat
214
214
  * @public exported from `@promptbook/core`
215
215
  */
216
216
  export declare const DEFAULT_MAX_PARALLEL_COUNT = 5;
217
+ /**
218
+ * The maximum number of concurrent uploads
219
+ *
220
+ * @public exported from `@promptbook/core`
221
+ */
222
+ export declare const DEFAULT_MAX_CONCURRENT_UPLOADS = 5;
217
223
  /**
218
224
  * The maximum depth to which recursion can occur
219
225
  *
@@ -71,6 +71,135 @@ export declare const RESERVED_PARAMETER_RESTRICTED: string;
71
71
  * @public exported from `@promptbook/core`
72
72
  */
73
73
  export declare const RESERVED_PARAMETER_NAMES: readonly ["content", "context", "knowledge", "examples", "modelName", "currentDate"];
74
+ /**
75
+ * Limits for IDs, names, and other strings
76
+ *
77
+ * @public exported from `@promptbook/core`
78
+ */
79
+ export declare const LIMITS: {
80
+ /**
81
+ * Minimum length of a name (e.g. agent name, persona name)
82
+ */
83
+ readonly NAME_MIN_LENGTH: 3;
84
+ /**
85
+ * Recommended maximum length of a name
86
+ */
87
+ readonly NAME_MAX_LENGTH: 20;
88
+ /**
89
+ * Maximum length of a short description or a hash
90
+ */
91
+ readonly SHORT_TEXT_MAX_LENGTH: 30;
92
+ /**
93
+ * Gone
94
+ */
95
+ readonly GONE: 410;
96
+ /**
97
+ * Gateway timeout
98
+ */
99
+ readonly GATEWAY_TIMEOUT: 504;
100
+ /**
101
+ * Too many requests
102
+ */
103
+ readonly TOO_MANY_REQUESTS: 429;
104
+ /**
105
+ * Maximum length of a file path segment
106
+ */
107
+ readonly FILE_PATH_SEGMENT_MAX_LENGTH: 8;
108
+ /**
109
+ * Default length of a short name (e.g. for default agent names)
110
+ */
111
+ readonly SHORT_NAME_LENGTH: 6;
112
+ };
113
+ /**
114
+ * Common time intervals in milliseconds
115
+ *
116
+ * @public exported from `@promptbook/core`
117
+ */
118
+ export declare const TIME_INTERVALS: {
119
+ /**
120
+ * Hundred milliseconds
121
+ */
122
+ readonly HUNDRED_MILLISECONDS: 100;
123
+ /**
124
+ * One second in milliseconds
125
+ */
126
+ readonly SECOND: 1000;
127
+ /**
128
+ * Two seconds in milliseconds
129
+ */
130
+ readonly TWO_SECONDS: 2000;
131
+ /**
132
+ * One minute in milliseconds
133
+ */
134
+ readonly MINUTE: 60000;
135
+ /**
136
+ * Thirty seconds in milliseconds
137
+ */
138
+ readonly THIRTY_SECONDS: 30000;
139
+ /**
140
+ * Five seconds in milliseconds
141
+ */
142
+ readonly FIVE_SECONDS: 5000;
143
+ };
144
+ /**
145
+ * Common ports and network limits
146
+ *
147
+ * @public exported from `@promptbook/core`
148
+ */
149
+ export declare const NETWORK_LIMITS: {
150
+ /**
151
+ * Maximum valid port number
152
+ */
153
+ readonly MAX_PORT: 65535;
154
+ };
155
+ /**
156
+ * Common color and image constants
157
+ *
158
+ * @public exported from `@promptbook/core`
159
+ */
160
+ export declare const COLOR_CONSTANTS: {
161
+ /**
162
+ * Maximum value for a color channel (0-255)
163
+ */
164
+ readonly MAX_CHANNEL_VALUE: 255;
165
+ /**
166
+ * Number of possible colors in 24-bit color (0xFFFFFF)
167
+ */
168
+ readonly MAX_24BIT_COLOR: 16777215;
169
+ /**
170
+ * Base for hexadecimal strings
171
+ */
172
+ readonly HEX_BASE: 16;
173
+ /**
174
+ * Length of a hex color without alpha (e.g. "FF0000")
175
+ */
176
+ readonly HEX_COLOR_LENGTH: 6;
177
+ /**
178
+ * Full circle in degrees
179
+ */
180
+ readonly FULL_CIRCLE_DEGREES: 360;
181
+ /**
182
+ * Half circle in degrees
183
+ */
184
+ readonly HALF_CIRCLE_DEGREES: 180;
185
+ };
186
+ /**
187
+ * HTTP Status Codes
188
+ *
189
+ * @public exported from `@promptbook/core`
190
+ */
191
+ export declare const HTTP_STATUS_CODES: {
192
+ readonly OK: 200;
193
+ readonly CREATED: 201;
194
+ readonly BAD_REQUEST: 400;
195
+ readonly UNAUTHORIZED: 401;
196
+ readonly NOT_FOUND: 404;
197
+ readonly INTERNAL_SERVER_ERROR: 500;
198
+ readonly BAD_GATEWAY: 502;
199
+ readonly SERVICE_UNAVAILABLE: 503;
200
+ readonly GATEWAY_TIMEOUT: 504;
201
+ readonly TOO_MANY_REQUESTS: 429;
202
+ };
74
203
  /**
75
204
  * Note: [💞] Ignore a discrepancy between file name and entity name
76
205
  */
@@ -9,4 +9,5 @@ export declare function $provideExecutablesForNode(options?: PrepareAndScrapeOpt
9
9
  /**
10
10
  * TODO: [🧠] Allow to override the executables without need to call `locatePandoc` / `locateLibreoffice` in case of provided
11
11
  * Note: [🟢] Code in this file should never be never released in packages that could be imported into browser environment
12
+ * TODO: [🏓] Unite `xxxForServer` and `xxxForNode` naming
12
13
  */
@@ -1,8 +1,5 @@
1
1
  import type { ModelVariant } from '../types/ModelVariant';
2
- import type { number_usd } from '../types/typeAliases';
3
- import type { string_model_description } from '../types/typeAliases';
4
- import type { string_model_name } from '../types/typeAliases';
5
- import type { string_title } from '../types/typeAliases';
2
+ import type { number_usd, string_model_description, string_model_name, string_title, string_url } from '../types/typeAliases';
6
3
  /**
7
4
  * Represents a model that can be used for prompt execution
8
5
  */
@@ -40,6 +37,10 @@ export type AvailableModel = {
40
37
  readonly prompt: number_usd;
41
38
  readonly output: number_usd;
42
39
  };
40
+ /**
41
+ * URL to the model (or provider) documentation
42
+ */
43
+ readonly documentationUrl?: string_url;
43
44
  /**
44
45
  * If the model is deprecated, it should not be used for new tasks
45
46
  */
@@ -1,5 +1,5 @@
1
+ import type { ToolCall } from '../types/ToolCall';
1
2
  import type { string_date_iso8601, string_model_name, string_prompt } from '../types/typeAliases';
2
- import type { TODO_any } from '../utils/organization/TODO_any';
3
3
  import type { TODO_object } from '../utils/organization/TODO_object';
4
4
  import type { EmbeddingVector } from './EmbeddingVector';
5
5
  import type { Usage } from './Usage';
@@ -26,24 +26,7 @@ export type ChatPromptResult = CommonPromptResult & {
26
26
  /**
27
27
  * Optional tool calls made during the execution
28
28
  */
29
- readonly toolCalls?: ReadonlyArray<{
30
- /**
31
- * Name of the tool
32
- */
33
- readonly name: string;
34
- /**
35
- * Arguments of the tool call
36
- */
37
- readonly arguments: string;
38
- /**
39
- * Result of the tool call
40
- */
41
- readonly result: string;
42
- /**
43
- * Raw tool call from the model
44
- */
45
- readonly rawToolCall: TODO_any;
46
- }>;
29
+ readonly toolCalls?: ReadonlyArray<ToolCall>;
47
30
  };
48
31
  /**
49
32
  * Image prompt result
@@ -1,8 +1,8 @@
1
1
  import type { PartialDeep, Promisable, ReadonlyDeep } from 'type-fest';
2
2
  import type { PipelineJson } from '../../pipeline/PipelineJson/PipelineJson';
3
+ import type { LlmCall } from '../../types/LlmCall';
3
4
  import type { InputParameters } from '../../types/typeAliases';
4
5
  import type { PipelineExecutorResult } from '../PipelineExecutorResult';
5
- import type { LlmCall } from '../../types/LlmCall';
6
6
  import type { CreatePipelineExecutorOptions } from './00-CreatePipelineExecutorOptions';
7
7
  /**
8
8
  * Options for executing an entire pipeline, including input parameters, pipeline context, and progress callbacks.
@@ -10,4 +10,5 @@ import type { ExecutionTools } from '../ExecutionTools';
10
10
  export declare function $provideExecutionToolsForNode(options?: PrepareAndScrapeOptions): Promise<ExecutionTools>;
11
11
  /**
12
12
  * Note: [🟢] Code in this file should never be never released in packages that could be imported into browser environment
13
+ * TODO: [🏓] Unite `xxxForServer` and `xxxForNode` naming
13
14
  */