Questions tagged [rasa-sdk]

46 questions
0
votes
0 answers

Getting illegal instruction : 4 while installing rasa on m1 pro monterey

Trying to install rasa in anaconda virtual environment. Rasa gets installed rasa init works while training rasa on the machine it is giving illegal instruction: 4 error.
0
votes
0 answers

Not able to connect to rasa custom action via slack bolt socket mode

Hi I am facing error when sending the message from slack to rasa via slack bolt. I am using socket mode so using the below code I can able to run the rasa server and when sending Hi Hello through slack then I am getting the correct response as It is…
0
votes
2 answers

Not able to use rasa x with current version of rasa

Rasa forum says that rasa x 1.1 supports rasa 3.x, but when i try running rasa x on a model trained with rasa 3.1 it gives me error. UserWarning: Your version of rasa '3.1.0' is currently not supported by Rasa X. Running `rasa x` CLI command with…
0
votes
1 answer

Rasa Chatbot - Issue in executing actions.py file with mysql database connectivity

Encountered an exception while running action 'action_email_data'.The bot will continue, but the actions events are lost. Please check the logs of your action server for more information. Traceback (most recent call last): File…
Mehul
  • 19
  • 4
0
votes
1 answer

UserWarning: constrain_similarities is set to `False`. It is recommended to set it to `True` when using cross-entropy loss NLU model loaded

actually I am learning how to build AI chatbot using RASA ,I am doing course from Udemy called : RASA for beginner it's a great course but due to version differences I am facing a problem when i (run rasa shell) as well as (rasa actions) so please…
0
votes
1 answer

Pipenv Install Rasa incorrect version

When installing rasa using pipenv with: pipenv install --pre rasa Everything is installed, with some erroneous dependencies being created, but fixed with pipenv lock --pre --clear However, when trying to use rasa command in the terminal…
Mig Bach
  • 57
  • 1
  • 7
0
votes
0 answers

How to use same intent several times

I want to have mood_great intent, several times in my conversations. For example at the beginning, when I ask the user how are they today, and later, when I ask them if they want to continue the conversation(no need to make another intent,…
Luka Savic
  • 101
  • 1
  • 11
0
votes
0 answers

What is the use of LoopAction which is use as object in FormAction class in rasa 3.x?

I have been figuring out the proper explanation of LoopAction object in Rasa 3.x. I have read the official document of rasa 3.x. But I am not getting satisfied information from it. Do anyone can help me with it? If anyone can provide proper…
0
votes
1 answer

Cannot execute any Rasa command after a fresh installation. IMPORT ERROR

I have tried to intall a Rasa on my computer but ended up with import error. I had older version of Rasa installed on my computer before. But now, when I tried to intall it again it didn´t let me to excute anything from Anaconda to Rasa. The…
Hadik
  • 11
  • 2
0
votes
1 answer

ImportError: cannot import name 'CompositionView' from 'sanic.views' when I tried to install Rasa3 in python version 3.8

I am facing below issue when I tried to install Rasa3 in python version 3.8 Traceback (most recent call last): File "/home/mayurpardeshi/test/bin/rasa", line 5, in from rasa.__main__ import main File…
0
votes
0 answers

How to use Rasa telegram custom buttons to ask location?

i am developping a bot and i want to link it with telegram. I want to use custom button in order to ask location , i saw in the documentation that its possible with the custom arguments but there is no more information about how to use it or…
0
votes
0 answers

How to use rasa CollectionDispather to send video as response?

I tried below code blocks to show videos : dispatcher.utter_message(attachment = "https://www.youtube.com/embed/-F6h43DRpcU") dispatcher.utter_message(video = "https://www.youtube.com/embed/-F6h43DRpcU") dispatcher.utter_attachment(attachment =…
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
2 answers

How to get the predicted intent with confidence using agent rasa sdk chatbot

I am loading the trained rasa models manually by using this agent = Agent.load( model, action_endpoint=EndpointConfig(ACTION_ENDPOINT) ) And i am predicting the result like this botResponse = await…
Sunil Garg
  • 14,608
  • 25
  • 132
  • 189