animesh123
animesh123

Reputation: 1

how to store or fetch requests given by user to alexa voice service on raspberry pi in database?

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.

Upvotes: 0

Views: 280

Answers (1)

ck3g
ck3g

Reputation: 5929

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

Upvotes: 1

Related Questions