You created five bots with Microsoft Bot Framework Composer, but want to make them appear as one unified bot for users, with dynamic routing depending on user input.
This is exactly the Bot Framework Orchestrator scenario. Orchestrator is the recognizer that allows you to dispatch incoming utterances to the correct skill (bot) or dialog.
Step 1 – Install Orchestrator package
To use Orchestrator inside Bot Framework Composer, you first install the Orchestrator package.
This provides the functionality for language understanding and routing.
Correct answer: F.
Step 2 – Change Recognizer/Dispatch type
By default, a bot project might use LUIS recognizer or Regex recognizer.
To use Orchestrator, you need to change the recognizer type to Orchestrator in Composer.
Correct answer: B.
Step 3 – Create an Orchestrator model
Orchestrator requires a trained model that maps utterances to intents or routes them to the correct skill/bot.
You must create an Orchestrator model for dispatch.
Correct answer: A.
Other Options (Incorrect):
C. Create a Composer extension → Not required for orchestrating multiple bots.
D. Enable WebSockets → Useful for streaming scenarios, not for bot orchestration.
E. Create a custom recognizer JSON file → Applies to building custom recognizers, not needed with Orchestrator.
Submit