Connecting Rasa to Desktop Chat App

Hi,

I have a training rasa model which working fine in a web UI, Is it possible for me to have a Desktop chat App and connect my rasa model?

Any help or lead will be much appreciated. Thanks in advance.

Yes, you could use the default REST channel that the web UI is probably using (depends on which web UI you choose). There is also a websocket channel.

Sorry, I am new to this could you explain little more? I have a chat app which I have developed using tkinter, I am unable to connect it to rasa server?

When you launch a RASA server instance, it hooks onto your localhost at port 5005 by default. So, your tkinter UI should have code that sends HTTP POST requests to http://localhost:5005/webhooks/rest/webhook and use the response from the server in your UI.

Thanks got it connected.