[Tutorial] Implementing Google Assistant Suggestion Chips with Jovo


#1

Suggestion Chips for Google Assistant are a great way to offer guidance and direct the conversation for users that are interacting with your Google Action on their mobile phones. In this blogpost you're going to learn how to implement Suggestion Chips with the Jovo Framework.


This is a companion discussion topic for the original entry at https://www.jovo.tech/tutorials/google-assistant-suggestion-chips

#2

Hello Jovo Team,

I am trying to invoke intent by using elicitSlot method. which is working fine for alexa. Google Action throws TypeError: Cannot read property 'elicitSlot' of undefined.

Below is the code i have used,

    if (jovo.isAlexaSkill()) {
            jovo.$alexaSkill.$dialog.elicitSlot('item', 'You have more than one itemon your profile, ' + vehicles.join() + '. can you tell me which item?');
        } else {
            jovo.$googleAction.$dialog.elicitSlot('item', 'You have more than one itemon your profile, ' + vehicles.join() + '. can you tell me which item?');
        }

Please let me know how to request user to fill a slot or parameter from Google Assistance using Jovo.