All - Activity - pankaj676 - Rasa Community Forum
Voice Bot using Rasa and Botium Speech Processing tool
Hello @JiteshGaikwad i am using gspeech-api Google Speech API which directly uses client library to make calls to rasa server. You are directly making HTTP calls in script.js of your voice UI GitHub - JiteshGaikwad/Voice-UI: Voice User Interface for integratin Botium Speech Processing tool & RASA.…
Multi Lingual Chat Bot using Rasa
Thank You @JiteshGaikwad
Bot seems to utter a template automatically at the beginning of a conversation
Hey @shena which GUI you are using for your bot. It is caused due to the default calling of function whenever bot starts.
Getting Error in connecting with mysql
Hello @bparikh99, I was also getting similar error with rasa’s latest version. It’s not stable for windows yet. You can install rasa 1.9.4 it should work fine with that. https://rasa.com/docs/rasa/1.9.4/user-guide/installation/
Multi Lingual Chat Bot using Rasa
I have hard coded first message as told by you but now after user selects the language how could one proceed because now only one server should remain active. and send function calls the server.
Multi Lingual Chat Bot using Rasa
@JiteshGaikwad I am using rasa custom UI Rasa Custom UI. And Language button suggestion is coming from the rasa server and handled by addsuggestions function. function addSuggestion(textToAdd) { setTimeout(function () { var suggestions = textToAdd; var suggLength = textToAdd.length; $(' <d…
Multi Lingual Chat Bot using Rasa
@JiteshGaikwad please help
Multi Lingual Chat Bot using Rasa
Hello Everyone, I have created two bots in English and Hindi language respectively. I want user to select the language he wishes to choose from the front end and then call the respective bot server. Please help.
Error when running rasa x command on Windows 10 - help plz
@juste Please reply I am also facing this issue.
Answers from database
Hello Salma First you need to download mysql connector if you are using mysql db from following link https://dev.mysql.com/doc/connector-python/en/ then use it in your action.py file in your project directory like this MySQL query using slots
ChatBot for providing information about various articles from Website
@Juste I want users to search for information by asking questions as well as to improve simple word matching search. Would love to know how would assistant know the context of question instead of full text search using slots and without using slots. Is it possible to search using assistant without …
ChatBot for providing information about various articles from Website
@Juste thank you for reply. Basically what i want is to improve search in our website. Like if we searching for educate then it should show the results for education as well and also for misspelled words like eduacate. Do you think chat-bot can help in this.
Natural language that can query to database
Hello @siddharthchauhan I am also working on similar kind of project. You can use slots for collecting input once all slots are full the you can fire query to database.
How to extract the name of detected entity value through Actions?
Hello @akelad tracker.get_latest_entities_values require parameter of entity type in new rasa version. But still its not able to access entity values. I my code it is showing error.
MySQL query using slots
Hello @shena for mysql query you have to use my sql connector in your action.py file.
import mysql.connector as mysql
class ActionAPI(Action):
def name(self) -> Text:
return "action_api"
def run(self, dispatcher: CollectingDispatcher,
tracker: Tracker,
doma…
ChatBot for providing information about various articles from Website
Hello Everyone I am building chat-bot for information based portal which provides articles on six domains mainly Education, Health, E-Governance, Energy, Social-Welfare, and Agriculture. I want bot to reply to user query based on intent and entity recognized by chat-bot. There can be multiple entiti…