All - Activity - csmyth76 - Rasa Community Forum
Rasa X Quick Install: No resources found in rasa namespace
Uninstall and reinstalled many times… it wasn’t working in this case. I upgraded the AWS instance from t2.medium to t2.large seems to work for now.
IndexError: list index out of range on Rasa X Server
Sorry, I didn’t think this question was going to get a response so I uninstalled and reinstalled Rasa X. I also increased the AWS instance resources. Seems to work now.
Rasa X Quick Install: No resources found in rasa namespace
Trying to do quick install on EC2 instance… getting the following error: Deploying Rasa X ... /No resources found in rasa namespace.
IndexError: list index out of range on Rasa X Server
On Rasa x local my model works fine. When I run the same model on Rasa x server the “Talk to your bot” UI hangs with the flashing “…” and I get the following in the log rasa-production_1 | /opt/venv/lib/python3.8/site-packages/tzlocal/unix.py:158: UserWarning: Can not find any timezone configuration...
Story does not complete all of the steps the 2nd time through
What I see when I do rasa interactive is that it tries to run a fallback after the action: utter_looking_up. I’m using the following as a work around: do the story twice in the same story. I really hope I don’t have to keep doing this. So far I have to do it for two different stories.
- story: b...
Getting warning in rasa_core.processor
I was getting the warning for the “city” slot in the rule below. Here is how I set these to get rid of the warning. It doesn’t default to “San Antonio”. My understanding is that “San Antonio” is just an example of what it should be looking for.
- rule: Ask for the weather
steps:
- intent: we...
Unable to install Rasa X locally. Tried every solution provided
These compatibility issues with Rasa are a nightmare. I have been running Rasa X from docker in order to get around them. It doesn’t solve your install issue, but if you just want to run Rasa X, this should work.
docker-compose.yml
version: "3.4"
services:
rasa:
image: rasa/rasa-x:latest
TimeoutError after Form Gets Info From Action Server
This issue was that the API was returning the temperature as a float. This was giving Rasa problems. I cast the temp to a string before passing it to the dispatcher and it worked as expected.
Thanks for the links. This does not resolve my issue though. The difference is that I am using a form and that appears to be where the issue is. The links you provided show the steps on how to implement the weather API in the Action Server and call the action an intent. These are already working...
I created a form that collects the city name then runs a custom action to get the temp for that city.
The slot is populated with the city. The Custom Action runs. I see in the debug output that BotUttered was called with the temperature from the API. The problem is that it never actually responds ...
Existing sets of stories, rules, etc?
Where can I find existing sets of stories, rules, etc? Is there a library or database? I’m looking for something that can handle casual, chitchat-y conversation well.
Debugging Credential Issues Google Cloud Install
I went through the steps here: The admin password I set returns Wrong Credentials. cd /etc/rasa sudo python3 rasa_x_commands.py create --update admin me nottherealpw
I’ve rerun the command with different passwords but get the same result. Is there something in my installation that I can check ...
Rasa X Not Loading Model
The issue was the version of Rasa Open Source used to create the model. I untarred both models and looked at the fingerprint.json file for each. The version for the model that worked was “2.6.3”. The version for the one that did not work was “2.2.9”. After I updated my Rasa Open Source and retrained...
My understanding is you can load any model that works in Rasa Open Source into Rasa X. Is this correct? I have a model that works for Rasa Open Source, but when I try to upload it into Rasa X Local Mode it fails to load the model and gives a message: Upload failed Something went wrong. Please try ...