nerdexam
Microsoft

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…

Submitted by rania.sa· Mar 30, 2026Implement conversational AI solutions

Question

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 on user input. Which three actions should you perform? Each correct answer presents part of the solution. NOTE: Each correct selection is worth one point.

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)
  • A
    11% (4)
  • B
    77% (27)
  • D
    3% (1)
  • E
    9% (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.

ACreate a composer extension.

Creating a Composer extension is used for adding custom functionality to Composer itself, not for combining and routing between bots.

BChange the Recognizer/Dispatch type.Correct

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.

CCreate an Orchestrator model.Correct

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.

DEnable WebSockets.

Enabling WebSockets is typically related to real-time communication protocols for bot channels, not directly to the logic of dispatching between multiple bots.

ECreate a custom recognizer JSON file.

While custom recognizers can be created, Orchestrator provides a specific and more robust solution for dispatching across multiple bots trained on different language models.

FInstall the Orchestrator package.Correct

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

#Bot Framework Orchestrator#Bot Dispatch#Dynamic bot routing#Bot Framework Composer

Community Discussion

No community discussion yet for this question.

Full AI-102 Practice