
Explanation:
* Add the prebuilt domain ToDo
* Add a new application
* Train the application
* Publish the application
Correct Sequence:
Comprehensive Detailed Explanation You are building a Conversational Language Understanding (CLU) model for a chatbot that supports task tracking. To minimize development time, the best approach is to use a prebuilt domain (like ToDo) instead of building intents/entities manually.
Steps in correct order:
* Add the prebuilt domain ToDo
* Prebuilt domains in CLU provide ready-to-use intents and entities for common scenarios (e.g., calendar, email, ToDo).
* This significantly reduces development time since you don't need to create all intents/entities manually.
* Add a new application
* You must first create a CLU application that uses the prebuilt domain.
* The application acts as the container for intents, entities, and utterances.
* Train the application
* Training is required after adding intents, entities, and utterances (or using a prebuilt domain).
* This ensures the model can classify and extract information correctly.
* Publish the application
* Once trained, you must publish the application so it can be accessed via an endpoint and integrated into the chatbot.
* Add example utterances # Not required if you're using the prebuilt ToDo domain (utterances are already included).
Incorrect Actions in this Case
* Add the prebuilt domain ToDo
* Add a new application
* Train the application
* Publish the application
Correct Sequence:
* Conversational Language Understanding (CLU) overview
* Prebuilt domains in CLU (LUIS ToDo example)
* Train and publish CLU models
Microsoft References