3.6.2 • Published 2 years ago

jovo-platform-web v3.6.2

Weekly downloads
122
License
Apache-2.0
Repository
-
Last release
2 years ago

Jovo Web Platform

To view this page on the Jovo website, visit https://v3.jovo.tech/marketplace/jovo-platform-web

Learn more about the Jovo Web Platform, which can be used to build fully customized voice and chat experiences that work in the browser.

Introduction

Besides integrations with major platforms like Alexa, Google Assistant, or Facebook Messenger, Jovo also enables you to connect your own clients to build fully custom conversational experiences for both voice and chat.

The Jovo Web Platform helps you connect your Jovo app to various web frontends. You can check out one of these starter templates to get a first impression how it looks like:

How it works

Jovo Client and Jovo Core Platform

The Jovo Web Platform can be connected to any web client (the "frontend" that records speech or text input and passes it to the Jovo app). You can either implement your own client or use existing Jovo Clients.

The client sends a request to the Jovo app that may contain audio, text, or other input. The Jovo Core Platform then deals with this information and returns a response back to the client. Learn more about the Core Platform request and response structures below.

Depending on the client, it may be necessary to add integrations to the platform to convert the input to structured data:

After these integrations are added, building a Jovo app for custom clients is similar to building for platforms like Alexa and Google Assistant. Take a look at the Jovo Docs to learn more.

Installation

Install the integration into your project directory:

$ npm install --save jovo-platform-web

Import the installed module, initialize and add it to the app object.

// @language=javascript

// src/app.js

const { WebPlatform } = require('jovo-platform-web');

const webPlatform = new WebPlatform();

app.use(webPlatform);

// @language=typescript

// src/app.ts

import { WebPlatform } from 'jovo-platform-web';

const webPlatform = new WebPlatform();

app.use(webPlatform);

Usage

You can access the webApp object like this:

// @language=javascript
this.$webApp

// @language=typescript
this.$webApp!

The returned object will be an instance of WebApp if the current request is compatible with the Web Platform. Otherwise undefined will be returned.

Requests and Responses

In a Jovo app, each interaction goes through a request & response cycle, where the Jovo app receives the request from the client in a JSON format, routes through the logic, and then assembles a response that is sent back to the client.

The request usually contains data like an audio file or raw text (find all sample request JSONs here):

{
  "version": "3.2.4",
  "type": "jovo-platform-web",
  "request": {
    "id": "d86f9fdf-6762-4acf-8d1d-ce330a29d592",
    "timestamp": "2020-11-23T12:50:21.009Z",
    "type": "TRANSCRIBED_TEXT",
    "body": { "text": "hello world" },
    "locale": "en",
    "data": {}
  },
  "context": {
    "device": { "type": "BROWSER", "capabilities": { "AUDIO": true, "HTML": true, "TEXT": true } },
    "session": {
      "id": "1e4076b8-539a-48d5-8b14-1ec3cf651b7b",
      "data": {},
      "lastUpdatedAt": "2020-11-23T12:35:21.345Z"
    },
    "user": { "id": "67fed000-9f11-4acf-bbbc-1e52e5ea22a9", "data": {} }
  }
}

The response contains all the information that is needed by the client to display content (find all sample response JSONs here):

{
  "version": "3.2.4",
  "actions": [
    {
      "plain": "Hello World! What's your name?",
      "ssml": "<speak>Hello World! What's your name?</speak>",
      "type": "SPEECH"
    }
  ],
  "reprompts": [
    {
      "plain": "Please tell me your name.",
      "ssml": "<speak>Please tell me your name.</speak>",
      "type": "SPEECH"
    }
  ],
  "user": { "data": {} },
  "session": { "data": {}, "end": false },
  "context": { "request": { "nlu": { "intent": { "name": "LAUNCH" } } } }
}

Adding Integrations

Depending on how the client sends the data (e.g. just a raw audio file, or written text), it may be necessary to add Automatic Speech Recognition (ASR) or Natural Language Understanding (NLU) integrations to the Jovo Web Platform.

Integrations can be added with the use method:

const webPlatform = new webPlatform();

webPlatform
  .use
  // Add integrations here
  ();

app.use(webPlatform);

The example below uses the Jovo NLU integration for NLPjs to turn raw text into structured meaning:

// @language=javascript

// src/app.js
const { WebPlatform } = require('jovo-platform-web');
const { NlpjsNlu } = require('jovo-nlu-nlpjs');

const webPlatform = new WebPlatform();
webPlatform.use(new NlpjsNlu());

app.use(webPlatform);

// @language=typescript

// src/app.ts
import { WebPlatform } from 'jovo-platform-web';
import { NlpjsNlu } from 'jovo-nlu-nlpjs';

const webPlatform = new WebPlatform();
webPlatform.use(new NlpjsNlu());

app.use(webPlatform);

Responding with Actions

Actions are additional ways (beyond speech output) how the client can respond to the user. You can add or set Actions like this:

// @language=javascript

// Add Actions and RepromptActions (multiple calls possible)
this.$webApp.addActions(this.$webApp.$actions);
this.$webApp.addRepromptActions(this.$webApp.$repromptActions);

// Set Actions and RepromptActions (overrides existing Actions)
this.$webApp.setActions(this.$webApp.$actions);
this.$webApp.setRepromptActions(this.$webApp.$repromptActions);

// @language=typescript

