Hello.
I create small bot with some intents, rules and actions.
I decide to test API, so I started rasa server with command rasa run. But bot response very slow. Average time response is 3 second. What could be the problem?
Hi @ivan.dmi I can’t read Russian, but I deduced the memory usage is quite high - is that owed to rasa? Maybe if you could troubleshoot further using Resource Monitor or looking at processes?
Another suggestion is to try to train a bot in English to see if the responses still take as long, in case the initial bot language impacted prediction time.
First, in endpoints.yml I used url: "http://localhost:5055/webhook" for actions endpoint, I replace to url: "http://127.0.0.1:5055/webhook". The response time become faster.
Second, I used custom NER component with pymystem3, that works not so fast. So without that component bot response faster.
Thanks for help!