@promptbook/legacy-documents 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.
- package/README.md +0 -4
- package/esm/index.es.js +13 -13
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/_packages/browser.index.d.ts +2 -0
- package/esm/typings/src/_packages/components.index.d.ts +20 -0
- package/esm/typings/src/_packages/core.index.d.ts +21 -11
- package/esm/typings/src/_packages/node.index.d.ts +2 -0
- package/esm/typings/src/_packages/openai.index.d.ts +4 -0
- package/esm/typings/src/_packages/types.index.d.ts +32 -2
- package/esm/typings/src/_packages/utils.index.d.ts +2 -0
- package/esm/typings/src/book-2.0/agent-source/AgentBasicInformation.d.ts +10 -1
- package/esm/typings/src/book-2.0/agent-source/parseTeamCommitment.d.ts +28 -0
- package/esm/typings/src/book-components/BookEditor/BookEditor.d.ts +1 -1
- package/esm/typings/src/book-components/Chat/AgentChat/AgentChatProps.d.ts +5 -0
- package/esm/typings/src/book-components/Chat/AgentChip/AgentChip.d.ts +67 -0
- package/esm/typings/src/book-components/Chat/AgentChip/index.d.ts +2 -0
- package/esm/typings/src/book-components/Chat/Chat/ChatMessageItem.d.ts +33 -1
- package/esm/typings/src/book-components/Chat/Chat/ChatProps.d.ts +87 -6
- package/esm/typings/src/book-components/Chat/Chat/ChatSoundToggle.d.ts +23 -0
- package/esm/typings/src/book-components/Chat/Chat/ClockIcon.d.ts +9 -0
- package/esm/typings/src/book-components/Chat/LlmChat/FriendlyErrorMessage.d.ts +20 -0
- package/esm/typings/src/book-components/Chat/LlmChat/LlmChatProps.d.ts +13 -0
- package/esm/typings/src/book-components/Chat/SourceChip/SourceChip.d.ts +35 -0
- package/esm/typings/src/book-components/Chat/SourceChip/index.d.ts +2 -0
- package/esm/typings/src/book-components/Chat/effects/ChatEffectsSystem.d.ts +14 -0
- package/esm/typings/src/book-components/Chat/effects/components/ConfettiEffect.d.ts +18 -0
- package/esm/typings/src/book-components/Chat/effects/components/HeartsEffect.d.ts +18 -0
- package/esm/typings/src/book-components/Chat/effects/configs/defaultEffectConfigs.d.ts +7 -0
- package/esm/typings/src/book-components/Chat/effects/index.d.ts +18 -0
- package/esm/typings/src/book-components/Chat/effects/types/ChatEffect.d.ts +20 -0
- package/esm/typings/src/book-components/Chat/effects/types/ChatEffectConfig.d.ts +21 -0
- package/esm/typings/src/book-components/Chat/effects/types/ChatEffectType.d.ts +6 -0
- package/esm/typings/src/book-components/Chat/effects/types/ChatEffectsSystemProps.d.ts +32 -0
- package/esm/typings/src/book-components/Chat/effects/utils/detectEffects.d.ts +12 -0
- package/esm/typings/src/book-components/Chat/types/ChatMessage.d.ts +34 -6
- package/esm/typings/src/book-components/Chat/types/ChatParticipant.d.ts +8 -0
- package/esm/typings/src/book-components/Chat/utils/createTeamToolNameFromUrl.d.ts +12 -0
- package/esm/typings/src/book-components/Chat/utils/getToolCallChipletText.d.ts +40 -0
- package/esm/typings/src/book-components/Chat/utils/loadAgentProfile.d.ts +69 -0
- package/esm/typings/src/book-components/Chat/utils/parseCitationsFromContent.d.ts +53 -0
- package/esm/typings/src/book-components/Chat/utils/resolveCitationUrl.d.ts +11 -0
- package/esm/typings/src/book-components/Chat/utils/resolveCitationUrl.test.d.ts +1 -0
- package/esm/typings/src/book-components/Chat/utils/toolCallParsing.d.ts +64 -0
- package/esm/typings/src/book-components/icons/EmailIcon.d.ts +15 -0
- package/esm/typings/src/commitments/TEAM/TEAM.d.ts +45 -0
- package/esm/typings/src/commitments/TEMPLATE/TEMPLATE.d.ts +44 -0
- package/esm/typings/src/commitments/TEMPLATE/TEMPLATE.test.d.ts +1 -0
- package/esm/typings/src/commitments/USE_BROWSER/USE_BROWSER.d.ts +19 -1
- package/esm/typings/src/commitments/USE_BROWSER/fetchUrlContent.d.ts +22 -0
- package/esm/typings/src/commitments/USE_BROWSER/fetchUrlContentViaBrowser.d.ts +13 -0
- package/esm/typings/src/commitments/USE_EMAIL/USE_EMAIL.d.ts +48 -0
- package/esm/typings/src/commitments/USE_EMAIL/resolveSendEmailToolForNode.d.ts +11 -0
- package/esm/typings/src/commitments/USE_EMAIL/sendEmailViaBrowser.d.ts +18 -0
- package/esm/typings/src/commitments/USE_IMAGE_GENERATOR/USE_IMAGE_GENERATOR.d.ts +46 -0
- package/esm/typings/src/commitments/USE_IMAGE_GENERATOR/USE_IMAGE_GENERATOR.test.d.ts +1 -0
- package/esm/typings/src/commitments/USE_SEARCH_ENGINE/USE_SEARCH_ENGINE.d.ts +5 -0
- package/esm/typings/src/commitments/USE_SEARCH_ENGINE/USE_SEARCH_ENGINE.test.d.ts +1 -0
- package/esm/typings/src/commitments/USE_TIME/USE_TIME.d.ts +6 -0
- package/esm/typings/src/commitments/_base/BaseCommitmentDefinition.d.ts +6 -0
- package/esm/typings/src/commitments/_base/CommitmentDefinition.d.ts +6 -0
- package/esm/typings/src/commitments/_base/formatOptionalInstructionBlock.d.ts +6 -0
- package/esm/typings/src/commitments/_common/commitmentToolFunctions.d.ts +26 -0
- package/esm/typings/src/commitments/_common/getAllCommitmentDefinitions.d.ts +8 -0
- package/esm/typings/src/commitments/_common/getAllCommitmentTypes.d.ts +8 -0
- package/esm/typings/src/commitments/_common/getAllCommitmentsToolFunctionsForBrowser.d.ts +9 -0
- package/esm/typings/src/commitments/_common/getAllCommitmentsToolFunctionsForNode.d.ts +13 -0
- package/esm/typings/src/commitments/_common/getAllCommitmentsToolTitles.d.ts +7 -0
- package/esm/typings/src/commitments/_common/getCommitmentDefinition.d.ts +10 -0
- package/esm/typings/src/commitments/_common/getGroupedCommitmentDefinitions.d.ts +17 -0
- package/esm/typings/src/commitments/_common/isCommitmentSupported.d.ts +9 -0
- package/esm/typings/src/commitments/index.d.ts +5 -58
- package/esm/typings/src/config.d.ts +6 -0
- package/esm/typings/src/constants.d.ts +129 -0
- package/esm/typings/src/executables/$provideExecutablesForNode.d.ts +1 -0
- package/esm/typings/src/execution/AvailableModel.d.ts +5 -4
- package/esm/typings/src/execution/PromptResult.d.ts +2 -19
- package/esm/typings/src/execution/createPipelineExecutor/10-executePipeline.d.ts +1 -1
- package/esm/typings/src/execution/utils/$provideExecutionToolsForNode.d.ts +1 -0
- package/esm/typings/src/llm-providers/agent/Agent.d.ts +15 -1
- package/esm/typings/src/llm-providers/agent/AgentLlmExecutionTools.d.ts +6 -1
- package/esm/typings/src/llm-providers/agent/RemoteAgent.d.ts +5 -0
- package/esm/typings/src/llm-providers/google/createGoogleExecutionTools.d.ts +1 -0
- package/esm/typings/src/llm-providers/openai/OpenAiAgentExecutionTools.d.ts +43 -0
- package/esm/typings/src/llm-providers/openai/OpenAiAssistantExecutionTools.d.ts +4 -2
- package/esm/typings/src/llm-providers/openai/OpenAiCompatibleExecutionTools.d.ts +1 -1
- package/esm/typings/src/llm-providers/openai/createOpenAiAgentExecutionTools.d.ts +11 -0
- package/esm/typings/src/llm-providers/openai/utils/uploadFilesToOpenAi.d.ts +7 -0
- package/esm/typings/src/pipeline/prompt-notation.d.ts +27 -2
- package/esm/typings/src/pipeline/prompt-notation.test.d.ts +1 -1
- package/esm/typings/src/scrapers/_common/register/$provideFilesystemForNode.d.ts +1 -0
- package/esm/typings/src/scrapers/_common/register/$provideScrapersForNode.d.ts +1 -0
- package/esm/typings/src/scrapers/_common/register/$provideScriptingForNode.d.ts +1 -0
- package/esm/typings/src/search-engines/SearchEngine.d.ts +1 -1
- package/esm/typings/src/search-engines/bing/BingSearchEngine.d.ts +1 -1
- package/esm/typings/src/search-engines/dummy/DummySearchEngine.d.ts +1 -1
- package/esm/typings/src/search-engines/google/GoogleSearchEngine.d.ts +1 -1
- package/esm/typings/src/search-engines/serp/SerpSearchEngine.d.ts +1 -1
- package/esm/typings/src/speech-recognition/OpenAiSpeechRecognition.d.ts +3 -0
- package/esm/typings/src/types/ModelRequirements.d.ts +6 -0
- package/esm/typings/src/types/Prompt.d.ts +12 -0
- package/esm/typings/src/types/ToolCall.d.ts +37 -0
- package/esm/typings/src/utils/markdown/extractAllListItemsFromMarkdown.d.ts +1 -2
- package/esm/typings/src/utils/markdown/humanizeAiTextEllipsis.d.ts +1 -1
- package/esm/typings/src/utils/markdown/humanizeAiTextEmdashed.d.ts +1 -1
- package/esm/typings/src/utils/markdown/humanizeAiTextWhitespace.d.ts +1 -1
- package/esm/typings/src/utils/markdown/parseMarkdownSection.d.ts +1 -3
- package/esm/typings/src/utils/markdown/splitMarkdownIntoSections.d.ts +1 -2
- package/esm/typings/src/utils/misc/linguisticHash.d.ts +4 -1
- package/esm/typings/src/utils/parameters/templateParameters.d.ts +1 -2
- package/esm/typings/src/version.d.ts +1 -1
- package/esm/typings/src/wizard/wizard.d.ts +1 -4
- package/package.json +2 -2
- package/umd/index.umd.js +13 -13
- package/umd/index.umd.js.map +1 -1
package/README.md
CHANGED
|
@@ -27,10 +27,6 @@ Turn your company's scattered knowledge into AI ready Books
|
|
|
27
27
|
|
|
28
28
|
|
|
29
29
|
|
|
30
|
-
<blockquote style="color: #ff8811">
|
|
31
|
-
<b>⚠ Warning:</b> This is a pre-release version of the library. It is not yet ready for production use. Please look at <a href="https://www.npmjs.com/package/@promptbook/core?activeTab=versions">latest stable release</a>.
|
|
32
|
-
</blockquote>
|
|
33
|
-
|
|
34
30
|
## 📦 Package `@promptbook/legacy-documents`
|
|
35
31
|
|
|
36
32
|
- Promptbooks are [divided into several](#-packages) packages, all are published from [single monorepo](https://github.com/webgptorg/promptbook).
|
package/esm/index.es.js
CHANGED
|
@@ -26,7 +26,7 @@ const BOOK_LANGUAGE_VERSION = '2.0.0';
|
|
|
26
26
|
* @generated
|
|
27
27
|
* @see https://github.com/webgptorg/promptbook
|
|
28
28
|
*/
|
|
29
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.105.0
|
|
29
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.105.0';
|
|
30
30
|
/**
|
|
31
31
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
32
32
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
@@ -1835,7 +1835,7 @@ function isValidFilePath(filename) {
|
|
|
1835
1835
|
if (typeof filename !== 'string') {
|
|
1836
1836
|
return false;
|
|
1837
1837
|
}
|
|
1838
|
-
if (filename.split(
|
|
1838
|
+
if (filename.split(/\r?\n/).length > 1) {
|
|
1839
1839
|
return false;
|
|
1840
1840
|
}
|
|
1841
1841
|
// Normalize slashes early so heuristics can detect path-like inputs
|
|
@@ -2037,7 +2037,7 @@ function isValidEmail(email) {
|
|
|
2037
2037
|
if (typeof email !== 'string') {
|
|
2038
2038
|
return false;
|
|
2039
2039
|
}
|
|
2040
|
-
if (email.split(
|
|
2040
|
+
if (email.split(/\r?\n/).length > 1) {
|
|
2041
2041
|
return false;
|
|
2042
2042
|
}
|
|
2043
2043
|
return /^.+@.+\..+$/.test(email);
|
|
@@ -4986,7 +4986,7 @@ async function prepareKnowledgePieces(knowledgeSources, tools, options) {
|
|
|
4986
4986
|
|
|
4987
4987
|
The source:
|
|
4988
4988
|
${block(knowledgeSource.knowledgeSourceContent
|
|
4989
|
-
.split(
|
|
4989
|
+
.split(/\r?\n/)
|
|
4990
4990
|
.map((line) => `> ${line}`)
|
|
4991
4991
|
.join('\n'))}
|
|
4992
4992
|
|
|
@@ -5002,7 +5002,7 @@ async function prepareKnowledgePieces(knowledgeSources, tools, options) {
|
|
|
5002
5002
|
|
|
5003
5003
|
The source:
|
|
5004
5004
|
> ${block(knowledgeSource.knowledgeSourceContent
|
|
5005
|
-
.split(
|
|
5005
|
+
.split(/\r?\n/)
|
|
5006
5006
|
.map((line) => `> ${line}`)
|
|
5007
5007
|
.join('\n'))}
|
|
5008
5008
|
|
|
@@ -5703,7 +5703,7 @@ const TextFormatParser = {
|
|
|
5703
5703
|
subvalueName: 'LINE',
|
|
5704
5704
|
async mapValues(options) {
|
|
5705
5705
|
const { value, mapCallback, onProgress } = options;
|
|
5706
|
-
const lines = value.split(
|
|
5706
|
+
const lines = value.split(/\r?\n/);
|
|
5707
5707
|
const mappedLines = await Promise.all(lines.map((lineContent, lineNumber, array) =>
|
|
5708
5708
|
// TODO: [🧠] Maybe option to skip empty line
|
|
5709
5709
|
/* not await */ mapCallback({
|
|
@@ -5908,7 +5908,7 @@ function templateParameters(template, parameters) {
|
|
|
5908
5908
|
parameterValue = parameterValue.replace(/[{}]/g, '\\$&');
|
|
5909
5909
|
if (parameterValue.includes('\n') && /^\s*\W{0,3}\s*$/.test(precol)) {
|
|
5910
5910
|
parameterValue = parameterValue
|
|
5911
|
-
.split(
|
|
5911
|
+
.split(/\r?\n/)
|
|
5912
5912
|
.map((line, index) => (index === 0 ? line : `${precol}${line}`))
|
|
5913
5913
|
.join('\n');
|
|
5914
5914
|
}
|
|
@@ -5944,7 +5944,7 @@ function templateParameters(template, parameters) {
|
|
|
5944
5944
|
*/
|
|
5945
5945
|
function extractAllBlocksFromMarkdown(markdown) {
|
|
5946
5946
|
const codeBlocks = [];
|
|
5947
|
-
const lines = markdown.split(
|
|
5947
|
+
const lines = markdown.split(/\r?\n/);
|
|
5948
5948
|
// Note: [0] Ensure that the last block notated by gt > will be closed
|
|
5949
5949
|
lines.push('');
|
|
5950
5950
|
let currentCodeBlock = null;
|
|
@@ -6079,7 +6079,7 @@ function countLines(text) {
|
|
|
6079
6079
|
}
|
|
6080
6080
|
text = text.replace('\r\n', '\n');
|
|
6081
6081
|
text = text.replace('\r', '\n');
|
|
6082
|
-
const lines = text.split(
|
|
6082
|
+
const lines = text.split(/\r?\n/);
|
|
6083
6083
|
return lines.reduce((count, line) => count + Math.max(Math.ceil(line.length / CHARACTERS_PER_STANDARD_LINE), 1), 0);
|
|
6084
6084
|
}
|
|
6085
6085
|
/**
|
|
@@ -6554,13 +6554,13 @@ async function executeAttempts(options) {
|
|
|
6554
6554
|
return `
|
|
6555
6555
|
Attempt ${failure.attemptIndex + 1}:
|
|
6556
6556
|
Error ${((_a = failure.error) === null || _a === void 0 ? void 0 : _a.name) || ''}:
|
|
6557
|
-
${block((_b = failure.error) === null || _b === void 0 ? void 0 : _b.message.split(
|
|
6557
|
+
${block((_b = failure.error) === null || _b === void 0 ? void 0 : _b.message.split(/\r?\n/).map((line) => `> ${line}`).join('\n'))}
|
|
6558
6558
|
|
|
6559
6559
|
Result:
|
|
6560
6560
|
${block(failure.result === null
|
|
6561
6561
|
? 'null'
|
|
6562
6562
|
: spaceTrim$1(failure.result)
|
|
6563
|
-
.split(
|
|
6563
|
+
.split(/\r?\n/)
|
|
6564
6564
|
.map((line) => `> ${line}`)
|
|
6565
6565
|
.join('\n'))}
|
|
6566
6566
|
`;
|
|
@@ -6575,7 +6575,7 @@ async function executeAttempts(options) {
|
|
|
6575
6575
|
|
|
6576
6576
|
The Prompt:
|
|
6577
6577
|
${block((((_a = $ongoingTaskResult.$prompt) === null || _a === void 0 ? void 0 : _a.content) || '')
|
|
6578
|
-
.split(
|
|
6578
|
+
.split(/\r?\n/)
|
|
6579
6579
|
.map((line) => `> ${line}`)
|
|
6580
6580
|
.join('\n'))}
|
|
6581
6581
|
|
|
@@ -7246,7 +7246,7 @@ async function executePipeline(options) {
|
|
|
7246
7246
|
${block(pipelineIdentification)}
|
|
7247
7247
|
|
|
7248
7248
|
${block(JSON.stringify(newOngoingResult, null, 4)
|
|
7249
|
-
.split(
|
|
7249
|
+
.split(/\r?\n/)
|
|
7250
7250
|
.map((line) => `> ${line}`)
|
|
7251
7251
|
.join('\n'))}
|
|
7252
7252
|
`));
|