@ChrisRahme , I’m trying to build a multi lingual Tourism bot for , initially i created it for english language…how to implement other languages…as u told, the no. of intents, stories, rules and responses are growing by N…how to sort that…also i want to give real-time information for tourism… tourism covers many places, so how to take the data(16 intents per location) for each and every location, because it will be a huge data… how to manage the response for intents…because i added response for each intent in action.py in classes…
You can use language detection tools to automatically figure out and switch to the user’s preferred language. Libraries like Google’s Language Detection or Microsoft’s Azure Language Detection can be really useful.
Thanks for the reply @Clarkeos …previously, i tried SpacyNLP, MitieNLP they doesn’t contain any models to recognize the desired language(Tamil) i’m focusing on… As per your suggestion, if we use Google’s Language Detection or Microsoft’s Azure Language Detection, we doesn’t need to update intents for every language ?? Also, how to train my model to leave if additional intents were asked in future, we need to add it manually or someother ways there?