0
votes

I am naive to alexa voice service.

I am trying to integrate machine learning algorithm(naive bayes) in alexa voice service sample app. To implement this algorithm i need to store all the request(voice commands given by user) which are successfully processed by amazon alexa into my local database which will be on raspberry pi with their time stamp and other information to process the data. How to do it?

Please give suggestions and provide on-line helpful resources.

1

1 Answers

1
votes

You can perform external API calls from the Alexa skill. So probably you need to set up API server on your Raspberry PI and send data to it. Or you can have separate API server and then fetch the data from it later.

There you can find examples of how to access external APIs https://github.com/alexa/alexa-cookbook/tree/master/external-calls/httpsGet