Spaces:
Build error
Build error
File size: 799 Bytes
c211499 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.convertLangChainMessageToExample = exports.isLangChainMessage = void 0;
function isLangChainMessage(message) {
return typeof message?._getType === "function";
}
exports.isLangChainMessage = isLangChainMessage;
function convertLangChainMessageToExample(message) {
const converted = {
type: message._getType(),
data: { content: message.content },
};
// Check for presence of keys in additional_kwargs
if (message?.additional_kwargs &&
Object.keys(message.additional_kwargs).length > 0) {
converted.data.additional_kwargs = { ...message.additional_kwargs };
}
return converted;
}
exports.convertLangChainMessageToExample = convertLangChainMessageToExample;
|