UNPKG

node-red-contrib-chatbot

Version:

REDBot a Chat bot for a full featured chat bot for Telegram, Facebook Messenger and Slack. Almost no coding skills required

15 lines 291 B
module.exports = function(RED) { function RemoteServerNode(n) { RED.nodes.createNode(this,n); this.name = n.name; } RED.nodes.registerType( 'chatbot-open-ai-key', RemoteServerNode, { credentials: { apiKey: { type: 'password' } } } ); }