You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 21, 2021. It is now read-only.
I converted from the alexa javascript skills API to this package. I'm pretty happy so far in that it is running nicely on my django service.
In the process of converting my code, I'm wondering if there is a good solution to support states. I'm currently using a session attribute to set the state, but it would great if there were a more elegant way to have different menus in different states (rather than one main alexa.py checking the state).
Also, I'm wondering if anyone has looked at the structure of the dialog interface to alexa to see if it would be possible to support this? This is particularly useful for single word responses. My skills are getting confused between single word answers to slots from one skill versus another (alexa is calling one intent when it should be calling another).
Hi,
I converted from the alexa javascript skills API to this package. I'm pretty happy so far in that it is running nicely on my django service.
In the process of converting my code, I'm wondering if there is a good solution to support states. I'm currently using a session attribute to set the state, but it would great if there were a more elegant way to have different menus in different states (rather than one main alexa.py checking the state).
Also, I'm wondering if anyone has looked at the structure of the dialog interface to alexa to see if it would be possible to support this? This is particularly useful for single word responses. My skills are getting confused between single word answers to slots from one skill versus another (alexa is calling one intent when it should be calling another).
Thanks,
T