-
Notifications
You must be signed in to change notification settings - Fork 52
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dialogflow Integration #91
Comments
The docs explain the main steps, but it is true that there could be more details. We appreciate every help (PR) to improve the BotMan, all its drivers and the docs ;-) My first (and crappy) live stream was about that topic, so maybe that helps. Additionally, there is a paid video course by Marcel and one by myself where DialogFlow is explained with BotMan. |
Ok, I will take a look but more official documentations will be appreciated. |
In Dialogflow you can add an action name to an intent. This action name is what you can listen for in BotMan. It works like this when Dialogflow is connected:
|
Ok, so if I configure an intent in dialogflow that is something like 'hello botman', I need to pass this to the hears method and then on user input, I need to reply using the botman reply method by passing a reply from dialogflow or a custom one right? |
an intent is like an overall topic like The reply handling is then just inside BotMan. It would be possible from Dialogflow as well but recommended is using normal reply options from botman. |
Is it some example like this you are looking for? Here input.welcome is the action name I filled in on the Actions and parameters bit of a Dialogflow intent |
Hi, I still having questions about this; I don't know If I should use my client or developer api token, and is my intent's name is |
Hey, both are working but I would use the Also, you have to listen to the I hope this helps. Also, I will close this issue here. Please use the BotMan Slack channel if you need help. |
Hi! botman.php code:
laravel.log
thank you in advance Christoph, you're awesome !!! |
Hello all. After doing some debugging I got assisted by Liam in the Slack portal. Just in case you run into the same issue, the example from Kint above should work just fine. There is just a misspell. Change $extras['apireply']; for $extras['apiReply']; with capital R. |
How can I use Dialogflow in Botman's conversation? I have been trying this all day. Thanks |
Can anyone provide a detailed example of the Dialogflow implementation?I have created a bot, using the facebook driver and I want to implement Dialogflow to make the interaction more human. The official BotMan documentations are lack about information on the integration of NLP platforms, the example doesn't help much.
Thank you
The text was updated successfully, but these errors were encountered: