Not able to get Response message in Chat Widget

Hi, I’m trying to create a Rasa chatbot widget and have configured the Rasa server details. I am able to send messages, but the widget is not displaying the response messages. In the network tab of the developer tools, I am seeing responses like 3probe, 2, 2, etc. Could you help me understand what I might be missing?

Issue Fixed my Self

Hi I am experiencing a similar issue, Will you be able share how you resolved the issue.

I faced the same issue because the Webchat widget is not compatible with the latest version of Rasa. Additionally, Rasa needs to be compatible with the Socket.IO client version. To resolve this, I build a custom frontend using a compatible version of Socket.IO for a stable connection. I also modify the line sio.enter_room(sid, data["session_id"]) in venv/lib/python3.8/site-packages/rasa/core/channels/socketio.py to await sio.enter_room(sid, data["session_id"]), and it works.