Skip to content

Instantly share code, notes, and snippets.

View pvfigueiredo's full-sized avatar
🏠
Working from home

Paulo Figueiredo pvfigueiredo

🏠
Working from home
View GitHub Profile
@vitoravale
vitoravale / app.js
Last active January 25, 2018 13:56
QnA Maker Bot With Active Learning
const builder = require('botbuilder')
const restify = require('restify')
const cognitiveServices = require('botbuilder-cognitiveservices') // incluir no projeto npm i -s botbuilder-cognitiveservices
//=========================================================
// Bot Setup
//=========================================================
const port = process.env.port || process.env.PORT || 3978
const server = restify.createServer()