/voxa-chatbase

Primary LanguageJavaScriptMIT LicenseMIT

Voxa Chatbase for Alexa Skills

Build Status Coverage Status

A Chatbase plugin for building Alexa Skills with voxa

Installation

Just install from npm

npm install --save voxa-chatbase

Usage

const Voxa = require('voxa');
const voxaChatbase = require('voxa-chatbase');

const skill = new Voxa(voxaOptions);

const chatbaseConfig = {
  apiKey: '<chatbase apiKey>',
  ignoreUsers: [], // a list of users to ignore.
  suppressSending: false, // A flag to supress sending hits.
};

voxaChatbase(skill, chatbaseConfig);