This repository has been archived by the owner on Jun 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 72
implement rasa middleware with botkit #29
Labels
Comments
Look at https://github.com/howdyai/botkit-rasa Remove all botkit studio stuff from bot.js Register middleware somewhere between var rasa = require('botkit-rasa')({rasa_uri: 'http://localhost:5000'});
controller.middleware.receive.use(rasa.receive); and use |
Ideally you should be able to integrate RASA AND use Studio, where rasa defined intents trigger Studio based scripts and threads. |
hi ,
Ryt now am doing the same way , jst taking the token from the botkit studio
and using nothing of it anywhere in my code . Just want to confirm after
getting classified (intents) how to response (i mean should i make a json
file from where i have to apply check as in for the specific intent bot
should reply this text.)
thank you in anticaipation.
…On 23 February 2018 at 14:15, Gintautas Miselis ***@***.***> wrote:
Look at https://github.com/howdyai/botkit-rasa
Remove all botkit studio stuff from bot.js
Register middleware somewhere between var controller =
Botkit.socketbot(bot_options);
and controller.openSocketServer(controller.httpserver);
by adding this code
var rasa = require('botkit-rasa')({rasa_uri: 'http://localhost:5000'});controller.middleware.receive.use(rasa.receive);
and use rasa.hears in your controller.hears calls as given in the example.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#29 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AV0crg3mAgtYZ0jCdQxYA3KnKLWEiDDuks5tXnqXgaJpZM4SQfvO>
.
|
You can refer the below repo for the sample integration. It works well. https://github.com/matteoredaelli/botkit-starter-web-rasa-nlu |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
i want to integrate rasa middleware in botkit-starter-web (the new functionality added) , i dont know how to do , plz help its urgent .
The text was updated successfully, but these errors were encountered: