## Voice Bot using Rasa and Botium Speech Processing tool

Hello [@JiteshGaikwad](https://forum.rasa.com/u/jiteshgaikwad) i am using gspeech-api [Google Speech API](https://github.com/juesato/gspeech-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](https://github.com/JiteshGaikwad/Voice-UI).…

## Multi Lingual Chat Bot using Rasa

Thank You [@JiteshGaikwad](https://forum.rasa.com/u/jiteshgaikwad)

## Bot seems to utter a template automatically at the beginning of a conversation

Hey [@shena](https://forum.rasa.com/u/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](https://forum.rasa.com/u/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/](/content/docs/rasa/1.9.4/user-guide/installation/index.html)

## 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](https://forum.rasa.com/u/jiteshgaikwad) I am using rasa custom UI [Rasa Custom UI](https://github.com/JiteshGaikwad/Rasa_CustomUI-v_2.0). 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](https://forum.rasa.com/u/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](https://forum.rasa.com/u/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/](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](http://forum.rasa.com/t/mysql-query-using-slots/25124/2)

## ChatBot for providing information about various articles from Website

[@Juste](https://forum.rasa.com/u/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](https://forum.rasa.com/u/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](https://forum.rasa.com/u/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](https://forum.rasa.com/u/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](https://forum.rasa.com/u/shena) for mysql query you have to use my sql connector in your action.py file.

```python
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…
