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

Rasa X deployment on shared server

I m trying to deploy rasa on my shared server. I have follow the Docker Compose Installation documentation to deploy rasa. And tried both with script and manual deployment. But it's not working. As it shared server my 80 and 443 ports are used,…
Rohit K
  • 11
  • 4
0
votes
1 answer

Unresolved refrence 'rasa_nlu' on PyCharm

I am working on rasa project on PyCharm IDE and Mac OSX, and I am trying to create custom component class which is: from rasa_nlu.components import Component from rasa.nlu import utils from rasa.nlu.model import Metadata import nltk import os from…
zmn
  • 141
  • 1
  • 1
  • 13
0
votes
1 answer

Rasa not installing on Digital Ocean

I am trying to install rasa 2.0.0 on digital ocean. I created a directory for the bot and created a virtual environment using ubantu 20.04 and python 3.8.5. After the virtualenv is activated i ran pip install rasa==2.0.0 as well as pip3 install…
0
votes
1 answer

Can Rasa-X be installed on Rasa 2.0?

I am trying to install rasa-x on my office desktop in which rasa2.0 is installed. But it is not able to install Rasa-x as some certification issue. I have tried all trusted host commands can u please anyone help me on this?
0
votes
1 answer

Error of rasa and rasa X intallation and running the local server

I have installed rasa on Max OSX and this output on the terminal: python3.8 -m pip install rasa Collecting rasa Using cached rasa-2.2.2-py3-none-any.whl (688 kB) Processing…
zmn
  • 141
  • 1
  • 1
  • 13
0
votes
0 answers

Why rasa init giving error:not recognised

(installingrasa) C:\Users\DEVENDER\Rasa_Chatbot\Rasa_project>rasa init 'rasa' is not recognized as an internal or external command, operable program or batch file.
0
votes
1 answer

Rasa VoiceBot with SpeechRecognition & gTTS python libraries

I was able to build a simple chatbot and I converted it to voice enabled voicebot with the help of this YouTube tutorial. So as the step 1) I convert voice input to text and step 2) convert bot message to audio clip and play it so the user can hear…
user2397555
  • 67
  • 1
  • 11
0
votes
0 answers

Rasa Custom Actions Not working - Google Colab

I am trying to implement RASA Chatbot on Colab and finding hard to customize Actions.. Rest all works fine, except the actions.. I feel that my chatbox is not entering my actions.. Can anyone please guide me.. nlu_md = """ ## intent:greet - Hello -…
0
votes
1 answer

Running into uvloop issues with Database queries from Rasa-X?

I'm trying to make a simple query to my amazon neptune database, from Rasa-x. Here is the code from my actions.py: class ActionQueryDietary(Action): def name(self) -> Text: return "action_query_dietary" def run(self, dispatcher:…
0
votes
1 answer

How to handle out of scope data in rasa?

Handling unexpected inputs from user for training rasa chatbot, FallbackPolicy can be used but donno how to do it. Rasa version is 1.10.11.
zandra
  • 1
0
votes
1 answer

How to do rasa nlu, stories data validation and updation effectively?

I am developing APIs/ Frontend to add new data, stories, responses, entities, add actions , train bot, deploy bot etc . I am updating backend nlu.md, stories.md, domain.yml etc and then execute rasa train, rasa shell etc in the backend. Is there any…
Witty Apps
  • 59
  • 1
  • 1
  • 4
0
votes
1 answer

/model/train http API giving 500 error when providing “nlu” data in json

I am trying to train model using httpapi and json data blow is the code. import requests import json data = { "config": "language: en\npipeline:\n- name: WhitespaceTokenizer\n- name: RegexFeaturizer\n- name: LexicalSyntacticFeaturizer\n- name:…
Ram
  • 147
  • 4
  • 16
0
votes
1 answer

How to get latest bot response in rasa Chatbot?

How to get latest bot response with Rasa Chatbot? For getting user input we use : tracker.latest_message['text'] So, what is syntax for getting latest bot response ? Thanks
0
votes
1 answer

Force user to enter affirm or deny text intent in Rasa Chatbot

I have a story and I want that the user enters affirm OR deny intent, and if not, for example, repeat the same previous bot-message and continue to the next step only when the user enters intent of type affirm or deny. How to do that without…
0
votes
1 answer

RASA FORMS - 'NoneType' object is not iterable

I am creating a bot to help the user search the file based on the name provided and I am using a slot to store the memory of the file name called "SEARCHCONTENT" and I am using the "SEARCH" entity to help the bot identify the different synonyms for…
Programming Rage
  • 403
  • 1
  • 4
  • 18