How can I create a generic slot for an Alexa skill? So that I can create my own Todo app and it will recognise the free form text.
相关问题
- How to make Alexa countdown in seconds
- Alexa skills custom slot for date times
- OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connecti
- “Catch-all” for Alexa Skills Kit input not in defi
- How to keep an alexa skill open?
相关文章
- How can I get Alexa working on my iOS app?
- How to make phone call from custom alexa skill
- How to get an Alexa userId?
- How do I revise a live Alexa skill?
- How to end session for custom Alexa skill?
- How to call a SSL secured REST service within AWS
- Amazon Alexa Skill
- Troubleshooting Amazon's Alexa Skill Kit (ASK)
Have you done any testing with a slot with some common examples in the slot list? I'm asking because I have a small custom slot with 10 choices and am able to recognize a very wide range of content with it (items that aren't in the list).
This article "Why a Custom Slot is the Literal Solution" says
And, by the way, the literal slot is back on Jan 2017, it's not recommended though.
This is the link to LITERAL Slot Type Reference
The Alexa blog announced a List Skill API. As mentioned above, the literal slot type is no longer supported for new skills.
If you create a custom slot with a number of values - depending on your expected response values with a single word or 2+ words - Alexa will catch also spoken words not on the list and pass them to your skill. Transcription of these words is best effort, and probably not perfect. Amazon discontinued the literal slot type because the results of speech-to-text were not good enough.
As you can sign up for a limited beta on the List Skill API, maybe this will solve your issue.
There is now way to get hold of the original "transcript" of the utterance or a portion of it.
There used to be a literal type built in slot, that gave you something, but Amazon stopped supporting it.