npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@jovotech/model-alexa

v4.0.3

Published

Jovo Model for Alexa

Downloads

414

Readme

Jovo Model: Alexa

Learn how to turn the Jovo Model into an Alexa Interaction Model.

Introduction

Language models for Amazon Alexa Skills are called Alexa Interaction Models. You can either manage them via API (what the Jovo CLI is doing during deployment) or in the Amazon Developer Portal, which offers a graphical user interface.

Alexa Interaction Models include:

  • Invocation name
  • Intents with samples (phrases in the Jovo Model) and slots (entities)
  • Slot types (entity types)

Learn more about the structure in the official Alexa documentation. The Jovo Model can be translated into this structure by using the jovo build command (see below) or the npm package (see below).

Alexa-specific Elements in the Jovo Model

This section provides an overview how the Jovo Model (see general structure in the main Jovo Model docs) can be extended with platform-specific content for Alexa.

Invocation

You can define an Alexa-specific invocation name like this:

"invocation": {
    "alexa": "my test skill"
    // ...
},

Built-in Slot Types

Find all built-in slot types in the official Alexa Slot Type Reference.

If your intent uses an input (see how they are added to the Jovo Model) that requires an Alexa built-in slot type, you can add it like this:

"entities": {
  "name": {
    "type": {
        "alexa": "AMAZON.US_FIRST_NAME"
        // ...
    }
  }
}

Alexa-only Elements

Some elements (intents, slot types) might be required only by the Alexa portion of your Jovo project. For this you can add an alexa object to your Jovo Model.

"alexa": {
    "interactionModel": {
        "languageModel": {
            "intents": [
                {
                    "name": "AMAZON.CancelIntent",
                    "samples": []
                },
                {
                    "name": "AMAZON.HelpIntent",
                    "samples": []
                },
                {
                    "name": "AMAZON.StopIntent",
                    "samples": []
                }
            ]
        }
    }
},

This object follows the structure of the Alexa Interaction Model JSON, notice the difference of samples instead of phrases, for example.

Using the Alexa Jovo Model with the Jovo CLI

By using the jovo build command, you can turn your Jovo Model files in the models folder in your Jovo project into Alexa specific files. You can find the files inside the build folder that is created by the Jovo CLI. It contains all the information of your Alexa Skill needed to deploy the skill to the Amazon Developer Portal.

Using the Alexa Jovo Model npm Package

Install the package like this:

$ npm install @jovotech/model-alexa

You can learn more about all the Jovo Model features here: Using the Jovo Model npm Packages.