@promptbook/documents 0.104.0-1 → 0.104.0-11
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 +29 -7
- 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 +16 -2
- package/esm/typings/src/book-2.0/agent-source/AgentBasicInformation.d.ts +29 -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 +9 -13
- package/esm/typings/src/book-components/_common/Dropdown/Dropdown.d.ts +3 -3
- package/esm/typings/src/book-components/_common/HamburgerMenu/HamburgerMenu.d.ts +1 -1
- package/esm/typings/src/book-components/_common/MenuHoisting/MenuHoistingContext.d.ts +56 -0
- package/esm/typings/src/book-components/icons/AboutIcon.d.ts +1 -1
- package/esm/typings/src/book-components/icons/AttachmentIcon.d.ts +1 -1
- package/esm/typings/src/book-components/icons/CameraIcon.d.ts +1 -1
- package/esm/typings/src/book-components/icons/DownloadIcon.d.ts +1 -1
- package/esm/typings/src/book-components/icons/MenuIcon.d.ts +1 -1
- package/esm/typings/src/book-components/icons/SaveIcon.d.ts +1 -1
- package/esm/typings/src/collection/agent-collection/constructors/agent-collection-in-supabase/AgentCollectionInSupabase.d.ts +22 -12
- package/esm/typings/src/collection/agent-collection/constructors/agent-collection-in-supabase/AgentsDatabaseSchema.d.ts +27 -15
- 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/_common/utils/count-total-usage/countUsage.d.ts +1 -1
- package/esm/typings/src/llm-providers/_multiple/MultipleLlmExecutionTools.d.ts +6 -2
- package/esm/typings/src/llm-providers/agent/Agent.d.ts +6 -1
- 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/remote-server/ui/ServerApp.d.ts +1 -1
- package/esm/typings/src/search-engines/SearchEngine.d.ts +9 -0
- package/esm/typings/src/search-engines/SearchResult.d.ts +18 -0
- package/esm/typings/src/search-engines/bing/BingSearchEngine.d.ts +15 -0
- package/esm/typings/src/search-engines/dummy/DummySearchEngine.d.ts +15 -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/$randomAgentPersona.d.ts +3 -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 +31 -9
- package/umd/index.umd.js.map +1 -1
- package/esm/typings/src/book-2.0/utils/generateGravatarUrl.d.ts +0 -10
|
@@ -1,9 +1,10 @@
|
|
|
1
|
+
import type { string_persona_description } from '../../types/typeAliases';
|
|
1
2
|
/**
|
|
2
|
-
*
|
|
3
|
+
* Generates a random agent persona description.
|
|
3
4
|
*
|
|
4
5
|
* @private internal helper function
|
|
5
6
|
*/
|
|
6
|
-
export declare function $randomAgentPersona():
|
|
7
|
+
export declare function $randomAgentPersona(): string_persona_description;
|
|
7
8
|
/**
|
|
8
9
|
* TODO: [🤶] Maybe export through `@promptbook/utils` or `@promptbook/random` package
|
|
9
10
|
*/
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generates random base58 string
|
|
3
|
+
*
|
|
4
|
+
* Note: `$` is used to indicate that this function is not a pure function - it is not deterministic
|
|
5
|
+
* Note: This function is cryptographically secure (it uses crypto.randomBytes internally)
|
|
6
|
+
*
|
|
7
|
+
* @param length - length of the string
|
|
8
|
+
* @returns secure random base58 string
|
|
9
|
+
*
|
|
10
|
+
* @private internal helper function
|
|
11
|
+
*/
|
|
12
|
+
export declare function $randomBase58(length: number): string;
|
|
@@ -15,7 +15,7 @@ export declare const BOOK_LANGUAGE_VERSION: string_semantic_version;
|
|
|
15
15
|
export declare const PROMPTBOOK_ENGINE_VERSION: string_promptbook_version;
|
|
16
16
|
/**
|
|
17
17
|
* Represents the version string of the Promptbook engine.
|
|
18
|
-
* It follows semantic versioning (e.g., `0.104.0-
|
|
18
|
+
* It follows semantic versioning (e.g., `0.104.0-10`).
|
|
19
19
|
*
|
|
20
20
|
* @generated
|
|
21
21
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@promptbook/documents",
|
|
3
|
-
"version": "0.104.0-
|
|
3
|
+
"version": "0.104.0-11",
|
|
4
4
|
"description": "Promptbook: Turn your company's scattered knowledge into AI ready books",
|
|
5
5
|
"private": false,
|
|
6
6
|
"sideEffects": false,
|
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
"module": "./esm/index.es.js",
|
|
96
96
|
"typings": "./esm/typings/src/_packages/documents.index.d.ts",
|
|
97
97
|
"peerDependencies": {
|
|
98
|
-
"@promptbook/core": "0.104.0-
|
|
98
|
+
"@promptbook/core": "0.104.0-11"
|
|
99
99
|
},
|
|
100
100
|
"dependencies": {
|
|
101
101
|
"colors": "1.4.0",
|
package/umd/index.umd.js
CHANGED
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
* @generated
|
|
26
26
|
* @see https://github.com/webgptorg/promptbook
|
|
27
27
|
*/
|
|
28
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.104.0-
|
|
28
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.104.0-11';
|
|
29
29
|
/**
|
|
30
30
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
31
31
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
@@ -1281,13 +1281,14 @@
|
|
|
1281
1281
|
*
|
|
1282
1282
|
* @public exported from `@promptbook/utils`
|
|
1283
1283
|
*/
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1284
|
+
function $isRunningInNode() {
|
|
1285
|
+
try {
|
|
1286
|
+
return typeof process !== 'undefined' && process.versions != null && process.versions.node != null;
|
|
1287
|
+
}
|
|
1288
|
+
catch (e) {
|
|
1289
|
+
return false;
|
|
1290
|
+
}
|
|
1289
1291
|
}
|
|
1290
|
-
`);
|
|
1291
1292
|
/**
|
|
1292
1293
|
* TODO: [🎺]
|
|
1293
1294
|
*/
|
|
@@ -4044,6 +4045,15 @@
|
|
|
4044
4045
|
return promptResult;
|
|
4045
4046
|
};
|
|
4046
4047
|
}
|
|
4048
|
+
if (llmTools.callImageGenerationModel !== undefined) {
|
|
4049
|
+
proxyTools.callImageGenerationModel = async (prompt) => {
|
|
4050
|
+
// console.info('[🚕] callImageGenerationModel through countTotalUsage');
|
|
4051
|
+
const promptResult = await llmTools.callImageGenerationModel(prompt);
|
|
4052
|
+
totalUsage = addUsage(totalUsage, promptResult.usage);
|
|
4053
|
+
spending.next(promptResult.usage);
|
|
4054
|
+
return promptResult;
|
|
4055
|
+
};
|
|
4056
|
+
}
|
|
4047
4057
|
// <- Note: [🤖]
|
|
4048
4058
|
return proxyTools;
|
|
4049
4059
|
}
|
|
@@ -4052,7 +4062,7 @@
|
|
|
4052
4062
|
* TODO: [🧠] Is there some meaningfull way how to test this util
|
|
4053
4063
|
* TODO: [🧠][🌯] Maybe a way how to hide ability to `get totalUsage`
|
|
4054
4064
|
* > const [llmToolsWithUsage,getUsage] = countTotalUsage(llmTools);
|
|
4055
|
-
* TODO: [👷♂️]
|
|
4065
|
+
* TODO: [👷♂️] Write a comprehensive manual explaining the construction and usage of LLM tools in the Promptbook ecosystem
|
|
4056
4066
|
*/
|
|
4057
4067
|
|
|
4058
4068
|
/**
|
|
@@ -4153,6 +4163,12 @@
|
|
|
4153
4163
|
callEmbeddingModel(prompt) {
|
|
4154
4164
|
return this.callCommonModel(prompt);
|
|
4155
4165
|
}
|
|
4166
|
+
/**
|
|
4167
|
+
* Calls the best available embedding model
|
|
4168
|
+
*/
|
|
4169
|
+
callImageGenerationModel(prompt) {
|
|
4170
|
+
return this.callCommonModel(prompt);
|
|
4171
|
+
}
|
|
4156
4172
|
// <- Note: [🤖]
|
|
4157
4173
|
/**
|
|
4158
4174
|
* Calls the best available model
|
|
@@ -4179,6 +4195,11 @@
|
|
|
4179
4195
|
continue llm;
|
|
4180
4196
|
}
|
|
4181
4197
|
return await llmExecutionTools.callEmbeddingModel(prompt);
|
|
4198
|
+
case 'IMAGE_GENERATION':
|
|
4199
|
+
if (llmExecutionTools.callImageGenerationModel === undefined) {
|
|
4200
|
+
continue llm;
|
|
4201
|
+
}
|
|
4202
|
+
return await llmExecutionTools.callImageGenerationModel(prompt);
|
|
4182
4203
|
// <- case [🤖]:
|
|
4183
4204
|
default:
|
|
4184
4205
|
throw new UnexpectedError(`Unknown model variant "${prompt.modelRequirements.modelVariant}" in ${llmExecutionTools.title}`);
|
|
@@ -6303,8 +6324,9 @@
|
|
|
6303
6324
|
$ongoingTaskResult.$resultString = $ongoingTaskResult.$completionResult.content;
|
|
6304
6325
|
break variant;
|
|
6305
6326
|
case 'EMBEDDING':
|
|
6327
|
+
case 'IMAGE_GENERATION':
|
|
6306
6328
|
throw new PipelineExecutionError(spaceTrim$1.spaceTrim((block) => `
|
|
6307
|
-
|
|
6329
|
+
${modelRequirements.modelVariant} model can not be used in pipeline
|
|
6308
6330
|
|
|
6309
6331
|
This should be catched during parsing
|
|
6310
6332
|
|