Agent: I have made a note, Now can you please indicate which all parts of the vehicle were damaged in the accident?
User: Windshield/Bumper/Front Side/Rear/Hood(Card response)
In the above chat script, I am presenting the user with card response to select parts of a vehicle. A user can select any number of parts. I want to implement it with Dialogflow card responses. How to implement this? Help will be appreciated. Thanks
You should consult the Rich Messages page of the documentation and look for docs on the specific integration that you want to do in order to find the correct way to add suggestion chips or some type of response.
Related
we're facing a problem right now: We're using the SMS gateway feature from branch.io which simply does not work properly worldwide (e.g. Lituanian cell phones won't receive any messages at all).
Therefore i need a fallback method for people that cannot receive an SMS to their phone with the downloadlink in the Appstore. (The branch.io Links have an effect on the branding of our app)
The fallback is to let them use a voucher code which COULD be generated from a custom value that we store for each Link
This is an ordinary Link with its 2 custom values
The landing page http://learnmat.ch/spark7 opens in the browser and i'd like to be able to identify the SponsorID on the website so that i can return a voucher code that is suitable for the specific SponsorID of the Link.
Right now i've already integrated the Web SDK into the website.
Is that "reverse engineering of the SponsorID" possible based on the Link and the WebSDK integration?
I'd really appreciate your help!
Thank you,
Sven
Jackie from Branch here.
Our SMS page service supports international numbers but only if the number the SMS has to be delivered is in the same country the SMS is being sent from. Could you please make sure the sender is physically located in Lithuania? I'd also suggest creating your own Twilio integration if you want to bypass these restrictions we have on our system https://docs.branch.io/pages/web/text-me-the-app/#use-your-own-sms-service
Regarding your fallback method: you want to have users click on a Branch link that will open your website and based on the link data (sponsor ID), you want to provide them with unique voucher codes? If my assumption is correct, you can achieve this by custom event tracking and user identity tracking. (relevant docs: https://docs.branch.io/pages/dashboard/analytics/#user-value-attribution)
Hopefully, this helps. Let us know if you have additional questions about the info above, or about anything else related to integrating Branch.
Best,
Jackie Choi
I’m coding a bot using PHP-BotMan for complexity reasons and using Dialogflow query api to extract and manipulate the informations from the response. I saw examples and hints from people here and on dialogflow forum suggesting using context or events, some of them mixing both. What is the better way to handle this?
The flow of the application is:
user messages bot
bot queries (text or/and #event?) dialogflow
internally process a reply or return dialogflow slotfilling* request
text response bot reply user with last reply or asking to fill slot
Also, how can I be sure that a slotfilling process is finished with “actionIncomplete” only having two values, NULL or TRUE? The dialogflow query response doesn’t show wich slotfilling parameters are required or not…
Thanks for the help!!
slotfilling is when dialogflow sends a text response requesting required parameters to finish an intent, adding those replied values to the context
I was trying something similar to your scenario, here are few points i found helpful:
When Slotfitting with webhook, i can't use the "Required" params field since i have to control the input parameters via webhook (query database to provide options). Which means actionIncomplete field is not useful anymore.
I personally prefer to use context as it can add/remove params which gives you more control.
Hence the dialog was designed to use webhook to check all required params before move on to next conversation flow. and pop quick replies menu to ease and restrict possible input from users.
HTH.
I am trying to improve the user experience of my application. One UX improvement would be to reply to the user after they initialize the intent. What i would like to do is simulate the "Typing" reply, so the experience would be for a voice enabled device
User: Who's the league leader in wins?
Assistant: Give me a second to do some investigation
Assistant: Ok, John Doe is currently leading with 10 wins.
Is there a way to send multiple responses for one request.
I am using API.AI and a webhook for fulfillment. I know that i can send multiple items in one response, but i would need to send multiple responses.
At this point, no this isn't possible.
However, at Google I/O they've indicated that they understand this is something people are looking for. There are already some solutions that have been announced that are coming (such as notifications), and there may be others coming as well.
I'm searching solution form last week but no luck.
Can user select the multiple options in skype Nodejs SDK.
I'm looking for the solution where user can be able to select the more than one option from the choice list.
Let's say I wanted to implement the subscription functionality so the bot
will pass the list of items to Skype client to view user.
Choice List
From above Now I want to subscribe the more that one item form list Ex. (Computer, Tech, Gadgets)
Can anyone Please help me to achieve by aim. If not possible can you please give me the actual reason.
Thanks :)
The ability to select multiple items in a choice prompt is not currently an available feature of the BotBuilder SDK.
An alternate way to handle this scenario would be to guide the user through a series of choice prompts where they could add a new item to an internal data object, or alternately store it in the session.userData or session.conversationData object.
If you'd like to make a feature request you can email: feedback#botframework.com
When you open the Instagram APP you can look at your news feed where you can see that someone is now following you, likes or has commented on a certain photo.
When I look at the Instagram API (http://instagram.com/developer/) I can retrieve likes and comments when I request a certain media ID. However in order to know if someone has commented on a photo of mine I would need to scan all the photo's and request it's comments to check if any new comments have been made.
Does anyone know of a better way? Help is appreciated.
If it helps, content for "Following" tab is available at http://instagram.com/api/v1/news/, and "News" tab at http://instagram.com/api/v1/news/inbox/ (you need to be logged in to your account).
All URLs point to internal instagram:// protocol so you would need to replace them when parsing and there seem to be no pagination options.