Questions tagged [rasa]

Use this tag for general questions concerning Rasa, the open source machine learning framework. For questions concerning Rasa NLU, the module for understanding user messages, use [rasa-nlu]. For questions concerning Rasa Core, the module for holding conversations and deciding what to do next, use [rasa-core]. For questions concerning Rasa X, the tool for improving assistants from real conversation data, use [rasa-x].

Rasa is an open source machine learning framework for building contextual AI assistants and chatbots. The web site is https://rasa.com/

The framework is composed of two main modules, NLU and Core, along with the Rasa X tool which provides assistance in building AI assistants with Rasa.

751 questions
16
votes
5 answers

The virtual environment found seems to be broken | python poetry

I am following the following link to install RASA on my system: https://github.com/RasaHQ/rasa But unfortunately while trying to install the dependencies or any of the following poetry commands which are written in Makefile, $poetry run $poetry…
Kamaldeep Singh
  • 765
  • 2
  • 8
  • 28
7
votes
0 answers

rasa.core.agent - Could not load model due to Failed to find module 'rasa.nlu.classifiers.fallback_classifier

I'm dockerizing rasa application and the Dockerfile is FROM python:3.7.6 RUN apt-get update && apt-get install -y --no-install-recommends build-essential curl WORKDIR /app COPY requirements.txt . RUN pip install -r requirements.txt COPY…
akriti
  • 321
  • 1
  • 3
  • 13
7
votes
1 answer

How can i make multi language rasa chatbot having at least two languages?

i want to make a rasa based chatbot with at least two languages or multi lingual chatbot. Can anybody tell me possible way of making it.
7
votes
2 answers

What is the algorithm behind Rasa NLU?

I see the Rasa NLU use the MITIE and spaCy, but can anyone explain the how they use it and the algorithm behind?
Gary Ng
  • 413
  • 8
  • 16
6
votes
1 answer

Using Regex with Rasa

I'm trying to use Rasa to detect entities such as phone numbers or contract ID. It seems natural to use regular expressions to define precisely those entities, and Rasa does have something called "Regular Expression Features" which allows us to…
Daneel
  • 1,173
  • 4
  • 15
  • 36
5
votes
1 answer

ImportError: cannot import name 'CLOSED' from 'websockets.connection'

I installed rasa on a virtual environment on windows. But while I am trying to check either rasa is installed or not, it is showing an error that says- ImportError: cannot import name 'CLOSED' from 'websockets.connection' I have reinstalled rasa,…
Mehedi Hasan
  • 103
  • 2
  • 6
5
votes
5 answers

PIP install rasa-x takes forever

I am intalling Rasa X in a Python 3.7 conda environment on Windows 10. pip version is 20.3.3. pip3 install rasa-x --extra-index-url https://pypi.rasa.com/simple It have been going on for 5-6 hours and seems to be confused: Any idea what I can do to…
MartinHN
  • 19,542
  • 19
  • 89
  • 131
5
votes
2 answers

With mozilla/TTS are other pre-trained model voices available?

If you follow this article https://blog.rasa.com/how-to-build-a-voice-assistant-with-open-source-rasa-and-mozilla-tools/ it will have you download an 80MB file from: https://drive.google.com/drive/folders/1GU8WGix98WrR3ayjoiirmmbLUZzwg4n0 called…
Andrew Arrow
  • 4,248
  • 9
  • 53
  • 80
5
votes
1 answer

how to set a slot in a custom action in rasa

I'm new to rasa framework. I started developing a simple chatbot and i have created three slots for my chatbot. So my bot need to identify the current location and save it in the slots. My current location is taking from the conversation and i can…
cbing120
  • 53
  • 1
  • 1
  • 4
4
votes
1 answer

module 'tensorflow' has no attribute 'set_random_seed' for RASA NLU supervised embeddings pipeline trainer

So I’m trying to train my data using supervised embeddings pipeline. Rasa version: 1.10.12 Tensorflow version: 2.1.1 Rasa NLU: 0.15.1 config.yml contains this: language: “en” pipeline: “supervised_embeddings” I’m running this on a notebook,…
kogha
  • 61
  • 1
  • 5
4
votes
1 answer

Adding Speech to Text feature in RASA

I need to add Speech to text feature in RASA, where user can ask questionsusing his voice and bot will answer him by chat. Does anyone know how can I do it in RASA? As my front-end will be an Android Application. Kindly do tell me how to do…
Afaq Khan
  • 212
  • 2
  • 9
4
votes
11 answers

'rasa' is not recognized as an internal or external command, operable program or batch file

Unable to run the rasa init command and getting following error: 'rasa' is not recognized as an internal or external command, operable program or batch file. I have following version of RASA in my environment: rasa-core …
Avinash
  • 485
  • 1
  • 7
  • 15
4
votes
1 answer

Connecting Rasa chatbot to Webchat

I am trying to connect this webchat widget to rasa (https://github.com/mrbot-ai/rasa-webchat), but I am getting this error in my console, and also this error on the terminal where I am running my connector script. But two days ago I did not have…
4
votes
1 answer

What is the difference between rasa core and botkit framework in terms of flow of conversation?

I am learning bot development using rasa. I took simple banking system use-case in that. Below is short flow: I want to apply for loan Home loan Car Loan Personal Loan **User comes again after some days** Hey,…
Arti Berde
  • 1,182
  • 1
  • 11
  • 23
3
votes
0 answers

ModuleNotFoundError: No module named 'rasa.nlu.components'

I am using Python 3.8.13 on Ubuntu Operating System I am facing this error - ModuleNotFoundError: No module named 'rasa.nlu.components' >>>from rasa.nlu.components import Component Traceback (most recent call last): File "", line 1, in…
Aashish Chaubey
  • 589
  • 1
  • 8
  • 22
1
2 3
50 51