@promptbook/remote-client 0.103.0-42 → 0.103.0-44
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 -18
- package/esm/index.es.js +38 -98
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/_packages/core.index.d.ts +6 -0
- package/esm/typings/src/_packages/node.index.d.ts +0 -2
- package/esm/typings/src/_packages/types.index.d.ts +22 -0
- package/esm/typings/src/_packages/utils.index.d.ts +2 -0
- package/esm/typings/src/book-2.0/agent-source/AgentBasicInformation.d.ts +2 -4
- package/esm/typings/src/book-2.0/agent-source/padBook.d.ts +1 -1
- package/esm/typings/src/book-2.0/agent-source/string_book.d.ts +1 -0
- package/esm/typings/src/book-components/AvatarProfile/AvatarProfile/AvatarProfile.d.ts +6 -1
- package/esm/typings/src/book-components/BookEditor/BookEditor.d.ts +1 -1
- package/esm/typings/src/book-components/Chat/save/_common/ChatSaveFormatDefinition.d.ts +1 -1
- package/esm/typings/src/book-components/Chat/types/ChatParticipant.d.ts +1 -1
- package/esm/typings/src/book-components/Qr/BrandedQrCode.d.ts +1 -1
- package/esm/typings/src/book-components/Qr/useQrCode.d.ts +1 -1
- package/esm/typings/src/cli/cli-commands/_boilerplate.d.ts +1 -1
- package/esm/typings/src/cli/cli-commands/about.d.ts +1 -1
- package/esm/typings/src/cli/cli-commands/hello.d.ts +1 -1
- package/esm/typings/src/cli/cli-commands/list-models.d.ts +1 -1
- package/esm/typings/src/cli/cli-commands/list-scrapers.d.ts +1 -1
- package/esm/typings/src/cli/cli-commands/login.d.ts +1 -1
- package/esm/typings/src/cli/cli-commands/make.d.ts +1 -1
- package/esm/typings/src/cli/cli-commands/prettify.d.ts +1 -1
- package/esm/typings/src/cli/cli-commands/run.d.ts +1 -1
- package/esm/typings/src/cli/cli-commands/start-agents-server.d.ts +1 -1
- package/esm/typings/src/cli/cli-commands/start-pipelines-server.d.ts +1 -1
- package/esm/typings/src/cli/cli-commands/test-command.d.ts +1 -1
- package/esm/typings/src/cli/common/$addGlobalOptionsToCommand.d.ts +1 -1
- package/esm/typings/src/collection/agent-collection/AgentCollection.d.ts +2 -29
- package/esm/typings/src/collection/agent-collection/constructors/agent-collection-in-supabase/AgentCollectionInSupabase.d.ts +107 -0
- package/esm/typings/src/collection/agent-collection/constructors/agent-collection-in-supabase/AgentsDatabaseSchema.d.ts +129 -0
- package/esm/typings/src/commands/_common/types/CommandParser.d.ts +1 -1
- package/esm/typings/src/config.d.ts +1 -1
- package/esm/typings/src/errors/0-index.d.ts +3 -0
- package/esm/typings/src/errors/DatabaseError.d.ts +12 -0
- package/esm/typings/src/execution/createPipelineExecutor/40-executeAttempts.d.ts +1 -1
- package/esm/typings/src/high-level-abstractions/_common/HighLevelAbstraction.d.ts +1 -1
- package/esm/typings/src/llm-providers/_common/register/$registeredLlmToolsMessage.d.ts +1 -1
- package/esm/typings/src/llm-providers/_common/register/LlmToolsMetadata.d.ts +1 -1
- package/esm/typings/src/llm-providers/_multiple/getSingleLlmExecutionTools.d.ts +1 -0
- package/esm/typings/src/llm-providers/_multiple/joinLlmExecutionTools.d.ts +1 -0
- package/esm/typings/src/llm-providers/agent/Agent.d.ts +5 -2
- package/esm/typings/src/llm-providers/agent/AgentLlmExecutionTools.d.ts +1 -1
- package/esm/typings/src/llm-providers/agent/AgentOptions.d.ts +4 -2
- package/esm/typings/src/llm-providers/agent/CreateAgentLlmExecutionToolsOptions.d.ts +4 -3
- package/esm/typings/src/llm-providers/agent/createAgentLlmExecutionTools.d.ts +1 -1
- package/esm/typings/src/llm-providers/anthropic-claude/anthropic-claude-models.d.ts +1 -1
- package/esm/typings/src/llm-providers/google/google-models.d.ts +1 -1
- package/esm/typings/src/llm-providers/openai/openai-models.d.ts +1 -1
- package/esm/typings/src/prepare/PrepareAndScrapeOptions.d.ts +1 -0
- package/esm/typings/src/remote-server/startAgentServer.d.ts +2 -2
- package/esm/typings/src/remote-server/types/RemoteServerOptions.d.ts +0 -19
- package/esm/typings/src/storage/env-storage/$EnvStorage.d.ts +1 -1
- package/esm/typings/src/transpilers/_common/BookTranspiler.d.ts +5 -1
- package/esm/typings/src/transpilers/_common/BookTranspilerOptions.d.ts +1 -1
- package/esm/typings/src/transpilers/_common/register/$bookTranspilersRegister.d.ts +1 -1
- package/esm/typings/src/transpilers/formatted-book-in-markdown/FormattedBookInMarkdownTranspiler.d.ts +4 -1
- package/esm/typings/src/transpilers/formatted-book-in-markdown/register.d.ts +1 -1
- package/esm/typings/src/transpilers/openai-sdk/OpenAiSdkTranspiler.d.ts +4 -1
- package/esm/typings/src/transpilers/openai-sdk/register.d.ts +1 -1
- package/esm/typings/src/types/typeAliases.d.ts +19 -1
- package/esm/typings/src/utils/color/$randomColor.d.ts +1 -0
- package/esm/typings/src/utils/color/operators/darken.d.ts +1 -1
- package/esm/typings/src/utils/color/operators/grayscale.d.ts +1 -1
- package/esm/typings/src/utils/color/operators/lighten.d.ts +1 -1
- package/esm/typings/src/utils/color/operators/mixWithColor.d.ts +1 -1
- package/esm/typings/src/utils/color/operators/saturate.d.ts +1 -1
- package/esm/typings/src/utils/environment/$detectRuntimeEnvironment.d.ts +16 -0
- package/esm/typings/src/utils/execCommand/$execCommand.d.ts +1 -1
- package/esm/typings/src/utils/execCommand/$execCommands.d.ts +1 -1
- package/esm/typings/src/utils/files/$induceBookDownload.d.ts +2 -2
- package/esm/typings/src/utils/files/$induceFileDownload.d.ts +2 -2
- package/esm/typings/src/utils/files/ObjectUrl.d.ts +1 -1
- package/esm/typings/src/utils/misc/aboutPromptbookInformation.d.ts +6 -0
- package/esm/typings/src/utils/organization/$side_effect.d.ts +1 -1
- package/esm/typings/src/utils/random/$generateBookBoilerplate.d.ts +25 -0
- package/esm/typings/src/utils/random/$randomAgentPersona.d.ts +9 -0
- package/esm/typings/src/utils/random/$randomFullnameWithColor.d.ts +13 -0
- package/esm/typings/src/utils/random/$randomItem.d.ts +9 -0
- package/esm/typings/src/utils/random/$randomSeed.d.ts +3 -0
- package/esm/typings/src/utils/random/$randomToken.d.ts +2 -0
- package/esm/typings/src/utils/serialization/$deepFreeze.d.ts +1 -1
- package/esm/typings/src/utils/serialization/serializeToPromptbookJavascript.d.ts +2 -2
- package/esm/typings/src/version.d.ts +1 -1
- package/package.json +2 -2
- package/umd/index.umd.js +38 -98
- package/umd/index.umd.js.map +1 -1
- package/esm/typings/src/collection/agent-collection/constructors/AgentCollectionInDirectory.d.ts +0 -89
- package/esm/typings/src/collection/agent-collection/constructors/AgentCollectionInDirectory.test.d.ts +0 -1
- package/esm/typings/src/commands/_common/parseCommand.test.d.ts +0 -1
- package/esm/typings/src/execution/utils/logLlmCall.d.ts +0 -8
package/umd/index.umd.js
CHANGED
|
@@ -16,14 +16,14 @@
|
|
|
16
16
|
* @generated
|
|
17
17
|
* @see https://github.com/webgptorg/book
|
|
18
18
|
*/
|
|
19
|
-
const BOOK_LANGUAGE_VERSION = '
|
|
19
|
+
const BOOK_LANGUAGE_VERSION = '2.0.0';
|
|
20
20
|
/**
|
|
21
21
|
* The version of the Promptbook engine
|
|
22
22
|
*
|
|
23
23
|
* @generated
|
|
24
24
|
* @see https://github.com/webgptorg/promptbook
|
|
25
25
|
*/
|
|
26
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.103.0-
|
|
26
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.103.0-44';
|
|
27
27
|
/**
|
|
28
28
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
29
29
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
@@ -85,6 +85,22 @@
|
|
|
85
85
|
}
|
|
86
86
|
}
|
|
87
87
|
|
|
88
|
+
/**
|
|
89
|
+
* This error indicates error from the database
|
|
90
|
+
*
|
|
91
|
+
* @public exported from `@promptbook/core`
|
|
92
|
+
*/
|
|
93
|
+
class DatabaseError extends Error {
|
|
94
|
+
constructor(message) {
|
|
95
|
+
super(message);
|
|
96
|
+
this.name = 'DatabaseError';
|
|
97
|
+
Object.setPrototypeOf(this, DatabaseError.prototype);
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
/**
|
|
101
|
+
* TODO: !!!! Explain that NotFoundError (!!! and other specific errors) has priority over DatabaseError in some contexts
|
|
102
|
+
*/
|
|
103
|
+
|
|
88
104
|
/**
|
|
89
105
|
* This error type indicates that you try to use a feature that is not available in the current environment
|
|
90
106
|
*
|
|
@@ -226,6 +242,7 @@
|
|
|
226
242
|
/**
|
|
227
243
|
* Generates random token
|
|
228
244
|
*
|
|
245
|
+
* Note: `$` is used to indicate that this function is not a pure function - it is not deterministic
|
|
229
246
|
* Note: This function is cryptographically secure (it uses crypto.randomBytes internally)
|
|
230
247
|
*
|
|
231
248
|
* @private internal helper function
|
|
@@ -235,6 +252,7 @@
|
|
|
235
252
|
return crypto.randomBytes(randomness).toString('hex');
|
|
236
253
|
}
|
|
237
254
|
/**
|
|
255
|
+
* TODO: [🤶] Maybe export through `@promptbook/utils` or `@promptbook/random` package
|
|
238
256
|
* TODO: Maybe use nanoid instead https://github.com/ai/nanoid
|
|
239
257
|
*/
|
|
240
258
|
|
|
@@ -954,6 +972,23 @@
|
|
|
954
972
|
* TODO: Maybe connect with textures
|
|
955
973
|
*/
|
|
956
974
|
|
|
975
|
+
/**
|
|
976
|
+
* Makes color transformer which returns a grayscale version of the color
|
|
977
|
+
*
|
|
978
|
+
* @param amount from 0 to 1
|
|
979
|
+
*
|
|
980
|
+
* @public exported from `@promptbook/color`
|
|
981
|
+
*/
|
|
982
|
+
function grayscale(amount) {
|
|
983
|
+
return ({ red, green, blue, alpha }) => {
|
|
984
|
+
const average = (red + green + blue) / 3;
|
|
985
|
+
red = Math.round(average * amount + red * (1 - amount));
|
|
986
|
+
green = Math.round(average * amount + green * (1 - amount));
|
|
987
|
+
blue = Math.round(average * amount + blue * (1 - amount));
|
|
988
|
+
return Color.fromValues(red, green, blue, alpha);
|
|
989
|
+
};
|
|
990
|
+
}
|
|
991
|
+
|
|
957
992
|
/**
|
|
958
993
|
* Converts HSL values to RGB values
|
|
959
994
|
*
|
|
@@ -1069,102 +1104,6 @@
|
|
|
1069
1104
|
* TODO: Maybe implement by mix+hsl
|
|
1070
1105
|
*/
|
|
1071
1106
|
|
|
1072
|
-
/**
|
|
1073
|
-
* Calculates distance between two colors
|
|
1074
|
-
*
|
|
1075
|
-
* @param color1 first color
|
|
1076
|
-
* @param color2 second color
|
|
1077
|
-
*
|
|
1078
|
-
* Note: This function is inefficient. Use colorDistanceSquared instead if possible.
|
|
1079
|
-
*
|
|
1080
|
-
* @public exported from `@promptbook/color`
|
|
1081
|
-
*/
|
|
1082
|
-
/**
|
|
1083
|
-
* Calculates distance between two colors without square root
|
|
1084
|
-
*
|
|
1085
|
-
* @param color1 first color
|
|
1086
|
-
* @param color2 second color
|
|
1087
|
-
*
|
|
1088
|
-
* @public exported from `@promptbook/color`
|
|
1089
|
-
*/
|
|
1090
|
-
function colorDistanceSquared(color1, color2) {
|
|
1091
|
-
const rmean = (color1.red + color2.red) / 2;
|
|
1092
|
-
const r = color1.red - color2.red;
|
|
1093
|
-
const g = color1.green - color2.green;
|
|
1094
|
-
const b = color1.blue - color2.blue;
|
|
1095
|
-
const weightR = 2 + rmean / 256;
|
|
1096
|
-
const weightG = 4.0;
|
|
1097
|
-
const weightB = 2 + (255 - rmean) / 256;
|
|
1098
|
-
const distance = weightR * r * r + weightG * g * g + weightB * b * b;
|
|
1099
|
-
return distance;
|
|
1100
|
-
}
|
|
1101
|
-
|
|
1102
|
-
/**
|
|
1103
|
-
* Makes color transformer which finds the nearest color from the given list
|
|
1104
|
-
*
|
|
1105
|
-
* @param colors array of colors to choose from
|
|
1106
|
-
*
|
|
1107
|
-
* @public exported from `@promptbook/color`
|
|
1108
|
-
*/
|
|
1109
|
-
function nearest(...colors) {
|
|
1110
|
-
return (color) => {
|
|
1111
|
-
const distances = colors.map((c) => colorDistanceSquared(c, color));
|
|
1112
|
-
const minDistance = Math.min(...distances);
|
|
1113
|
-
const minIndex = distances.indexOf(minDistance);
|
|
1114
|
-
const nearestColor = colors[minIndex];
|
|
1115
|
-
return nearestColor;
|
|
1116
|
-
};
|
|
1117
|
-
}
|
|
1118
|
-
|
|
1119
|
-
/**
|
|
1120
|
-
* Color transformer which returns the negative color
|
|
1121
|
-
*
|
|
1122
|
-
* @public exported from `@promptbook/color`
|
|
1123
|
-
*/
|
|
1124
|
-
function negative(color) {
|
|
1125
|
-
const r = 255 - color.red;
|
|
1126
|
-
const g = 255 - color.green;
|
|
1127
|
-
const b = 255 - color.blue;
|
|
1128
|
-
return Color.fromValues(r, g, b, color.alpha);
|
|
1129
|
-
}
|
|
1130
|
-
|
|
1131
|
-
/**
|
|
1132
|
-
* Makes color transformer which finds the furthest color from the given list
|
|
1133
|
-
*
|
|
1134
|
-
* @param colors array of colors to choose from
|
|
1135
|
-
*
|
|
1136
|
-
* @public exported from `@promptbook/color`
|
|
1137
|
-
*/
|
|
1138
|
-
function furthest(...colors) {
|
|
1139
|
-
return (color) => {
|
|
1140
|
-
const furthestColor = negative(nearest(...colors.map(negative))(color));
|
|
1141
|
-
return furthestColor;
|
|
1142
|
-
};
|
|
1143
|
-
}
|
|
1144
|
-
/**
|
|
1145
|
-
* Makes color transformer which finds the best text color (black or white) for the given background color
|
|
1146
|
-
*
|
|
1147
|
-
* @public exported from `@promptbook/color`
|
|
1148
|
-
*/
|
|
1149
|
-
furthest(Color.get('white'), Color.from('black'));
|
|
1150
|
-
|
|
1151
|
-
/**
|
|
1152
|
-
* Makes color transformer which returns a grayscale version of the color
|
|
1153
|
-
*
|
|
1154
|
-
* @param amount from 0 to 1
|
|
1155
|
-
*
|
|
1156
|
-
* @public exported from `@promptbook/color`
|
|
1157
|
-
*/
|
|
1158
|
-
function grayscale(amount) {
|
|
1159
|
-
return ({ red, green, blue, alpha }) => {
|
|
1160
|
-
const average = (red + green + blue) / 3;
|
|
1161
|
-
red = Math.round(average * amount + red * (1 - amount));
|
|
1162
|
-
green = Math.round(average * amount + green * (1 - amount));
|
|
1163
|
-
blue = Math.round(average * amount + blue * (1 - amount));
|
|
1164
|
-
return Color.fromValues(red, green, blue, alpha);
|
|
1165
|
-
};
|
|
1166
|
-
}
|
|
1167
|
-
|
|
1168
1107
|
/**
|
|
1169
1108
|
* Makes color transformer which saturate the given color
|
|
1170
1109
|
*
|
|
@@ -1442,6 +1381,7 @@
|
|
|
1442
1381
|
UnexpectedError,
|
|
1443
1382
|
WrappedError,
|
|
1444
1383
|
NotAllowed,
|
|
1384
|
+
DatabaseError,
|
|
1445
1385
|
// TODO: [🪑]> VersionMismatchError,
|
|
1446
1386
|
};
|
|
1447
1387
|
/**
|