Reputation: 245
How to Integrate my chatbot with google chatbase and that also using aws lambda function. This particular lambda function has my chatbot's backend written in node.js. So I would like to include chatbase along with it and i wonder how to do it.
Thanks in advance.
Upvotes: 0
Views: 214
Reputation: 2699
You should just be able to install the Chatbase NPM module:
npm install --save @google/chatbase
Which will install the module in your current project directory and modify your package.json
to list it as a dependency to your project.
Once you upload this app to AWS lambda the library should continue to work.
Upvotes: 1