AI-102 · Question #248
You create five bots by using Microsoft Bot Framework Composer. You need to make a single bot available to users that combines the bots. The solution must support dynamic routing to the bots based…
The correct answer is B. Change the Recognizer/Dispatch type. C. Create an Orchestrator model. F. Install the Orchestrator package. To combine multiple bots into a single bot that dynamically routes based on user input, you need to use the Orchestrator component. This involves installing the Orchestrator package, creating an Orchestrator model, and configuring the bot's recognizer to use Orchestrator for…
Question
Options
- ACreate a composer extension.
- BChange the Recognizer/Dispatch type.
- CCreate an Orchestrator model.
- DEnable WebSockets.
- ECreate a custom recognizer JSON file.
- FInstall the Orchestrator package.
How the community answered
(35 responses)- A11% (4)
- B77% (27)
- D3% (1)
- E9% (3)
Why each option
To combine multiple bots into a single bot that dynamically routes based on user input, you need to use the Orchestrator component. This involves installing the Orchestrator package, creating an Orchestrator model, and configuring the bot's recognizer to use Orchestrator for dispatching.
Creating a Composer extension is used for adding custom functionality to Composer itself, not for combining and routing between bots.
Changing the Recognizer/Dispatch type to Orchestrator in Bot Framework Composer is essential to enable the master bot to use the Orchestrator model for routing user input to the correct child bot.
Creating an Orchestrator model is a core step for dispatching, as this model is trained on the intents of the individual child bots, allowing the master bot to understand and route user utterances accurately.
Enabling WebSockets is typically related to real-time communication protocols for bot channels, not directly to the logic of dispatching between multiple bots.
While custom recognizers can be created, Orchestrator provides a specific and more robust solution for dispatching across multiple bots trained on different language models.
Installing the Orchestrator package is a prerequisite for using Orchestrator functionality within Bot Framework Composer, providing the necessary tools and libraries to create and manage dispatch models.
Concept tested: Bot Framework Composer Orchestrator for dispatching
Source: https://learn.microsoft.com/en-us/composer/how-to-use-orchestrator
Topics
Community Discussion
No community discussion yet for this question.