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
1 answer

URL generated on running one line deploy script on EC2 Ubuntu VM is not working

I ran one line deploy script on an AWS EC2 instance which in turn spins up a k3s (lightweight kubernetes) cluster and returns a URL to access my Rasa bot (open source chatbot development platform). When I tried running the URL in the browser, it…
0
votes
1 answer

Regex code for email address, and how to link it with my feedback form

I want to link my feedback form's email address and Regex to validate the email address entered by an customer
Yashraj Jain
  • 88
  • 2
  • 8
0
votes
1 answer

Setting the action on rasa restart

Hi I'm trying to set some message to be uttered when the user restart the conversation. I have asked in Rasa Forum and tried to change the code. But it returned this error AttributeError: ‘Tracker’ object has no attribute ‘utter_message’ This is…
0
votes
1 answer

Reload model according to the chosen language in rasa chatbot

I made a chatbot. When starting the conversation, the bot shows the message “Choose a language” and it gives the option to choose a language using two buttons which displays “English” and “French” respectively (I have 2 models: English and…
0
votes
4 answers

how to handle spelling mistake(typos) in entity extraction in Rasa NLU?

I have few intents in my training set(nlu_data.md file) with sufficient amount of training examples under each intent. Following is an example, ##intent: SEARCH_HOTEL - find good [hotel](place) for me in Mumbai I have added multiple sentences like…
0
votes
2 answers

How can i use action_listen inside a custom action in Rasa

I want to listen to user inside custom action and then continue that custom action. Basically what i am looking for is. I have a loop in custom action from 0 to 5. for each value i want to take some input from user and continue that loop. def…
Yash Nandwal
  • 13
  • 1
  • 3
0
votes
1 answer

Invalid story format failed to parse story while posting Rasa X Http API

I am trying to create a story using POST in Postman tool and below is my story format . I am using below format because in GET request I got the story in the same format. { "id": 65, "name": "interactive_story_65", "story":…
Witty Apps
  • 59
  • 1
  • 1
  • 4
0
votes
1 answer

RASA - API calling in local mode and server

I am creating a chat bot using RASA X i installed Rasa in my local system and a server system Local mode : In local mode i used http://localhost:5005/webhooks/rest/webhook and data as { "sender": "Rasa", "message": "hi" } and got the corresponign…
Eleena
  • 89
  • 1
  • 9
0
votes
1 answer

Issues in installation of rasa-x to office laptop

I tried below command to install rasa-x on my office laptop: python -m pip install rasa-x --extra-index-url https://pypi.rasa.com/simple but it gave me below error: Looking in indexes: https://pypi.org/simple,…
0
votes
1 answer

How do I edit a URL's location and use it for my code

I am trying to create a simple bot using rasa which runs on Python to extract data from an api. To make explanations easier let us assume it is a corona tracker bot. So the api URL for the corona data is made so that the final section of it filters…
0
votes
1 answer

Face many issues to rasa initialization rasa init --no-prompt

I knew, its duplicate question, but I can't find the way to solve my issue. I tried, tensorflow all versions. Python 3.6.8 tensorflow = 1.15.0 Windows 10 Faced VC++ error, I installed VC++ 14 I tried via using condo, still facing the tensorflow…
Mukhila Asokan
  • 641
  • 3
  • 11
  • 29
0
votes
1 answer

Rasa-x conversation do not have response

I have deployed rasa-x on kubernetes, all service seems work fine. Then I have uploaded my model. The model I have tested locally with rasa shell and work fine. After I activate the model and do the conversation, the intent displays right but there…
Man Shen
  • 401
  • 2
  • 16
0
votes
1 answer

How can I do load balancing in my Rasa chatbot?

Can somebody suggest to me how can I do load balancing in a Rasa Chatbot? There is not much documentation or tutorials available.
0
votes
1 answer

CONDA: [Errno 48] Address already in use

I'm trying to use Rasa in a miniconda3 environment to create a chatbot. My venv is called rasa_chat. After calling rasa init I was successfully able to create and train a chatbot model. But when I try to talk to the trained assistant through…
baldwin
  • 45
  • 6
0
votes
2 answers

How to make my RASA assistant available on my own website?

I want to deploy my rasa chatbot into my own live website. Rasa worked in my localhost server but, as a beginner into a web development, I didn't understand the RASA's official guide in the link bellow:…
yassine
  • 31
  • 3