Alexa skill to recite a poem for you!
Read moreLink for the Skill: Poem Reciter
Let Alexa recite a poem for you!
You can either listen to a Random poem or a poem of your favourite poet from our large database of Authors!
Skill currently supports EN(US), EN(UK) & EN(IN) languages.
Intent Schema{
"languageModel": {
"types": [
{
"name": "POET_NAMES",
"values": [
{
"id": null,
"name": {
"value": "Robert Burns",
"synonyms": []
}
},
{
"id": null,
"name": {
"value": "John Donne",
"synonyms": []
}
}
]
}
],
"intents": [
{
"name": "AMAZON.CancelIntent",
"samples": [
"cancel"
]
},
{
"name": "AMAZON.HelpIntent",
"samples": [
"help"
]
},
{
"name": "AMAZON.StopIntent",
"samples": [
"stop"
]
},
{
"name": "GetPoemBy",
"samples": [
"Alexa tell me a poem by {Poet}",
"Poem by {Poet}"
],
"slots": [
{
"name": "Poet",
"type": "POET_NAMES"
}
]
},
{
"name": "GetPoemIntent",
"samples": [
"Alexa tell me a poem",
"Give me a poem",
"Listen to a poem",
"Tell me a Random Poem"
],
"slots": []
}
],
"invocationName": "poem reciter"
}
}
Sample UtterancesAlexa Open Poem Reciter
Alexa Open Poem Reciter and tell me a poem
Alexa Open Poem Reciter and tell me a poem by "POET_NAME"
Down below you can find the link to my GitHub Repo which contains the Lambda Function Code.
Thanks to PoetryDB.
Comments
Please log in or sign up to comment.