Questions tagged [jovo-framework]

Jovo is the first open source framework that lets you build voice apps for both Amazon Alexa and Google Assistant with only one code base

Resources:

  1. github
  2. project site
48 questions
4
votes
1 answer

Use multiple voices in a single Alexa skill?

I would like to use multiple Alexa voices in a single skill. Is this possible? I know there is Amazon Polly, but what SSML do you use to use the different characters. I've tried looking online and I've come up with nothing. let speech = 'Your…
Ben J
  • 43
  • 3
3
votes
1 answer

Google Actions Builder stops execution when selecting a visual item from a List

I'm pulling my hairs here. I have a Google Assistant application that I build with Jovo 4 and Google Actions Builder. The goal is to create a HelpScene, which shows some options that explain the possibilities/features of the app on selection. This…
3
votes
0 answers

"The agent returned an empty TTS" when action is not opened separately to asking an intent

When I invoke the skill with 'okay Google, ask {skillname} to {utterance}' I get the response 'The agent returned an empty tts" and the conversation closes. It doesn't even seem to hit my backend - I've tried hosting the backend code on both a local…
kmw
  • 31
  • 2
2
votes
2 answers

Alexa skill not asking for permission (notification) when enabling the skill via voice

The skill in question asks for one permission when enabling in Web or app (Outbound Notification). But, when implemented Skill Enabled Event it's not asking user to give notification permission or not. Skill enablement works itself but permission is…
2
votes
1 answer

My 'app name' not accepted in Actions on Google simulator, only "test app"

I'm setting up about my 10th (test/demo) Action on Google, and the simulator ONLY supports me starting my brand new app via "Talk to my test app". How do I get to the point I can say "Talk to {my app name here}"? IN THE PAST, after setting up all…
spechter
  • 2,058
  • 1
  • 17
  • 23
2
votes
2 answers

Error: Resource name 'foo' does not match 'projects/*/agent'

I'm trying to create a new Entity on DialogFlow: const dialogflow = require('dialogflow'); /** * trains the NLP to recognize language constructs */ export function intTraining() { const ENTITY_DEFINITION_BOOLEAN = { parent: 'foo', …
Mapsy
  • 4,192
  • 1
  • 37
  • 43
2
votes
3 answers

handling PromiseRejection in node.js

I've just started working with javascript for the first time. From googling I have only been able to find examples of handling promise rejection through functions that have been written by you. My problem is that app.getInput("key"); is not…
1
vote
0 answers

How do we get the Alexa Account Linking Card to display (working with Jovo)

if (!this.$request.getAccessToken()) { return this.alexaSkill() .showAccountLinkingCard() .tell('Go the Alexa app and set account linking'); } We're trying to authenticate users in an Alexa app through Auth0. We're developing…
1
vote
0 answers

TypeError compiling Vue web component

I'm running a TypeScript based Vue project and am trying to build it as a web component using @vue/web-component-wrapper. Related code: // main.ts import JovoWebClientVue, { JovoWebClientVueConfig } from 'jovo-client-web-vue'; import Vue from…
GB5991
  • 11
  • 3
1
vote
0 answers

Open my app(Deep-link) from custom intent in JOVO

I am using Jovo framework to develop Google-assistant actions Here is the scenario I need, Talk to My Notes. Add "Hello world" Using Jovo framework and dialogFlow fullfillment, I captured ADD intent app.setHandler({ ADD() { if…
Ananth
  • 115
  • 3
  • 18
1
vote
1 answer

AccessDeniedException: User: arn:aws:iam::xxxxxxx:root is not authorized to perform: lambda:UpdateFunctionCode

Sorry for this lengthy post! I have tried my best to keep it as short as possible but wanted to put all information I have to explain the situation clearly. My issue is related to AWS Lambda function deployment using JOVO CLI. Every time I am trying…
1
vote
1 answer

How to test NEW_USER handler in JOVO , with google home

I am developing a new google home app. The google action is written in Dialogflow. The web hook is written in node js using JOVO framework. The action requires account linking with OAUTH. I am trying to simulate and test "first time user" or "new…
1
vote
0 answers

Is there a UI for creating the Jovo Language Model Json?

I was wondering if Jovo has a UI for editing the Jovo Language Model in a similar fashion as Alexa Skill and DialogFlow.
Ari
  • 3,086
  • 1
  • 19
  • 27
1
vote
1 answer

Alexa activates intent even though the slot.value does not exist in the JSON file

So I have this intent: 'PlayRadioIntent': function(channel) { this.setSessionAttribute('RadioName', channel); this.followUpState('PlayConfirmationState') …
AG_HIHI
  • 1,705
  • 5
  • 27
  • 69
1
vote
1 answer

Alexa how to implement intent confirmation?

I am having trouble with implementing a confirmation for an intent. The documentation is really vague. I am currently using jovo framework in writing my code with nodeJs which saved me a ton of time. This is an example of how I want to confirm the…
AG_HIHI
  • 1,705
  • 5
  • 27
  • 69
1
2 3 4