Getting Started¶
A Minimal Voice User Interface¶
A Flask-Ask application looks like this:
from flask import Flask, render_template
from flask_ask import Ask, statement
app = Flask(__name__)
ask = Ask(app, '/')
@ask.intent('HelloIntent')
def hello(firstname):
text = render_template('hello', firstname=firstname)
return statement(text).simple_card('Hello', text)
if __name__ == '__main__':
app.run(debug=True)
In the code above:
- The
Askobject is created by passing in the Flask application and a route to forward Alexa requests to. - The
intentdecorator mapsHelloIntentto a view functionhello. - The intent’s
firstnameslot is implicitly mapped tohello‘sfirstnameparameter. - Jinja templates are supported. Internally, templates are loaded from a YAML file (discussed further below).
- Lastly, a builder constructs a spoken response and displays a contextual card in the Alexa smartphone/tablet app.
Since Alexa responses are usually short phrases, it’s convenient to put them in the same file. Flask-Ask has a Jinja template loader that loads multiple templates from a single YAML file. For example, here’s a template that supports the minimal voice interface above.Templates are stored in a file called templates.yaml located in the application root:
hello: Hello, {{ firstname }}
For more information about how the Alexa Skills Kit works, see Understanding Custom Skills in the Alexa Skills Kit documentation.
Additionally, more code and template examples are in the samples directory.