Since each LUIS model is limited to 20 intents and 10 entities, and also each model must have a well defined scope/domain, I'm wondering what's the best way to implement multiple dialogs in a single bot application, if I want my bot to be able to cover multiple domains, let's say for example get financial information and weather information.
I know that ideally I would have two different bots, but in this situation I need to do this with a single bot. I read the Bot Framework documentation on Dialogs (and several other parts) and the LUIS help page, but I wasn't able to find any information on how I could achieve that. I also gave a look at the examples and found nothing, is there a way to do this?