@jss-rule-engine/chat
Version:
7 lines (6 loc) • 317 B
JavaScript
import sendMessageCommand from "./client/actions/sendMessage";
import aiResponseCommand from "./client/actions/aiResponse";
export function registerChatCommands(factory) {
factory.registerAction("chatbot:message", sendMessageCommand);
factory.registerAction("chatbot:ai-response", aiResponseCommand);
}