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

16 lines (13 loc) 277 B
const formatContext = context => { if (!context) { return []; } return (Array.isArray(context) ? context : [context]) .map(text => ( { role: 'user', content: [{ type: 'input_text', text}] } )); }; module.exports = formatContext;