n8n-nodes-sap-ai-core
Version:
n8n nodes for SAP AI Core LLM and embeddings integration
9 lines • 443 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getOptionalOutputParser = getOptionalOutputParser;
async function getOptionalOutputParser(context) {
// Get output parser from connection if available
const outputParser = await context.getInputConnectionData("ai_outputParser" /* NodeConnectionType.AiOutputParser */, 0);
return outputParser || null;
}
//# sourceMappingURL=N8nOutputParser.js.map