I am using Ubuntu 20 and following the most recent install guidelines for v1.0.0 and the Ephermeral InstallerIntroduction .
╰─❯ cat values.yml ─╯
rasax:
tag: "1.0.1"
eventService:
tag: "1.0.1"
dbMigrationService:
tag: "1.0.1"
╰─❯ rasactl status ─╯
Name: rasa-x-ben
Status: Running
URL: http://rasa-x-ben.rasactl.localhost
Version: 1.0.1
Enterprise: inactive
Rasa production version: 0.0.0
Rasa worker version: 0.0.0
Project path: /data/Software/rasa-x-1.0.0
rasactl start --values-file values.yml --kubeconfig /home/ben/.kube/config --project rasa-x-ben --verbose
I have created a Rasa Open Source model using
╰─❯ pip freeze | grep rasa ─╯
rasa==2.8.2
rasa-sdk==2.8.3
and rasa init
I can log into the GUI but when I upload the model from file it says " Upload failed
Something went wrong. Please try again." and the logs for the Rasa X server shows:
[2021-12-22 09:56:21 +0000] [27] [ERROR] Exception occurred while handling uri: 'http://rasa-x-ben.rasactl.localhost/api/projects/default/models'
Traceback (most recent call last):
File "/usr/local/lib/python3.8/dist-packages/sanic/app.py", line 973, in handle_request
response = await response
File "/usr/local/lib/python3.8/dist-packages/rasax/community/api/decorators.py", line 247, in decorated_function
return await await_and_return_response(args, kwargs, request)
File "/usr/local/lib/python3.8/dist-packages/rasax/community/api/decorators.py", line 177, in await_and_return_response
response = await response
File "/usr/local/lib/python3.8/dist-packages/rasax/community/api/decorators.py", line 84, in decorated_function
return await f(request, user=user, *args, **kwargs)
File "/usr/local/lib/python3.8/dist-packages/rasax/community/api/blueprints/models.py", line 69, in upload_model
minimum_version = await model_service.minimum_compatible_version()
File "/usr/local/lib/python3.8/dist-packages/rasax/community/services/model_service.py", line 182, in minimum_compatible_version
info = await stack_service.version()
AttributeError: 'NoneType' object has no attribute 'version'
[2021-12-22 09:56:21 +0000] - (sanic.access)[INFO][10.244.0.7:56126]: POST http://rasa-x-ben.rasactl.localhost/api/projects/default/models 500 213
It sounds like a compatibility error, but as far as I can see these versions of Rasa Open Source and Rasa-X should be compatible? Compatibility Matrix
Many thanks for any help on this