// Add Actions and RepromptActions (multiple calls possible)
this.$webApp?.addActions(this.$webApp?.$actions);
this.$webApp?.addRepromptActions(this.$webApp?.$repromptActions);

// Set Actions and RepromptActions (overrides existing Actions)
this.$webApp?.setActions(this.$webApp?.$actions);
this.$webApp?.setRepromptActions(this.$webApp?.$repromptActions);

INFO The actions generated for the speech of tell and ask will NOT be overwritten.

There are several action types available:

There are also containers that can be used to nest actions:

SpeechAction

The SpeechAction can be used to display text and synthesize text. The SpeechAction has the following interface:

NameDescriptionValueRequired
typethe type of the actionSPEECHyes
ssmlthe SSML stringstringno
plainthe plain speech stringstringno
displayTextthe text that will only be displayed on the screenstringno

AudioAction

The AudioAction can be used to play an audio file.

NameDescriptionValueRequired
typethe type of the actionAUDIOyes
tracks[]an array containing the audio tracksobject[]yes
tracks[].srcthe url where the audio file is storedstringyes
tracks[].idthe id of the audio trackstringno
tracks[].offsetInMsthe timestamp from which the playback will begin specified in milliseconds. Omitting the value or setting it to 0 will start the playback from the beginningnumberno
tracks[].durationInMsthe duration of the playback in milliseconds. If the value is smaller than the audio tracks actual duration, the playback will be stopped at the specified timenumberno
tracks[].metaDataan object containing the audio track's metadataobjectno
tracks[].metaData.titlethe title of the trackstringno
tracks[].metaData.descriptionthe description of the trackstringno
tracks[].metaData.coverImageUrlthe url to the cover imagestringno
tracks[].metaData.backgroundImageUrlthe url to the background imagestringno

VisualAction

The VisualAction can be used for visual output like cards.

NameDescriptionValueRequired
typethe type of the actionVISUALyes
visualTypethe type of visual outputBASIC_CARD or IMAGE_CARDyes
titlethe title of the card. Optional if visualType is IMAGE_CARDstringyes
bodythe body of the card. Optional if visualType is IMAGE_CARDstringyes
imageUrlthe url to the image you want to display. Can only be used if visualType is IMAGE_CARD and is in that case a required parameterno

ProcessingAction

The ProcessingAction can be used to display processing information.

NameDescriptionValueRequired
typethe type of the actionPROCESSINGyes
processingTypethe type of the processing actionHIDDEN, TYPING, or SPINNERyes
durationInMsthe duration of the action in millisecondsnumberno
textthe text that should be displayedstringno

QuickReplyAction

The QuickReplyAction can be used to provide the user with suggested replies.

NameDescriptionValueRequired
typethe type of the actionQUICK_REPLYyes
replies[]an array containing the quick repliesobject[]yes
replies[].idthe id of the quick replystringno
replies[].labelthe label of the quick replystringno
replies[].valuethe value of the quick replystringyes

CustomAction

The CustomAction can be used to send a custom payload that can be handled by the client.

SequenceContainerAction

The SequenceContainer can be used to nest actions. All actions inside this container will be processed after another.

NameDescriptionValueRequired
typethe type of the actionSEQ_CONTAINERyes
actions[]the array of actions inside the containeryes

ParallelContainerAction

The ParallelContainer can be used to nest actions. All actions inside this container will be processed simultaneously.

NameDescriptionValueRequired
typethe type of the actionPAR_CONTAINERyes
actions[]the array of actions inside the containeryes

Using the ActionBuilder

WebApp has the properties $actions and $repromptActions, which are instances of ActionBuilder. The ActionBuilder is the recommended way of filling the output for the Web Platform.

Example Usage:

// @language=javascript

this.$webApp.$actions.addSpeech({
  plain: 'text',
  ssml: '<s>text</s>',
});

// @language=typescript

this.$webApp?.$actions.addSpeech({
  plain: 'text',
  ssml: '<s>text</s>',
});

The ActionBuilder has the following helper functions:

NameDescriptionReturn Type
addSpeech(data: SpeechAction \| string)adds a SpeechAction to the actions array. If data is only a string, it will be added as the plain property to a new SpeechActionActionBuilder
addAudio(data: AudioAction)adds an AudioAction to the actions arrayActionBuilder
addProcessingInformation(data: ProcessingAction)adds a ProcessingAction to the actions arrayActionBuilder
addQuickReplies(data: Array<QuickReply \| string>)adds a QuickReplyAction to the actions array. The data parameter can either be an array of QuickReplies (same interface as the replies array in the QuickReplyAction) or an array of stringsActionBuilder
addContainer(actions: Action[], type: 'SEQ_CONTAINER' \| PAR_CONTAINER')adds a ContainerAction of the parsed type including the parsed actions to the actions arrayActionBuilder
3.6.2

2 years ago

3.6.1

2 years ago

3.6.0

2 years ago

3.5.3

3 years ago

3.5.2

3 years ago

3.5.1

3 years ago

3.5.0

3 years ago

3.4.1

3 years ago

3.4.0

3 years ago

3.3.1

3 years ago

3.3.0

3 years ago

3.2.6

3 years ago

3.2.5

3 years ago

3.2.4

3 years ago

3.2.3

3 years ago

3.2.2

4 years ago

3.2.1

4 years ago

3.2.0

4 years ago

3.1.5

4 years ago

3.1.4

4 years ago

3.1.3

4 years ago

3.1.2

4 years ago

3.1.0

4 years ago