@n8n/n8n-nodes-langchain
Version:

101 lines • 3.67 kB
JavaScript
;
var __create = Object.create;
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __getProtoOf = Object.getPrototypeOf;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __export = (target, all) => {
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return to;
};
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
// If the importer is in node compatibility mode or this is not an ESM
// file that has been converted to a CommonJS file using a Babel-
// compatible transform (i.e. "__esModule" has not been set), then set
// "default" to the CommonJS "module.exports" for node compatibility.
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
mod
));
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
var router_exports = {};
__export(router_exports, {
router: () => router
});
module.exports = __toCommonJS(router_exports);
var import_n8n_workflow = require("n8n-workflow");
var audio = __toESM(require("./audio"));
var document = __toESM(require("./document"));
var file = __toESM(require("./file"));
var fileSearch = __toESM(require("./fileSearch"));
var image = __toESM(require("./image"));
var text = __toESM(require("./text"));
var video = __toESM(require("./video"));
async function router() {
const returnData = [];
const items = this.getInputData();
const resource = this.getNodeParameter("resource", 0);
const operation = this.getNodeParameter("operation", 0);
const googleGeminiTypeData = {
resource,
operation
};
let execute;
switch (googleGeminiTypeData.resource) {
case "audio":
execute = audio[googleGeminiTypeData.operation].execute;
break;
case "document":
execute = document[googleGeminiTypeData.operation].execute;
break;
case "file":
execute = file[googleGeminiTypeData.operation].execute;
break;
case "fileSearch":
execute = fileSearch[googleGeminiTypeData.operation].execute;
break;
case "image":
execute = image[googleGeminiTypeData.operation].execute;
break;
case "text":
execute = text[googleGeminiTypeData.operation].execute;
break;
case "video":
execute = video[googleGeminiTypeData.operation].execute;
break;
default:
throw new import_n8n_workflow.NodeOperationError(
this.getNode(),
`The operation "${operation}" is not supported!`
);
}
for (let i = 0; i < items.length; i++) {
try {
const responseData = await execute.call(this, i);
returnData.push(...responseData);
} catch (error) {
if (this.continueOnFail()) {
returnData.push({ json: { error: error.message }, pairedItem: { item: i } });
continue;
}
throw new import_n8n_workflow.NodeOperationError(this.getNode(), error, {
itemIndex: i,
description: error.description
});
}
}
return [returnData];
}
// Annotate the CommonJS export names for ESM import in node:
0 && (module.exports = {
router
});
//# sourceMappingURL=router.js.map