Spaces:
Runtime error
Runtime error
File size: 55,932 Bytes
b93ecc4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 |
import { __export } from "./chunk-Dx39-ABv.mjs";
import { AIMessage, AIMessageChunk, BaseMessage, BaseMessageChunk, BasePromptTemplate, BaseStringPromptTemplate, ChatMessage, ChatMessageChunk, ChatPromptValue, FunctionMessage, FunctionMessageChunk, HumanMessage, HumanMessageChunk, ImagePromptValue, PromptTemplate, Runnable, RunnableLambda, SystemMessage, SystemMessageChunk, ToolMessage, ToolMessageChunk, _isMessageFieldWithRole, _mergeDicts, _mergeLists, _mergeObj, _mergeStatus, addLangChainErrorFields, checkValidTemplate, coerceMessageLikeToMessage, convertToChunk, convertToOpenAIImageBlock, convertToProviderContentBlock, getBufferString, isAIMessage, isAIMessageChunk, isBase64ContentBlock, isBaseMessage, isBaseMessageChunk, isChatMessage, isChatMessageChunk, isDataContentBlock, isFunctionMessage, isFunctionMessageChunk, isHumanMessage, isHumanMessageChunk, isIDContentBlock, isOpenAIToolCallArray, isPlainTextContentBlock, isSystemMessage, isSystemMessageChunk, isToolMessage, isToolMessageChunk, isURLContentBlock, mapChatMessagesToStoredMessages, mapStoredMessageToChatMessage, mapStoredMessagesToChatMessages, mergeContent, parseBase64DataUrl, parseFString, parseMimeType, parseMustache, parseTemplate, renderTemplate } from "./prompt-Cmq1pjHH.mjs";
//#region node_modules/.pnpm/@[email protected][email protected][email protected][email protected]_/node_modules/@langchain/core/dist/messages/modifier.js
/**
* Message responsible for deleting other messages.
*/
var RemoveMessage = class extends BaseMessage {
constructor(fields) {
super({
...fields,
content: ""
});
/**
* The ID of the message to remove.
*/
Object.defineProperty(this, "id", {
enumerable: true,
configurable: true,
writable: true,
value: void 0
});
this.id = fields.id;
}
_getType() {
return "remove";
}
get _printableFields() {
return {
...super._printableFields,
id: this.id
};
}
};
//#endregion
//#region node_modules/.pnpm/@[email protected][email protected][email protected][email protected]_/node_modules/@langchain/core/dist/messages/transformers.js
const _isMessageType = (msg, types) => {
const typesAsStrings = [...new Set(types?.map((t) => {
if (typeof t === "string") return t;
const instantiatedMsgClass = new t({});
if (!("getType" in instantiatedMsgClass) || typeof instantiatedMsgClass.getType !== "function") throw new Error("Invalid type provided.");
return instantiatedMsgClass.getType();
}))];
const msgType = msg.getType();
return typesAsStrings.some((t) => t === msgType);
};
function filterMessages(messagesOrOptions, options) {
if (Array.isArray(messagesOrOptions)) return _filterMessages(messagesOrOptions, options);
return RunnableLambda.from((input) => {
return _filterMessages(input, messagesOrOptions);
});
}
function _filterMessages(messages, options = {}) {
const { includeNames, excludeNames, includeTypes, excludeTypes, includeIds, excludeIds } = options;
const filtered = [];
for (const msg of messages) {
if (excludeNames && msg.name && excludeNames.includes(msg.name)) continue;
else if (excludeTypes && _isMessageType(msg, excludeTypes)) continue;
else if (excludeIds && msg.id && excludeIds.includes(msg.id)) continue;
if (!(includeTypes || includeIds || includeNames)) filtered.push(msg);
else if (includeNames && msg.name && includeNames.some((iName) => iName === msg.name)) filtered.push(msg);
else if (includeTypes && _isMessageType(msg, includeTypes)) filtered.push(msg);
else if (includeIds && msg.id && includeIds.some((id) => id === msg.id)) filtered.push(msg);
}
return filtered;
}
function mergeMessageRuns(messages) {
if (Array.isArray(messages)) return _mergeMessageRuns(messages);
return RunnableLambda.from(_mergeMessageRuns);
}
function _mergeMessageRuns(messages) {
if (!messages.length) return [];
const merged = [];
for (const msg of messages) {
const curr = msg;
const last = merged.pop();
if (!last) merged.push(curr);
else if (curr.getType() === "tool" || !(curr.getType() === last.getType())) merged.push(last, curr);
else {
const lastChunk = convertToChunk(last);
const currChunk = convertToChunk(curr);
const mergedChunks = lastChunk.concat(currChunk);
if (typeof lastChunk.content === "string" && typeof currChunk.content === "string") mergedChunks.content = `${lastChunk.content}\n${currChunk.content}`;
merged.push(_chunkToMsg(mergedChunks));
}
}
return merged;
}
function trimMessages(messagesOrOptions, options) {
if (Array.isArray(messagesOrOptions)) {
const messages = messagesOrOptions;
if (!options) throw new Error("Options parameter is required when providing messages.");
return _trimMessagesHelper(messages, options);
} else {
const trimmerOptions = messagesOrOptions;
return RunnableLambda.from((input) => _trimMessagesHelper(input, trimmerOptions)).withConfig({ runName: "trim_messages" });
}
}
async function _trimMessagesHelper(messages, options) {
const { maxTokens, tokenCounter, strategy = "last", allowPartial = false, endOn, startOn, includeSystem = false, textSplitter } = options;
if (startOn && strategy === "first") throw new Error("`startOn` should only be specified if `strategy` is 'last'.");
if (includeSystem && strategy === "first") throw new Error("`includeSystem` should only be specified if `strategy` is 'last'.");
let listTokenCounter;
if ("getNumTokens" in tokenCounter) listTokenCounter = async (msgs) => {
const tokenCounts = await Promise.all(msgs.map((msg) => tokenCounter.getNumTokens(msg.content)));
return tokenCounts.reduce((sum, count) => sum + count, 0);
};
else listTokenCounter = async (msgs) => tokenCounter(msgs);
let textSplitterFunc = defaultTextSplitter;
if (textSplitter) if ("splitText" in textSplitter) textSplitterFunc = textSplitter.splitText;
else textSplitterFunc = async (text) => textSplitter(text);
if (strategy === "first") return _firstMaxTokens(messages, {
maxTokens,
tokenCounter: listTokenCounter,
textSplitter: textSplitterFunc,
partialStrategy: allowPartial ? "first" : void 0,
endOn
});
else if (strategy === "last") return _lastMaxTokens(messages, {
maxTokens,
tokenCounter: listTokenCounter,
textSplitter: textSplitterFunc,
allowPartial,
includeSystem,
startOn,
endOn
});
else throw new Error(`Unrecognized strategy: '${strategy}'. Must be one of 'first' or 'last'.`);
}
async function _firstMaxTokens(messages, options) {
const { maxTokens, tokenCounter, textSplitter, partialStrategy, endOn } = options;
let messagesCopy = [...messages];
let idx = 0;
for (let i = 0; i < messagesCopy.length; i += 1) {
const remainingMessages = i > 0 ? messagesCopy.slice(0, -i) : messagesCopy;
if (await tokenCounter(remainingMessages) <= maxTokens) {
idx = messagesCopy.length - i;
break;
}
}
if (idx < messagesCopy.length - 1 && partialStrategy) {
let includedPartial = false;
if (Array.isArray(messagesCopy[idx].content)) {
const excluded = messagesCopy[idx];
if (typeof excluded.content === "string") throw new Error("Expected content to be an array.");
const numBlock = excluded.content.length;
const reversedContent = partialStrategy === "last" ? [...excluded.content].reverse() : excluded.content;
for (let i = 1; i <= numBlock; i += 1) {
const partialContent = partialStrategy === "first" ? reversedContent.slice(0, i) : reversedContent.slice(-i);
const fields = Object.fromEntries(Object.entries(excluded).filter(([k]) => k !== "type" && !k.startsWith("lc_")));
const updatedMessage = _switchTypeToMessage(excluded.getType(), {
...fields,
content: partialContent
});
const slicedMessages = [...messagesCopy.slice(0, idx), updatedMessage];
if (await tokenCounter(slicedMessages) <= maxTokens) {
messagesCopy = slicedMessages;
idx += 1;
includedPartial = true;
} else break;
}
if (includedPartial && partialStrategy === "last") excluded.content = [...reversedContent].reverse();
}
if (!includedPartial) {
const excluded = messagesCopy[idx];
let text;
if (Array.isArray(excluded.content) && excluded.content.some((block) => typeof block === "string" || block.type === "text")) {
const textBlock = excluded.content.find((block) => block.type === "text" && block.text);
text = textBlock?.text;
} else if (typeof excluded.content === "string") text = excluded.content;
if (text) {
const splitTexts = await textSplitter(text);
const numSplits = splitTexts.length;
if (partialStrategy === "last") splitTexts.reverse();
for (let _ = 0; _ < numSplits - 1; _ += 1) {
splitTexts.pop();
excluded.content = splitTexts.join("");
if (await tokenCounter([...messagesCopy.slice(0, idx), excluded]) <= maxTokens) {
if (partialStrategy === "last") excluded.content = [...splitTexts].reverse().join("");
messagesCopy = [...messagesCopy.slice(0, idx), excluded];
idx += 1;
break;
}
}
}
}
}
if (endOn) {
const endOnArr = Array.isArray(endOn) ? endOn : [endOn];
while (idx > 0 && !_isMessageType(messagesCopy[idx - 1], endOnArr)) idx -= 1;
}
return messagesCopy.slice(0, idx);
}
async function _lastMaxTokens(messages, options) {
const { allowPartial = false, includeSystem = false, endOn, startOn,...rest } = options;
let messagesCopy = messages.map((message) => {
const fields = Object.fromEntries(Object.entries(message).filter(([k]) => k !== "type" && !k.startsWith("lc_")));
return _switchTypeToMessage(message.getType(), fields, isBaseMessageChunk(message));
});
if (endOn) {
const endOnArr = Array.isArray(endOn) ? endOn : [endOn];
while (messagesCopy.length > 0 && !_isMessageType(messagesCopy[messagesCopy.length - 1], endOnArr)) messagesCopy = messagesCopy.slice(0, -1);
}
const swappedSystem = includeSystem && messagesCopy[0]?.getType() === "system";
let reversed_ = swappedSystem ? messagesCopy.slice(0, 1).concat(messagesCopy.slice(1).reverse()) : messagesCopy.reverse();
reversed_ = await _firstMaxTokens(reversed_, {
...rest,
partialStrategy: allowPartial ? "last" : void 0,
endOn: startOn
});
if (swappedSystem) return [reversed_[0], ...reversed_.slice(1).reverse()];
else return reversed_.reverse();
}
const _MSG_CHUNK_MAP = {
human: {
message: HumanMessage,
messageChunk: HumanMessageChunk
},
ai: {
message: AIMessage,
messageChunk: AIMessageChunk
},
system: {
message: SystemMessage,
messageChunk: SystemMessageChunk
},
developer: {
message: SystemMessage,
messageChunk: SystemMessageChunk
},
tool: {
message: ToolMessage,
messageChunk: ToolMessageChunk
},
function: {
message: FunctionMessage,
messageChunk: FunctionMessageChunk
},
generic: {
message: ChatMessage,
messageChunk: ChatMessageChunk
},
remove: {
message: RemoveMessage,
messageChunk: RemoveMessage
}
};
function _switchTypeToMessage(messageType, fields, returnChunk) {
let chunk;
let msg;
switch (messageType) {
case "human":
if (returnChunk) chunk = new HumanMessageChunk(fields);
else msg = new HumanMessage(fields);
break;
case "ai":
if (returnChunk) {
let aiChunkFields = { ...fields };
if ("tool_calls" in aiChunkFields) aiChunkFields = {
...aiChunkFields,
tool_call_chunks: aiChunkFields.tool_calls?.map((tc) => ({
...tc,
type: "tool_call_chunk",
index: void 0,
args: JSON.stringify(tc.args)
}))
};
chunk = new AIMessageChunk(aiChunkFields);
} else msg = new AIMessage(fields);
break;
case "system":
if (returnChunk) chunk = new SystemMessageChunk(fields);
else msg = new SystemMessage(fields);
break;
case "developer":
if (returnChunk) chunk = new SystemMessageChunk({
...fields,
additional_kwargs: {
...fields.additional_kwargs,
__openai_role__: "developer"
}
});
else msg = new SystemMessage({
...fields,
additional_kwargs: {
...fields.additional_kwargs,
__openai_role__: "developer"
}
});
break;
case "tool":
if ("tool_call_id" in fields) if (returnChunk) chunk = new ToolMessageChunk(fields);
else msg = new ToolMessage(fields);
else throw new Error("Can not convert ToolMessage to ToolMessageChunk if 'tool_call_id' field is not defined.");
break;
case "function":
if (returnChunk) chunk = new FunctionMessageChunk(fields);
else {
if (!fields.name) throw new Error("FunctionMessage must have a 'name' field");
msg = new FunctionMessage(fields);
}
break;
case "generic":
if ("role" in fields) if (returnChunk) chunk = new ChatMessageChunk(fields);
else msg = new ChatMessage(fields);
else throw new Error("Can not convert ChatMessage to ChatMessageChunk if 'role' field is not defined.");
break;
default: throw new Error(`Unrecognized message type ${messageType}`);
}
if (returnChunk && chunk) return chunk;
if (msg) return msg;
throw new Error(`Unrecognized message type ${messageType}`);
}
function _chunkToMsg(chunk) {
const chunkType = chunk.getType();
let msg;
const fields = Object.fromEntries(Object.entries(chunk).filter(([k]) => !["type", "tool_call_chunks"].includes(k) && !k.startsWith("lc_")));
if (chunkType in _MSG_CHUNK_MAP) msg = _switchTypeToMessage(chunkType, fields);
if (!msg) throw new Error(`Unrecognized message chunk class ${chunkType}. Supported classes are ${Object.keys(_MSG_CHUNK_MAP)}`);
return msg;
}
/**
* The default text splitter function that splits text by newlines.
*
* @param {string} text
* @returns A promise that resolves to an array of strings split by newlines.
*/
function defaultTextSplitter(text) {
const splits = text.split("\n");
return Promise.resolve([...splits.slice(0, -1).map((s) => `${s}\n`), splits[splits.length - 1]]);
}
//#endregion
//#region node_modules/.pnpm/@[email protected][email protected][email protected][email protected]_/node_modules/@langchain/core/dist/messages/index.js
var messages_exports = {};
__export(messages_exports, {
AIMessage: () => AIMessage,
AIMessageChunk: () => AIMessageChunk,
BaseMessage: () => BaseMessage,
BaseMessageChunk: () => BaseMessageChunk,
ChatMessage: () => ChatMessage,
ChatMessageChunk: () => ChatMessageChunk,
FunctionMessage: () => FunctionMessage,
FunctionMessageChunk: () => FunctionMessageChunk,
HumanMessage: () => HumanMessage,
HumanMessageChunk: () => HumanMessageChunk,
RemoveMessage: () => RemoveMessage,
SystemMessage: () => SystemMessage,
SystemMessageChunk: () => SystemMessageChunk,
ToolMessage: () => ToolMessage,
ToolMessageChunk: () => ToolMessageChunk,
_isMessageFieldWithRole: () => _isMessageFieldWithRole,
_mergeDicts: () => _mergeDicts,
_mergeLists: () => _mergeLists,
_mergeObj: () => _mergeObj,
_mergeStatus: () => _mergeStatus,
coerceMessageLikeToMessage: () => coerceMessageLikeToMessage,
convertToChunk: () => convertToChunk,
convertToOpenAIImageBlock: () => convertToOpenAIImageBlock,
convertToProviderContentBlock: () => convertToProviderContentBlock,
defaultTextSplitter: () => defaultTextSplitter,
filterMessages: () => filterMessages,
getBufferString: () => getBufferString,
isAIMessage: () => isAIMessage,
isAIMessageChunk: () => isAIMessageChunk,
isBase64ContentBlock: () => isBase64ContentBlock,
isBaseMessage: () => isBaseMessage,
isBaseMessageChunk: () => isBaseMessageChunk,
isChatMessage: () => isChatMessage,
isChatMessageChunk: () => isChatMessageChunk,
isDataContentBlock: () => isDataContentBlock,
isFunctionMessage: () => isFunctionMessage,
isFunctionMessageChunk: () => isFunctionMessageChunk,
isHumanMessage: () => isHumanMessage,
isHumanMessageChunk: () => isHumanMessageChunk,
isIDContentBlock: () => isIDContentBlock,
isOpenAIToolCallArray: () => isOpenAIToolCallArray,
isPlainTextContentBlock: () => isPlainTextContentBlock,
isSystemMessage: () => isSystemMessage,
isSystemMessageChunk: () => isSystemMessageChunk,
isToolMessage: () => isToolMessage,
isToolMessageChunk: () => isToolMessageChunk,
isURLContentBlock: () => isURLContentBlock,
mapChatMessagesToStoredMessages: () => mapChatMessagesToStoredMessages,
mapStoredMessageToChatMessage: () => mapStoredMessageToChatMessage,
mapStoredMessagesToChatMessages: () => mapStoredMessagesToChatMessages,
mergeContent: () => mergeContent,
mergeMessageRuns: () => mergeMessageRuns,
parseBase64DataUrl: () => parseBase64DataUrl,
parseMimeType: () => parseMimeType,
trimMessages: () => trimMessages
});
//#endregion
//#region node_modules/.pnpm/@[email protected][email protected][email protected][email protected]_/node_modules/@langchain/core/dist/prompts/image.js
/**
* An image prompt template for a multimodal model.
*/
var ImagePromptTemplate = class ImagePromptTemplate extends BasePromptTemplate {
static lc_name() {
return "ImagePromptTemplate";
}
constructor(input) {
super(input);
Object.defineProperty(this, "lc_namespace", {
enumerable: true,
configurable: true,
writable: true,
value: [
"langchain_core",
"prompts",
"image"
]
});
Object.defineProperty(this, "template", {
enumerable: true,
configurable: true,
writable: true,
value: void 0
});
Object.defineProperty(this, "templateFormat", {
enumerable: true,
configurable: true,
writable: true,
value: "f-string"
});
Object.defineProperty(this, "validateTemplate", {
enumerable: true,
configurable: true,
writable: true,
value: true
});
/**
* Additional fields which should be included inside
* the message content array if using a complex message
* content.
*/
Object.defineProperty(this, "additionalContentFields", {
enumerable: true,
configurable: true,
writable: true,
value: void 0
});
this.template = input.template;
this.templateFormat = input.templateFormat ?? this.templateFormat;
this.validateTemplate = input.validateTemplate ?? this.validateTemplate;
this.additionalContentFields = input.additionalContentFields;
if (this.validateTemplate) {
let totalInputVariables = this.inputVariables;
if (this.partialVariables) totalInputVariables = totalInputVariables.concat(Object.keys(this.partialVariables));
checkValidTemplate([{
type: "image_url",
image_url: this.template
}], this.templateFormat, totalInputVariables);
}
}
_getPromptType() {
return "prompt";
}
/**
* Partially applies values to the prompt template.
* @param values The values to be partially applied to the prompt template.
* @returns A new instance of ImagePromptTemplate with the partially applied values.
*/
async partial(values) {
const newInputVariables = this.inputVariables.filter((iv) => !(iv in values));
const newPartialVariables = {
...this.partialVariables ?? {},
...values
};
const promptDict = {
...this,
inputVariables: newInputVariables,
partialVariables: newPartialVariables
};
return new ImagePromptTemplate(promptDict);
}
/**
* Formats the prompt template with the provided values.
* @param values The values to be used to format the prompt template.
* @returns A promise that resolves to a string which is the formatted prompt.
*/
async format(values) {
const formatted = {};
for (const [key, value] of Object.entries(this.template)) if (typeof value === "string") formatted[key] = renderTemplate(value, this.templateFormat, values);
else formatted[key] = value;
const url = values.url || formatted.url;
const detail = values.detail || formatted.detail;
if (!url) throw new Error("Must provide either an image URL.");
if (typeof url !== "string") throw new Error("url must be a string.");
const output = { url };
if (detail) output.detail = detail;
return output;
}
/**
* Formats the prompt given the input values and returns a formatted
* prompt value.
* @param values The input values to format the prompt.
* @returns A Promise that resolves to a formatted prompt value.
*/
async formatPromptValue(values) {
const formattedPrompt = await this.format(values);
return new ImagePromptValue(formattedPrompt);
}
};
//#endregion
//#region node_modules/.pnpm/@[email protected][email protected][email protected][email protected]_/node_modules/@langchain/core/dist/prompts/dict.js
var DictPromptTemplate = class extends Runnable {
static lc_name() {
return "DictPromptTemplate";
}
constructor(fields) {
const templateFormat = fields.templateFormat ?? "f-string";
const inputVariables = _getInputVariables(fields.template, templateFormat);
super({
inputVariables,
...fields
});
Object.defineProperty(this, "lc_namespace", {
enumerable: true,
configurable: true,
writable: true,
value: [
"langchain_core",
"prompts",
"dict"
]
});
Object.defineProperty(this, "lc_serializable", {
enumerable: true,
configurable: true,
writable: true,
value: true
});
Object.defineProperty(this, "template", {
enumerable: true,
configurable: true,
writable: true,
value: void 0
});
Object.defineProperty(this, "templateFormat", {
enumerable: true,
configurable: true,
writable: true,
value: void 0
});
Object.defineProperty(this, "inputVariables", {
enumerable: true,
configurable: true,
writable: true,
value: void 0
});
this.template = fields.template;
this.templateFormat = templateFormat;
this.inputVariables = inputVariables;
}
async format(values) {
return _insertInputVariables(this.template, values, this.templateFormat);
}
async invoke(values) {
return await this._callWithConfig(this.format.bind(this), values, { runType: "prompt" });
}
};
function _getInputVariables(template, templateFormat) {
const inputVariables = [];
for (const v of Object.values(template)) if (typeof v === "string") parseTemplate(v, templateFormat).forEach((t) => {
if (t.type === "variable") inputVariables.push(t.name);
});
else if (Array.isArray(v)) {
for (const x of v) if (typeof x === "string") parseTemplate(x, templateFormat).forEach((t) => {
if (t.type === "variable") inputVariables.push(t.name);
});
else if (typeof x === "object") inputVariables.push(..._getInputVariables(x, templateFormat));
} else if (typeof v === "object" && v !== null) inputVariables.push(..._getInputVariables(v, templateFormat));
return Array.from(new Set(inputVariables));
}
function _insertInputVariables(template, inputs, templateFormat) {
const formatted = {};
for (const [k, v] of Object.entries(template)) if (typeof v === "string") formatted[k] = renderTemplate(v, templateFormat, inputs);
else if (Array.isArray(v)) {
const formattedV = [];
for (const x of v) if (typeof x === "string") formattedV.push(renderTemplate(x, templateFormat, inputs));
else if (typeof x === "object") formattedV.push(_insertInputVariables(x, inputs, templateFormat));
formatted[k] = formattedV;
} else if (typeof v === "object" && v !== null) formatted[k] = _insertInputVariables(v, inputs, templateFormat);
else formatted[k] = v;
return formatted;
}
//#endregion
//#region node_modules/.pnpm/@[email protected][email protected][email protected][email protected]_/node_modules/@langchain/core/dist/prompts/chat.js
/**
* Abstract class that serves as a base for creating message prompt
* templates. It defines how to format messages for different roles in a
* conversation.
*/
var BaseMessagePromptTemplate = class extends Runnable {
constructor() {
super(...arguments);
Object.defineProperty(this, "lc_namespace", {
enumerable: true,
configurable: true,
writable: true,
value: [
"langchain_core",
"prompts",
"chat"
]
});
Object.defineProperty(this, "lc_serializable", {
enumerable: true,
configurable: true,
writable: true,
value: true
});
}
/**
* Calls the formatMessages method with the provided input and options.
* @param input Input for the formatMessages method
* @param options Optional BaseCallbackConfig
* @returns Formatted output messages
*/
async invoke(input, options) {
return this._callWithConfig((input$1) => this.formatMessages(input$1), input, {
...options,
runType: "prompt"
});
}
};
/**
* Class that represents a placeholder for messages in a chat prompt. It
* extends the BaseMessagePromptTemplate.
*/
var MessagesPlaceholder = class extends BaseMessagePromptTemplate {
static lc_name() {
return "MessagesPlaceholder";
}
constructor(fields) {
if (typeof fields === "string") fields = { variableName: fields };
super(fields);
Object.defineProperty(this, "variableName", {
enumerable: true,
configurable: true,
writable: true,
value: void 0
});
Object.defineProperty(this, "optional", {
enumerable: true,
configurable: true,
writable: true,
value: void 0
});
this.variableName = fields.variableName;
this.optional = fields.optional ?? false;
}
get inputVariables() {
return [this.variableName];
}
async formatMessages(values) {
const input = values[this.variableName];
if (this.optional && !input) return [];
else if (!input) {
const error = new Error(`Field "${this.variableName}" in prompt uses a MessagesPlaceholder, which expects an array of BaseMessages as an input value. Received: undefined`);
error.name = "InputFormatError";
throw error;
}
let formattedMessages;
try {
if (Array.isArray(input)) formattedMessages = input.map(coerceMessageLikeToMessage);
else formattedMessages = [coerceMessageLikeToMessage(input)];
} catch (e) {
const readableInput = typeof input === "string" ? input : JSON.stringify(input, null, 2);
const error = new Error([
`Field "${this.variableName}" in prompt uses a MessagesPlaceholder, which expects an array of BaseMessages or coerceable values as input.`,
`Received value: ${readableInput}`,
`Additional message: ${e.message}`
].join("\n\n"));
error.name = "InputFormatError";
error.lc_error_code = e.lc_error_code;
throw error;
}
return formattedMessages;
}
};
/**
* Abstract class that serves as a base for creating message string prompt
* templates. It extends the BaseMessagePromptTemplate.
*/
var BaseMessageStringPromptTemplate = class extends BaseMessagePromptTemplate {
constructor(fields) {
if (!("prompt" in fields)) fields = { prompt: fields };
super(fields);
Object.defineProperty(this, "prompt", {
enumerable: true,
configurable: true,
writable: true,
value: void 0
});
this.prompt = fields.prompt;
}
get inputVariables() {
return this.prompt.inputVariables;
}
async formatMessages(values) {
return [await this.format(values)];
}
};
/**
* Abstract class that serves as a base for creating chat prompt
* templates. It extends the BasePromptTemplate.
*/
var BaseChatPromptTemplate = class extends BasePromptTemplate {
constructor(input) {
super(input);
}
async format(values) {
return (await this.formatPromptValue(values)).toString();
}
async formatPromptValue(values) {
const resultMessages = await this.formatMessages(values);
return new ChatPromptValue(resultMessages);
}
};
/**
* Class that represents a chat message prompt template. It extends the
* BaseMessageStringPromptTemplate.
*/
var ChatMessagePromptTemplate = class extends BaseMessageStringPromptTemplate {
static lc_name() {
return "ChatMessagePromptTemplate";
}
constructor(fields, role) {
if (!("prompt" in fields)) fields = {
prompt: fields,
role
};
super(fields);
Object.defineProperty(this, "role", {
enumerable: true,
configurable: true,
writable: true,
value: void 0
});
this.role = fields.role;
}
async format(values) {
return new ChatMessage(await this.prompt.format(values), this.role);
}
static fromTemplate(template, role, options) {
return new this(PromptTemplate.fromTemplate(template, { templateFormat: options?.templateFormat }), role);
}
};
function isTextTemplateParam(param) {
if (param === null || typeof param !== "object" || Array.isArray(param)) return false;
return Object.keys(param).length === 1 && "text" in param && typeof param.text === "string";
}
function isImageTemplateParam(param) {
if (param === null || typeof param !== "object" || Array.isArray(param)) return false;
return "image_url" in param && (typeof param.image_url === "string" || typeof param.image_url === "object" && param.image_url !== null && "url" in param.image_url && typeof param.image_url.url === "string");
}
var _StringImageMessagePromptTemplate = class extends BaseMessagePromptTemplate {
static _messageClass() {
throw new Error("Can not invoke _messageClass from inside _StringImageMessagePromptTemplate");
}
constructor(fields, additionalOptions) {
if (!("prompt" in fields)) fields = { prompt: fields };
super(fields);
Object.defineProperty(this, "lc_namespace", {
enumerable: true,
configurable: true,
writable: true,
value: [
"langchain_core",
"prompts",
"chat"
]
});
Object.defineProperty(this, "lc_serializable", {
enumerable: true,
configurable: true,
writable: true,
value: true
});
Object.defineProperty(this, "inputVariables", {
enumerable: true,
configurable: true,
writable: true,
value: []
});
Object.defineProperty(this, "additionalOptions", {
enumerable: true,
configurable: true,
writable: true,
value: {}
});
Object.defineProperty(this, "prompt", {
enumerable: true,
configurable: true,
writable: true,
value: void 0
});
Object.defineProperty(this, "messageClass", {
enumerable: true,
configurable: true,
writable: true,
value: void 0
});
Object.defineProperty(this, "chatMessageClass", {
enumerable: true,
configurable: true,
writable: true,
value: void 0
});
this.prompt = fields.prompt;
if (Array.isArray(this.prompt)) {
let inputVariables = [];
this.prompt.forEach((prompt) => {
if ("inputVariables" in prompt) inputVariables = inputVariables.concat(prompt.inputVariables);
});
this.inputVariables = inputVariables;
} else this.inputVariables = this.prompt.inputVariables;
this.additionalOptions = additionalOptions ?? this.additionalOptions;
}
createMessage(content) {
const constructor = this.constructor;
if (constructor._messageClass()) {
const MsgClass = constructor._messageClass();
return new MsgClass({ content });
} else if (constructor.chatMessageClass) {
const MsgClass = constructor.chatMessageClass();
return new MsgClass({
content,
role: this.getRoleFromMessageClass(MsgClass.lc_name())
});
} else throw new Error("No message class defined");
}
getRoleFromMessageClass(name) {
switch (name) {
case "HumanMessage": return "human";
case "AIMessage": return "ai";
case "SystemMessage": return "system";
case "ChatMessage": return "chat";
default: throw new Error("Invalid message class name");
}
}
static fromTemplate(template, additionalOptions) {
if (typeof template === "string") return new this(PromptTemplate.fromTemplate(template, additionalOptions));
const prompt = [];
for (const item of template) if (typeof item === "string") prompt.push(PromptTemplate.fromTemplate(item, additionalOptions));
else if (item === null) {} else if (isTextTemplateParam(item)) {
let text = "";
if (typeof item.text === "string") text = item.text ?? "";
const options = {
...additionalOptions,
additionalContentFields: item
};
prompt.push(PromptTemplate.fromTemplate(text, options));
} else if (isImageTemplateParam(item)) {
let imgTemplate = item.image_url ?? "";
let imgTemplateObject;
let inputVariables = [];
if (typeof imgTemplate === "string") {
let parsedTemplate;
if (additionalOptions?.templateFormat === "mustache") parsedTemplate = parseMustache(imgTemplate);
else parsedTemplate = parseFString(imgTemplate);
const variables = parsedTemplate.flatMap((item$1) => item$1.type === "variable" ? [item$1.name] : []);
if ((variables?.length ?? 0) > 0) {
if (variables.length > 1) throw new Error(`Only one format variable allowed per image template.\nGot: ${variables}\nFrom: ${imgTemplate}`);
inputVariables = [variables[0]];
} else inputVariables = [];
imgTemplate = { url: imgTemplate };
imgTemplateObject = new ImagePromptTemplate({
template: imgTemplate,
inputVariables,
templateFormat: additionalOptions?.templateFormat,
additionalContentFields: item
});
} else if (typeof imgTemplate === "object") {
if ("url" in imgTemplate) {
let parsedTemplate;
if (additionalOptions?.templateFormat === "mustache") parsedTemplate = parseMustache(imgTemplate.url);
else parsedTemplate = parseFString(imgTemplate.url);
inputVariables = parsedTemplate.flatMap((item$1) => item$1.type === "variable" ? [item$1.name] : []);
} else inputVariables = [];
imgTemplateObject = new ImagePromptTemplate({
template: imgTemplate,
inputVariables,
templateFormat: additionalOptions?.templateFormat,
additionalContentFields: item
});
} else throw new Error("Invalid image template");
prompt.push(imgTemplateObject);
} else if (typeof item === "object") prompt.push(new DictPromptTemplate({
template: item,
templateFormat: additionalOptions?.templateFormat
}));
return new this({
prompt,
additionalOptions
});
}
async format(input) {
if (this.prompt instanceof BaseStringPromptTemplate) {
const text = await this.prompt.format(input);
return this.createMessage(text);
} else {
const content = [];
for (const prompt of this.prompt) {
let inputs = {};
if (!("inputVariables" in prompt)) throw new Error(`Prompt ${prompt} does not have inputVariables defined.`);
for (const item of prompt.inputVariables) {
if (!inputs) inputs = { [item]: input[item] };
inputs = {
...inputs,
[item]: input[item]
};
}
if (prompt instanceof BaseStringPromptTemplate) {
const formatted = await prompt.format(inputs);
let additionalContentFields;
if ("additionalContentFields" in prompt) additionalContentFields = prompt.additionalContentFields;
content.push({
...additionalContentFields,
type: "text",
text: formatted
});
} else if (prompt instanceof ImagePromptTemplate) {
const formatted = await prompt.format(inputs);
let additionalContentFields;
if ("additionalContentFields" in prompt) additionalContentFields = prompt.additionalContentFields;
content.push({
...additionalContentFields,
type: "image_url",
image_url: formatted
});
} else if (prompt instanceof DictPromptTemplate) {
const formatted = await prompt.format(inputs);
let additionalContentFields;
if ("additionalContentFields" in prompt) additionalContentFields = prompt.additionalContentFields;
content.push({
...additionalContentFields,
...formatted
});
}
}
return this.createMessage(content);
}
}
async formatMessages(values) {
return [await this.format(values)];
}
};
/**
* Class that represents a human message prompt template. It extends the
* BaseMessageStringPromptTemplate.
* @example
* ```typescript
* const message = HumanMessagePromptTemplate.fromTemplate("{text}");
* const formatted = await message.format({ text: "Hello world!" });
*
* const chatPrompt = ChatPromptTemplate.fromMessages([message]);
* const formattedChatPrompt = await chatPrompt.invoke({
* text: "Hello world!",
* });
* ```
*/
var HumanMessagePromptTemplate = class extends _StringImageMessagePromptTemplate {
static _messageClass() {
return HumanMessage;
}
static lc_name() {
return "HumanMessagePromptTemplate";
}
};
/**
* Class that represents an AI message prompt template. It extends the
* BaseMessageStringPromptTemplate.
*/
var AIMessagePromptTemplate = class extends _StringImageMessagePromptTemplate {
static _messageClass() {
return AIMessage;
}
static lc_name() {
return "AIMessagePromptTemplate";
}
};
/**
* Class that represents a system message prompt template. It extends the
* BaseMessageStringPromptTemplate.
* @example
* ```typescript
* const message = SystemMessagePromptTemplate.fromTemplate("{text}");
* const formatted = await message.format({ text: "Hello world!" });
*
* const chatPrompt = ChatPromptTemplate.fromMessages([message]);
* const formattedChatPrompt = await chatPrompt.invoke({
* text: "Hello world!",
* });
* ```
*/
var SystemMessagePromptTemplate = class extends _StringImageMessagePromptTemplate {
static _messageClass() {
return SystemMessage;
}
static lc_name() {
return "SystemMessagePromptTemplate";
}
};
function _isBaseMessagePromptTemplate(baseMessagePromptTemplateLike) {
return typeof baseMessagePromptTemplateLike.formatMessages === "function";
}
function _coerceMessagePromptTemplateLike(messagePromptTemplateLike, extra) {
if (_isBaseMessagePromptTemplate(messagePromptTemplateLike) || isBaseMessage(messagePromptTemplateLike)) return messagePromptTemplateLike;
if (Array.isArray(messagePromptTemplateLike) && messagePromptTemplateLike[0] === "placeholder") {
const messageContent = messagePromptTemplateLike[1];
if (extra?.templateFormat === "mustache" && typeof messageContent === "string" && messageContent.slice(0, 2) === "{{" && messageContent.slice(-2) === "}}") {
const variableName = messageContent.slice(2, -2);
return new MessagesPlaceholder({
variableName,
optional: true
});
} else if (typeof messageContent === "string" && messageContent[0] === "{" && messageContent[messageContent.length - 1] === "}") {
const variableName = messageContent.slice(1, -1);
return new MessagesPlaceholder({
variableName,
optional: true
});
}
throw new Error(`Invalid placeholder template for format ${extra?.templateFormat ?? `"f-string"`}: "${messagePromptTemplateLike[1]}". Expected a variable name surrounded by ${extra?.templateFormat === "mustache" ? "double" : "single"} curly braces.`);
}
const message = coerceMessageLikeToMessage(messagePromptTemplateLike);
let templateData;
if (typeof message.content === "string") templateData = message.content;
else templateData = message.content.map((item) => {
if ("text" in item) return {
...item,
text: item.text
};
else if ("image_url" in item) return {
...item,
image_url: item.image_url
};
else return item;
});
if (message._getType() === "human") return HumanMessagePromptTemplate.fromTemplate(templateData, extra);
else if (message._getType() === "ai") return AIMessagePromptTemplate.fromTemplate(templateData, extra);
else if (message._getType() === "system") return SystemMessagePromptTemplate.fromTemplate(templateData, extra);
else if (ChatMessage.isInstance(message)) return ChatMessagePromptTemplate.fromTemplate(message.content, message.role, extra);
else throw new Error(`Could not coerce message prompt template from input. Received message type: "${message._getType()}".`);
}
function isMessagesPlaceholder(x) {
return x.constructor.lc_name() === "MessagesPlaceholder";
}
/**
* Class that represents a chat prompt. It extends the
* BaseChatPromptTemplate and uses an array of BaseMessagePromptTemplate
* instances to format a series of messages for a conversation.
* @example
* ```typescript
* const message = SystemMessagePromptTemplate.fromTemplate("{text}");
* const chatPrompt = ChatPromptTemplate.fromMessages([
* ["ai", "You are a helpful assistant."],
* message,
* ]);
* const formattedChatPrompt = await chatPrompt.invoke({
* text: "Hello world!",
* });
* ```
*/
var ChatPromptTemplate = class ChatPromptTemplate extends BaseChatPromptTemplate {
static lc_name() {
return "ChatPromptTemplate";
}
get lc_aliases() {
return { promptMessages: "messages" };
}
constructor(input) {
super(input);
Object.defineProperty(this, "promptMessages", {
enumerable: true,
configurable: true,
writable: true,
value: void 0
});
Object.defineProperty(this, "validateTemplate", {
enumerable: true,
configurable: true,
writable: true,
value: true
});
Object.defineProperty(this, "templateFormat", {
enumerable: true,
configurable: true,
writable: true,
value: "f-string"
});
if (input.templateFormat === "mustache" && input.validateTemplate === void 0) this.validateTemplate = false;
Object.assign(this, input);
if (this.validateTemplate) {
const inputVariablesMessages = /* @__PURE__ */ new Set();
for (const promptMessage of this.promptMessages) {
if (promptMessage instanceof BaseMessage) continue;
for (const inputVariable of promptMessage.inputVariables) inputVariablesMessages.add(inputVariable);
}
const totalInputVariables = this.inputVariables;
const inputVariablesInstance = new Set(this.partialVariables ? totalInputVariables.concat(Object.keys(this.partialVariables)) : totalInputVariables);
const difference = new Set([...inputVariablesInstance].filter((x) => !inputVariablesMessages.has(x)));
if (difference.size > 0) throw new Error(`Input variables \`${[...difference]}\` are not used in any of the prompt messages.`);
const otherDifference = new Set([...inputVariablesMessages].filter((x) => !inputVariablesInstance.has(x)));
if (otherDifference.size > 0) throw new Error(`Input variables \`${[...otherDifference]}\` are used in prompt messages but not in the prompt template.`);
}
}
_getPromptType() {
return "chat";
}
async _parseImagePrompts(message, inputValues) {
if (typeof message.content === "string") return message;
const formattedMessageContent = await Promise.all(message.content.map(async (item) => {
if (item.type !== "image_url") return item;
let imageUrl = "";
if (typeof item.image_url === "string") imageUrl = item.image_url;
else imageUrl = item.image_url.url;
const promptTemplatePlaceholder = PromptTemplate.fromTemplate(imageUrl, { templateFormat: this.templateFormat });
const formattedUrl = await promptTemplatePlaceholder.format(inputValues);
if (typeof item.image_url !== "string" && "url" in item.image_url) item.image_url.url = formattedUrl;
else item.image_url = formattedUrl;
return item;
}));
message.content = formattedMessageContent;
return message;
}
async formatMessages(values) {
const allValues = await this.mergePartialAndUserVariables(values);
let resultMessages = [];
for (const promptMessage of this.promptMessages) if (promptMessage instanceof BaseMessage) resultMessages.push(await this._parseImagePrompts(promptMessage, allValues));
else {
const inputValues = promptMessage.inputVariables.reduce((acc, inputVariable) => {
if (!(inputVariable in allValues) && !(isMessagesPlaceholder(promptMessage) && promptMessage.optional)) {
const error = addLangChainErrorFields(new Error(`Missing value for input variable \`${inputVariable.toString()}\``), "INVALID_PROMPT_INPUT");
throw error;
}
acc[inputVariable] = allValues[inputVariable];
return acc;
}, {});
const message = await promptMessage.formatMessages(inputValues);
resultMessages = resultMessages.concat(message);
}
return resultMessages;
}
async partial(values) {
const newInputVariables = this.inputVariables.filter((iv) => !(iv in values));
const newPartialVariables = {
...this.partialVariables ?? {},
...values
};
const promptDict = {
...this,
inputVariables: newInputVariables,
partialVariables: newPartialVariables
};
return new ChatPromptTemplate(promptDict);
}
static fromTemplate(template, options) {
const prompt = PromptTemplate.fromTemplate(template, options);
const humanTemplate = new HumanMessagePromptTemplate({ prompt });
return this.fromMessages([humanTemplate]);
}
/**
* Create a chat model-specific prompt from individual chat messages
* or message-like tuples.
* @param promptMessages Messages to be passed to the chat model
* @returns A new ChatPromptTemplate
*/
static fromMessages(promptMessages, extra) {
const flattenedMessages = promptMessages.reduce((acc, promptMessage) => acc.concat(promptMessage instanceof ChatPromptTemplate ? promptMessage.promptMessages : [_coerceMessagePromptTemplateLike(promptMessage, extra)]), []);
const flattenedPartialVariables = promptMessages.reduce((acc, promptMessage) => promptMessage instanceof ChatPromptTemplate ? Object.assign(acc, promptMessage.partialVariables) : acc, Object.create(null));
const inputVariables = /* @__PURE__ */ new Set();
for (const promptMessage of flattenedMessages) {
if (promptMessage instanceof BaseMessage) continue;
for (const inputVariable of promptMessage.inputVariables) {
if (inputVariable in flattenedPartialVariables) continue;
inputVariables.add(inputVariable);
}
}
return new this({
...extra,
inputVariables: [...inputVariables],
promptMessages: flattenedMessages,
partialVariables: flattenedPartialVariables,
templateFormat: extra?.templateFormat
});
}
/** @deprecated Renamed to .fromMessages */
static fromPromptMessages(promptMessages) {
return this.fromMessages(promptMessages);
}
};
//#endregion
//#region node_modules/.pnpm/@[email protected][email protected][email protected][email protected]_/node_modules/@langchain/core/dist/prompts/few_shot.js
/**
* Prompt template that contains few-shot examples.
* @augments BasePromptTemplate
* @augments FewShotPromptTemplateInput
* @example
* ```typescript
* const examplePrompt = PromptTemplate.fromTemplate(
* "Input: {input}\nOutput: {output}",
* );
*
* const exampleSelector = await SemanticSimilarityExampleSelector.fromExamples(
* [
* { input: "happy", output: "sad" },
* { input: "tall", output: "short" },
* { input: "energetic", output: "lethargic" },
* { input: "sunny", output: "gloomy" },
* { input: "windy", output: "calm" },
* ],
* new OpenAIEmbeddings(),
* HNSWLib,
* { k: 1 },
* );
*
* const dynamicPrompt = new FewShotPromptTemplate({
* exampleSelector,
* examplePrompt,
* prefix: "Give the antonym of every input",
* suffix: "Input: {adjective}\nOutput:",
* inputVariables: ["adjective"],
* });
*
* // Format the dynamic prompt with the input 'rainy'
* console.log(await dynamicPrompt.format({ adjective: "rainy" }));
*
* ```
*/
var FewShotPromptTemplate = class FewShotPromptTemplate extends BaseStringPromptTemplate {
constructor(input) {
super(input);
Object.defineProperty(this, "lc_serializable", {
enumerable: true,
configurable: true,
writable: true,
value: false
});
Object.defineProperty(this, "examples", {
enumerable: true,
configurable: true,
writable: true,
value: void 0
});
Object.defineProperty(this, "exampleSelector", {
enumerable: true,
configurable: true,
writable: true,
value: void 0
});
Object.defineProperty(this, "examplePrompt", {
enumerable: true,
configurable: true,
writable: true,
value: void 0
});
Object.defineProperty(this, "suffix", {
enumerable: true,
configurable: true,
writable: true,
value: ""
});
Object.defineProperty(this, "exampleSeparator", {
enumerable: true,
configurable: true,
writable: true,
value: "\n\n"
});
Object.defineProperty(this, "prefix", {
enumerable: true,
configurable: true,
writable: true,
value: ""
});
Object.defineProperty(this, "templateFormat", {
enumerable: true,
configurable: true,
writable: true,
value: "f-string"
});
Object.defineProperty(this, "validateTemplate", {
enumerable: true,
configurable: true,
writable: true,
value: true
});
Object.assign(this, input);
if (this.examples !== void 0 && this.exampleSelector !== void 0) throw new Error("Only one of 'examples' and 'example_selector' should be provided");
if (this.examples === void 0 && this.exampleSelector === void 0) throw new Error("One of 'examples' and 'example_selector' should be provided");
if (this.validateTemplate) {
let totalInputVariables = this.inputVariables;
if (this.partialVariables) totalInputVariables = totalInputVariables.concat(Object.keys(this.partialVariables));
checkValidTemplate(this.prefix + this.suffix, this.templateFormat, totalInputVariables);
}
}
_getPromptType() {
return "few_shot";
}
static lc_name() {
return "FewShotPromptTemplate";
}
async getExamples(inputVariables) {
if (this.examples !== void 0) return this.examples;
if (this.exampleSelector !== void 0) return this.exampleSelector.selectExamples(inputVariables);
throw new Error("One of 'examples' and 'example_selector' should be provided");
}
async partial(values) {
const newInputVariables = this.inputVariables.filter((iv) => !(iv in values));
const newPartialVariables = {
...this.partialVariables ?? {},
...values
};
const promptDict = {
...this,
inputVariables: newInputVariables,
partialVariables: newPartialVariables
};
return new FewShotPromptTemplate(promptDict);
}
/**
* Formats the prompt with the given values.
* @param values The values to format the prompt with.
* @returns A promise that resolves to a string representing the formatted prompt.
*/
async format(values) {
const allValues = await this.mergePartialAndUserVariables(values);
const examples = await this.getExamples(allValues);
const exampleStrings = await Promise.all(examples.map((example) => this.examplePrompt.format(example)));
const template = [
this.prefix,
...exampleStrings,
this.suffix
].join(this.exampleSeparator);
return renderTemplate(template, this.templateFormat, allValues);
}
serialize() {
if (this.exampleSelector || !this.examples) throw new Error("Serializing an example selector is not currently supported");
if (this.outputParser !== void 0) throw new Error("Serializing an output parser is not currently supported");
return {
_type: this._getPromptType(),
input_variables: this.inputVariables,
example_prompt: this.examplePrompt.serialize(),
example_separator: this.exampleSeparator,
suffix: this.suffix,
prefix: this.prefix,
template_format: this.templateFormat,
examples: this.examples
};
}
static async deserialize(data) {
const { example_prompt } = data;
if (!example_prompt) throw new Error("Missing example prompt");
const examplePrompt = await PromptTemplate.deserialize(example_prompt);
let examples;
if (Array.isArray(data.examples)) examples = data.examples;
else throw new Error("Invalid examples format. Only list or string are supported.");
return new FewShotPromptTemplate({
inputVariables: data.input_variables,
examplePrompt,
examples,
exampleSeparator: data.example_separator,
prefix: data.prefix,
suffix: data.suffix,
templateFormat: data.template_format
});
}
};
/**
* Chat prompt template that contains few-shot examples.
* @augments BasePromptTemplateInput
* @augments FewShotChatMessagePromptTemplateInput
*/
var FewShotChatMessagePromptTemplate = class FewShotChatMessagePromptTemplate extends BaseChatPromptTemplate {
_getPromptType() {
return "few_shot_chat";
}
static lc_name() {
return "FewShotChatMessagePromptTemplate";
}
constructor(fields) {
super(fields);
Object.defineProperty(this, "lc_serializable", {
enumerable: true,
configurable: true,
writable: true,
value: true
});
Object.defineProperty(this, "examples", {
enumerable: true,
configurable: true,
writable: true,
value: void 0
});
Object.defineProperty(this, "exampleSelector", {
enumerable: true,
configurable: true,
writable: true,
value: void 0
});
Object.defineProperty(this, "examplePrompt", {
enumerable: true,
configurable: true,
writable: true,
value: void 0
});
Object.defineProperty(this, "suffix", {
enumerable: true,
configurable: true,
writable: true,
value: ""
});
Object.defineProperty(this, "exampleSeparator", {
enumerable: true,
configurable: true,
writable: true,
value: "\n\n"
});
Object.defineProperty(this, "prefix", {
enumerable: true,
configurable: true,
writable: true,
value: ""
});
Object.defineProperty(this, "templateFormat", {
enumerable: true,
configurable: true,
writable: true,
value: "f-string"
});
Object.defineProperty(this, "validateTemplate", {
enumerable: true,
configurable: true,
writable: true,
value: true
});
this.examples = fields.examples;
this.examplePrompt = fields.examplePrompt;
this.exampleSeparator = fields.exampleSeparator ?? "\n\n";
this.exampleSelector = fields.exampleSelector;
this.prefix = fields.prefix ?? "";
this.suffix = fields.suffix ?? "";
this.templateFormat = fields.templateFormat ?? "f-string";
this.validateTemplate = fields.validateTemplate ?? true;
if (this.examples !== void 0 && this.exampleSelector !== void 0) throw new Error("Only one of 'examples' and 'example_selector' should be provided");
if (this.examples === void 0 && this.exampleSelector === void 0) throw new Error("One of 'examples' and 'example_selector' should be provided");
if (this.validateTemplate) {
let totalInputVariables = this.inputVariables;
if (this.partialVariables) totalInputVariables = totalInputVariables.concat(Object.keys(this.partialVariables));
checkValidTemplate(this.prefix + this.suffix, this.templateFormat, totalInputVariables);
}
}
async getExamples(inputVariables) {
if (this.examples !== void 0) return this.examples;
if (this.exampleSelector !== void 0) return this.exampleSelector.selectExamples(inputVariables);
throw new Error("One of 'examples' and 'example_selector' should be provided");
}
/**
* Formats the list of values and returns a list of formatted messages.
* @param values The values to format the prompt with.
* @returns A promise that resolves to a string representing the formatted prompt.
*/
async formatMessages(values) {
const allValues = await this.mergePartialAndUserVariables(values);
let examples = await this.getExamples(allValues);
examples = examples.map((example) => {
const result = {};
this.examplePrompt.inputVariables.forEach((inputVariable) => {
result[inputVariable] = example[inputVariable];
});
return result;
});
const messages = [];
for (const example of examples) {
const exampleMessages = await this.examplePrompt.formatMessages(example);
messages.push(...exampleMessages);
}
return messages;
}
/**
* Formats the prompt with the given values.
* @param values The values to format the prompt with.
* @returns A promise that resolves to a string representing the formatted prompt.
*/
async format(values) {
const allValues = await this.mergePartialAndUserVariables(values);
const examples = await this.getExamples(allValues);
const exampleMessages = await Promise.all(examples.map((example) => this.examplePrompt.formatMessages(example)));
const exampleStrings = exampleMessages.flat().map((message) => message.content);
const template = [
this.prefix,
...exampleStrings,
this.suffix
].join(this.exampleSeparator);
return renderTemplate(template, this.templateFormat, allValues);
}
/**
* Partially formats the prompt with the given values.
* @param values The values to partially format the prompt with.
* @returns A promise that resolves to an instance of `FewShotChatMessagePromptTemplate` with the given values partially formatted.
*/
async partial(values) {
const newInputVariables = this.inputVariables.filter((variable) => !(variable in values));
const newPartialVariables = {
...this.partialVariables ?? {},
...values
};
const promptDict = {
...this,
inputVariables: newInputVariables,
partialVariables: newPartialVariables
};
return new FewShotChatMessagePromptTemplate(promptDict);
}
};
//#endregion
export { AIMessagePromptTemplate, BaseChatPromptTemplate, BaseMessagePromptTemplate, BaseMessageStringPromptTemplate, ChatMessagePromptTemplate, ChatPromptTemplate, DictPromptTemplate, FewShotChatMessagePromptTemplate, FewShotPromptTemplate, HumanMessagePromptTemplate, ImagePromptTemplate, MessagesPlaceholder, SystemMessagePromptTemplate, messages_exports }; |