Code Level . You can create several LUIS applications and connect them to your LuisRecognizer using ILuisModelMap . The keys will be your locales.
var many_language_recognizer = new builder.LuisRecognizer({
'en': englishModel || process.env.EN_LUIS,
'es': spanishModel || process.env.ES_LUIS,
'fr': frenchModel || process.env.FR_LUIS
});
bot.recognizer(many_language_recognizer);
You will also want to use the localization capabilities of the SDK to generate your invitations and messages.
LUIS Level: LUIS only supports one language for each application, so you need to create several applications.
source
share