Questions tagged [rasa-x]

Use this tag for questions concerning Rasa X, the tool for improving assistants and chatbots from real conversation data.

Rasa X is a tool designed to make it easier to deploy and improve Rasa-powered assistants and chatbots by learning from real conversations.

117 questions
0
votes
2 answers

Why is my Fallback Intent and FallbackClassifier not working in Rasa?

I have mentioned it in my pipeline in the config.yml file, that I will be using the FallbackClassifier. So my code looks like: language: en pipeline: - name: FallbackClassifier threshold: 0.7 ambiguity_threshold: 0.1 However, I receive…
Brookie_C
  • 427
  • 2
  • 10
0
votes
1 answer

When creating a slot in Rasa, is it also important to declare the slot as an entity?

Lets say I create a slot in Rasa called "yearlybill". I will have to write: slots: yearlybill: type: float min_value: 0 So my question is, when I want to use these slot in my intents, will I have to explicitly mention it as an entity as…
Brookie_C
  • 427
  • 2
  • 10
0
votes
1 answer

RASA X running issue: Make sure to start Rasa X with valid data and valid domain and config files

enter image description here I am trying to installing Rasa. I run this command rasa init. It's working fine. But when I am trying to run this command rasa x it throws an error as shown in the above image(link). One solution I have found is to…
0
votes
1 answer

ModuleNotFoundError: No module named 'rasax'

The installation of rasa x is successful but yet it says that rasax module could not be found. Python version : 3.6.5 pip version: 21.1.2 rasa version: 1.9.5 amit.pathak@AmitPathak-L MINGW64 /d/ (master) $ "C:\Python365\python.exe" -m pip install…
Amit Pathak
  • 1,145
  • 11
  • 26
0
votes
1 answer

Rasa x fails to bind to PORT on heroku app

I have dockerized my rasa x chatbot and deployed it in heroku, but the application keeps on crashing. Error R10 (Boot timeout) -> Web process failed to bind to $PORT within 60 seconds of launch My docker files looks like : FROM…
0
votes
1 answer

How to host Rasa core bot on IIS?

I have developed a Rasa bot by using core rasa framework. Rasa server only runs on HTTP protocol. I have only choice of using IIS as a webserver to make this application secured. Can anybody give a step by step process for Rasa bot to be configured…
smith99
  • 17
  • 4
0
votes
0 answers

How do I add a new line before appending(+=) my variable with another variable in python?

I am using Rasa X as my front end. I can't see how that would have anything to do with it, but I figured I will mention it just in case. Anyway, I have a variable that is collecting cell values from my excel sheet. I am using a loop statement add…
John89
  • 45
  • 1
  • 7
0
votes
1 answer

Rasa http api for add multiple sentence for one intent

i need to add more than 10000 sentance through api rasa-x provide an api for add new traning data https://rasa.com/docs/rasa-x/pages/http-api#operation/addData problem is i can push data one by one. another option is Replace training data in bulk…
Akash Shah
  • 596
  • 4
  • 17
0
votes
1 answer

Is it possible to call rasa default events like rasa.core.events.AllSlotsReset from external API?

I need to perform custom action from my server when all slots are filled for a specific intent. and once the action is performed I want to reset the rasa state. is there a way to do it from endpoint, which can be called from my server after…
0
votes
1 answer

How do I utter dynamic message with hyperlink attached in Rasa X?

How do I utter a message, displaying results based on a datasheet, and attach a hyperlink within the text? Example of what I am trying to achieve: num = phone_format(str(sheet["" + chr(ord(requested_info_column)+1) + "{}".format(row)].value)) …
John89
  • 45
  • 1
  • 7
0
votes
1 answer

RASA X: UnicodeEncodeError: 'charmap' codec can't encode character when run Rasa X

I am using Rasa Open Source to build a chatbot application and it works pretty well. I want to use Rasa X to make more use of its features. But I get this problem every time I run the command rasa x: Traceback (most recent call last): File…
0
votes
1 answer

Fall back policy is not working with RASA framework

I want to implement two stage fallback policy, and i followed this article here is config.yml language: en pipeline: # other policies - name: DIETClassifier epochs: 100 entity_recognition: False - name: ResponseSelector epochs:…
Sunil Garg
  • 14,608
  • 25
  • 132
  • 189
0
votes
1 answer

Extract data from csv in RASA

I am making a chatbot in RASA which helps High school graduates find university according to their desired location. I have all my data stored in a CSV file. So is there any way we can extract some specific data from that CSV. Example: If a user…
0
votes
1 answer

PIP install rasa-x is not working and pip downgrade too

I have exactly the same problem as mentioned in PIP install rasa-x takes forever. In the Rasa installation guide they say, you have to create an environment first. Everytime I do: conda create --name rasa python==3.7.6 it automatically downloads…
Paul G.
  • 3
  • 1
  • 3
0
votes
1 answer

After starting Rasa X in local. I get an error in Rasa browser "Request failed with status code 500"

logs_screen_1 browser screenshot logs_screen_2 logs_screen_3 console log: [2021-01-15 07:30:20 +0530] [11592] [ERROR] Exception occurred while handling uri: 'http://localhost:5002/api/auth' Traceback (most recent call last): File…