The exact point being, that I\'ve created a bot that can take inputs from users in free form text and return relevant web links. Now the problem being, that in case the bot
Maybe you can create some APIs in a WebApplication that will be used by your bot. If the LUIS Intent "None" is called, you make a call to that API and start a new conversation with a human.
You can use this same process to manage all conversations in a WebApplication Chat Control
one possible way is you can make a bridge, idea is as follow:
See this link on how to start a new conversation:
https://docs.botframework.com/en-us/csharp/builder/sdkreference/routing.html#sendtoconversation
Hope it helps,