Issue Proxying Rasa Parse
See original GitHub issueSo I setup the docker instance and modified the rasanluendpoint to include my address where my Rasa instance is.
So then I sent the following command to the Rasa UI to parse hoping it would go to that system but I’m getting a auth error and not sure what the payload expects:
http://192.168.99.100:5001/api/v2/rasa/parse - the URL I used params = {“q”: question, “project”: “chatbot”} - the payload and question is just a simple hello.
The error I get is:
{'message': 'No Authorization header.', 'success': False}
So what is the right format for this call?
Thanks
Issue Analytics
- State:
- Created 5 years ago
- Comments:16 (14 by maintainers)
Top Results From Across the Web
Rasa nlu server problem with the error 500 and parsing
I started the nlu server by typing this command in cmd: rasa run --enable-api -m ...
Read more >Rasa bot bad request and cors proxy issue
Rasa core version 13.7 nlu version 14.6 os windows 10 python version 3.5. i created rasa chatbot and trained nlu as well as...
Read more >[Solved]-Rasa bot bad request and cors proxy issue-node.js
[Solved]-Rasa bot bad request and cors proxy issue-node.js ... Go to the RASA project folder and run the following: rasa run --enable-api --cors...
Read more >THE RASA MASTERCLASS HANDBOOK - HubSpot
After you've created your training data (see Episode 2 for a refresher on this topic), you are ready to configure your pipeline, which...
Read more >rasa-nlu-trainer - npm Package Health Analysis - Snyk
rasa -nlu-trainer · This is a tool to edit your training examples for [rasa NLU](https://github.com/golastmile/rasa_nlu) For more information about how to use ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@rafaelariad I just basically modified https://github.com/paschmann/rasa-ui/blob/master/Dockerfile#L47 to include my rasa server address then did
docker build -t rasa-ui .
to build it anddocker run -itd -p 5001:5001 rasa-ui
to spin it upactually it wasn’t a bug after all in those lines I just tested now and its working I think part of it was how I was issuing the output so for documentation purposes this is how I have it working:
which now works properly and proxies to my Rasa server and gives me back the results:
So sorry for the issue seems it was just how I was making the call and I didn’t realize the project needed to be equal to my agent name.
Thanks again