@promptbook/pdf 0.104.0-0 → 0.104.0-10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/index.es.js +28 -6
- package/esm/index.es.js.map +1 -1
- package/esm/typings/servers.d.ts +8 -0
- package/esm/typings/src/_packages/core.index.d.ts +2 -0
- package/esm/typings/src/_packages/types.index.d.ts +10 -2
- package/esm/typings/src/book-2.0/agent-source/AgentBasicInformation.d.ts +6 -1
- package/esm/typings/src/book-2.0/agent-source/createAgentModelRequirements.d.ts +6 -6
- package/esm/typings/src/book-2.0/agent-source/createAgentModelRequirementsWithCommitments.closed.test.d.ts +1 -0
- package/esm/typings/src/book-2.0/utils/generatePlaceholderAgentProfileImageUrl.d.ts +3 -3
- package/esm/typings/src/book-components/Chat/Chat/ChatMessageItem.d.ts +5 -1
- package/esm/typings/src/book-components/Chat/Chat/ChatProps.d.ts +5 -0
- package/esm/typings/src/book-components/Chat/CodeBlock/CodeBlock.d.ts +13 -0
- package/esm/typings/src/book-components/Chat/MarkdownContent/MarkdownContent.d.ts +1 -0
- package/esm/typings/src/book-components/Chat/types/ChatMessage.d.ts +7 -11
- package/esm/typings/src/book-components/_common/Dropdown/Dropdown.d.ts +2 -2
- package/esm/typings/src/book-components/_common/MenuHoisting/MenuHoistingContext.d.ts +56 -0
- package/esm/typings/src/collection/agent-collection/constructors/agent-collection-in-supabase/AgentCollectionInSupabase.d.ts +21 -11
- package/esm/typings/src/collection/agent-collection/constructors/agent-collection-in-supabase/AgentsDatabaseSchema.d.ts +80 -14
- package/esm/typings/src/commitments/DICTIONARY/DICTIONARY.d.ts +46 -0
- package/esm/typings/src/commitments/index.d.ts +2 -1
- package/esm/typings/src/llm-providers/_multiple/MultipleLlmExecutionTools.d.ts +6 -2
- package/esm/typings/src/llm-providers/agent/AgentLlmExecutionTools.d.ts +1 -1
- package/esm/typings/src/llm-providers/ollama/OllamaExecutionTools.d.ts +1 -1
- package/esm/typings/src/llm-providers/openai/createOpenAiCompatibleExecutionTools.d.ts +1 -1
- package/esm/typings/src/llm-providers/remote/RemoteLlmExecutionTools.d.ts +1 -0
- package/esm/typings/src/types/Message.d.ts +49 -0
- package/esm/typings/src/types/ModelRequirements.d.ts +38 -14
- package/esm/typings/src/types/typeAliases.d.ts +23 -1
- package/esm/typings/src/utils/color/utils/colorToDataUrl.d.ts +2 -1
- package/esm/typings/src/utils/environment/$detectRuntimeEnvironment.d.ts +4 -4
- package/esm/typings/src/utils/environment/$isRunningInBrowser.d.ts +1 -1
- package/esm/typings/src/utils/environment/$isRunningInJest.d.ts +1 -1
- package/esm/typings/src/utils/environment/$isRunningInNode.d.ts +1 -1
- package/esm/typings/src/utils/environment/$isRunningInWebWorker.d.ts +1 -1
- package/esm/typings/src/utils/markdown/extractAllBlocksFromMarkdown.d.ts +2 -2
- package/esm/typings/src/utils/markdown/extractOneBlockFromMarkdown.d.ts +2 -2
- package/esm/typings/src/utils/random/$randomBase58.d.ts +12 -0
- package/esm/typings/src/version.d.ts +1 -1
- package/package.json +2 -2
- package/umd/index.umd.js +30 -8
- package/umd/index.umd.js.map +1 -1
- package/esm/typings/src/book-2.0/utils/generateGravatarUrl.d.ts +0 -10
package/esm/index.es.js
CHANGED
|
@@ -24,7 +24,7 @@ const BOOK_LANGUAGE_VERSION = '2.0.0';
|
|
|
24
24
|
* @generated
|
|
25
25
|
* @see https://github.com/webgptorg/promptbook
|
|
26
26
|
*/
|
|
27
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.104.0-
|
|
27
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.104.0-10';
|
|
28
28
|
/**
|
|
29
29
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
30
30
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
@@ -1275,13 +1275,14 @@ class UnexpectedError extends Error {
|
|
|
1275
1275
|
*
|
|
1276
1276
|
* @public exported from `@promptbook/utils`
|
|
1277
1277
|
*/
|
|
1278
|
-
|
|
1278
|
+
function $isRunningInNode() {
|
|
1279
1279
|
try {
|
|
1280
|
-
return
|
|
1281
|
-
}
|
|
1280
|
+
return typeof process !== 'undefined' && process.versions != null && process.versions.node != null;
|
|
1281
|
+
}
|
|
1282
|
+
catch (e) {
|
|
1282
1283
|
return false;
|
|
1283
1284
|
}
|
|
1284
|
-
|
|
1285
|
+
}
|
|
1285
1286
|
/**
|
|
1286
1287
|
* TODO: [🎺]
|
|
1287
1288
|
*/
|
|
@@ -3884,6 +3885,15 @@ function countUsage(llmTools) {
|
|
|
3884
3885
|
return promptResult;
|
|
3885
3886
|
};
|
|
3886
3887
|
}
|
|
3888
|
+
if (llmTools.callImageGenerationModel !== undefined) {
|
|
3889
|
+
proxyTools.callImageGenerationModel = async (prompt) => {
|
|
3890
|
+
// console.info('[🚕] callImageGenerationModel through countTotalUsage');
|
|
3891
|
+
const promptResult = await llmTools.callImageGenerationModel(prompt);
|
|
3892
|
+
totalUsage = addUsage(totalUsage, promptResult.usage);
|
|
3893
|
+
spending.next(promptResult.usage);
|
|
3894
|
+
return promptResult;
|
|
3895
|
+
};
|
|
3896
|
+
}
|
|
3887
3897
|
// <- Note: [🤖]
|
|
3888
3898
|
return proxyTools;
|
|
3889
3899
|
}
|
|
@@ -3993,6 +4003,12 @@ class MultipleLlmExecutionTools {
|
|
|
3993
4003
|
callEmbeddingModel(prompt) {
|
|
3994
4004
|
return this.callCommonModel(prompt);
|
|
3995
4005
|
}
|
|
4006
|
+
/**
|
|
4007
|
+
* Calls the best available embedding model
|
|
4008
|
+
*/
|
|
4009
|
+
callImageGenerationModel(prompt) {
|
|
4010
|
+
return this.callCommonModel(prompt);
|
|
4011
|
+
}
|
|
3996
4012
|
// <- Note: [🤖]
|
|
3997
4013
|
/**
|
|
3998
4014
|
* Calls the best available model
|
|
@@ -4019,6 +4035,11 @@ class MultipleLlmExecutionTools {
|
|
|
4019
4035
|
continue llm;
|
|
4020
4036
|
}
|
|
4021
4037
|
return await llmExecutionTools.callEmbeddingModel(prompt);
|
|
4038
|
+
case 'IMAGE_GENERATION':
|
|
4039
|
+
if (llmExecutionTools.callImageGenerationModel === undefined) {
|
|
4040
|
+
continue llm;
|
|
4041
|
+
}
|
|
4042
|
+
return await llmExecutionTools.callImageGenerationModel(prompt);
|
|
4022
4043
|
// <- case [🤖]:
|
|
4023
4044
|
default:
|
|
4024
4045
|
throw new UnexpectedError(`Unknown model variant "${prompt.modelRequirements.modelVariant}" in ${llmExecutionTools.title}`);
|
|
@@ -6153,8 +6174,9 @@ async function executeAttempts(options) {
|
|
|
6153
6174
|
$ongoingTaskResult.$resultString = $ongoingTaskResult.$completionResult.content;
|
|
6154
6175
|
break variant;
|
|
6155
6176
|
case 'EMBEDDING':
|
|
6177
|
+
case 'IMAGE_GENERATION':
|
|
6156
6178
|
throw new PipelineExecutionError(spaceTrim$1((block) => `
|
|
6157
|
-
|
|
6179
|
+
${modelRequirements.modelVariant} model can not be used in pipeline
|
|
6158
6180
|
|
|
6159
6181
|
This should be catched during parsing
|
|
6160
6182
|
|