I am fairly new to Rasa and Rasa X, and am really impressed by the conversation driven developement potential of Rasa X.
However, I am facing many difficulties in getting Rasa X to work.
Currently, I am running Rasa X 1.1.0 in a Kubernetes cluster, and have successfully connected it to my remote Git repository, with the Project folders set up correctly.
However, Rasa X can only show my domain.yml file, and is unable to display the intents (nlu,.yml) or stories (stories.yml) - it’s as if it doesn’t even see the data folder!
hi @Uma ,
this is a very common problem with Rasa X 1.1.0. For me it helped to downgrade the version tags in the different files from 3.1 to 3.0. Does this also work for you?
Yes, I tried initially with this - it wasn’t working earlier because of the 3.1 version.
Currently, my setup includes external Rasa OSS, like below:
version: "3.1.0"
versions:
# Disable the rasa-production deployment in order to use external Rasa OSS deployment
rasaProduction:
enabled: false
# Define if external Rasa OSS should be used.
external:
# enable external Rasa OSS
enabled: true
# url of external Rasa OSS deployment
url: "http://20.205.221.71:5005"
# Disable the rasa-worker deployment in order to use external Rasa OSS deployment
rasaWorker:
enabled: false
# Define if external Rasa OSS should be used.
external:
# enable external Rasa OSS
enabled: true
# url of external Rasa OSS deployment
url: "http://20.197.78.40:5005"
Does the version in the above also need to be changed to 3.0.x? If so, which x do you recommend?