Events
May 19, 6 PM - May 23, 12 AM
Calling all developers, creators, and AI innovators to join us in Seattle @Microsoft Build May 19-22.
Register todayThis browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
In Copilot Studio, a topic defines how an agent conversation progresses.
To author topics, you can describe what you want and have AI create the topic for you, or create topics from scratch.
In Copilot Studio, a topic represents some portion of a conversational thread between a user and an agent. You define and work with topics on an authoring canvas. A topic contains one or more conversation nodes, which together define the conversational paths that a topic can take. Each node performs an action, such as sending a message or asking a question.
Often, a topic has a set of trigger phrases—phrases, keywords, and questions that a customer is likely to use that are related to a specific issue. Copilot Studio agents use natural language understanding, your customer's message, and the trigger phrases for all your topics to find the best topic to trigger. The message doesn't need to exactly match a topic's trigger phrases to trigger the topic. For example, a topic about store hours might include the trigger phrase check store hours
. If a customer enters "see store opening hours," this phrase triggers your store hours topic.
An agent uses natural language understanding (NLU) to parse what a customer typed and find the best trigger phrase or node.
For example, a user might type "Open hours." The agent matches that to the Store hours topic, begins a conversation that asks which store the customer is interested in, and then displays the hours the store is open.
The test panel shows how the agent conversation progresses at every step. You can use the test panel to fine-tune a topic without having to leave Copilot Studio.
For more information about agent and topic limits, see Quotas, limits, app registration, certificates, and configuration values.
An agent can include two types of topics, system, and custom topics. Every new agent starts with a set of predefined system and custom topics.
System topics support essential behaviors, such as a custom request to speak to a person or end the conversation. Some system topics have trigger phrases, which you can customize to fit your agent's needs.
For more information, see Use system topics.
The predefined custom topics cover common behaviors, such as greeting a customer, ending a conversation, or restarting conversation.
The following types of node are available:
Option | Description |
---|---|
Send a message | Send the customer a message. |
Ask a question | Ask the customer a question. |
Ask with adaptive card | Create a JSON snippet to exchange with other apps. |
Author using conditions | Branch your conversation based on a condition. |
Variable management | Set a value, parse a value, or clear all variables. |
Manage topics | Redirect the conversation, transfer the user, or end the topic or conversation. |
Call a flow | Call a flow like Power Automate or Excel Online, or use a connector or a plugin. |
Advanced | Generative answers, HTTP requests, events, and more. |
Tip
Rename nodes to make them easier to identify. Select the node's name field to update the name directly, or select the More icon (…) of the node and select Rename from the menu. You can also rename nodes in the code editor.
It's not possible to rename Trigger nodes and Go to step nodes.
Node names can be up to 500 characters in length.
Go to the Topics page for your agent. For better visibility, close the test panel for now.
Select Add a topic, and select From blank.
A Trigger node appears on an otherwise blank topic authoring canvas.
Select the More icon (…) of the Trigger node, and then select Properties. The On Recognized Intent properties panel appears.
In On Recognized Intent properties, select the Phrases area. The Phrases secondary panel appears.
Under Add phrases, enter a trigger phrase for your topic.
Your agent needs 5 to 10 trigger phrases to train the AI to understand your customers' responses. To add more trigger phrases, you can either:
You can include punctuation in a trigger phrase, but it's best to use short phrases rather than long sentences.
Select Details on the toolbar to open the Topic details panel.
Add details for your topic:
Select Save on the top menu bar to save your topic.
Important
Avoid using periods (.
) in your topic names. It isn't possible to export a solution that contains an agent with periods in the name of any of its topics.
From the Phrases panel of a topic's Trigger node, you can add or replace the set of trigger phrases associated with the topic.
Prepare a text file (maximum 3 MB) listing all trigger phrases you want to add for your topic, with each phrase on a separate line.
Under Add phrases, select upload a file.
In Upload a file, select the desired option:
Drop your file onto the window. Alternatively, select click to browse, navigate to your file, and select it.
Review the trigger phrases that appear, and select Add.
Save your topic.
From the Phrases panel of a topic's Trigger node, you can download the set of trigger phrases associated with the topic.
Under Add phrases, select download.
Save the resulting text file, or open it in a text editor to review its content. Each trigger phrase appears on a separate line.
When you create a topic, a Trigger node automatically appears on the authoring canvas. You can then add different types of nodes to achieve the desired conversation path for your topic.
To add a node after another node or between two nodes on your topic authoring canvas:
Select the Add node icon
below the node under which you want to add a new node.
Select the desired node type from the list that appears.
Select the More icon (…) of the node you want to delete, and then select Delete.
You can use controls on the toolbar to cut, copy, paste, and delete the selected node or selected adjacent nodes.
The toolbar also has a control to undo an edit. Open the Undo menu to revert all actions back to the last save or to redo the previous action.
Once you use the Cut or Copy tools to place one or more nodes on the clipboard, there are two ways to paste them in the canvas:
If you select a node and then select Paste, the nodes on the clipboard are inserted after the selected node.
If you select the "+" to see the Add node menu, then select Paste, the node on the clipboard is inserted at that location.
Topics can have input and output parameters. When a topic redirects to another topic, you can use these parameters to pass information between the topics.
Additionally, if your agent uses generative mode, it can automatically fill topic inputs from the conversation context, or after generating questions to gather values from users. This behavior is similar to how generative slot filling works for actions.
To learn more about input and output parameters for topics, see Manage topic inputs and outputs.
The code editor shows the topic in YAML, a markup language that's easy to read and understand. Use the code editor to copy and paste topics from other bots—even ones created by other authors.
Important
Designing a topic entirely in the code editor and pasting complex topics isn't fully supported.
In this example, you copy and paste YAML into the code editor to quickly add a topic that asks the customer for shipping information.
On the Topics page, select Create > From blank.
In the upper-right corner of the authoring canvas, select More, then select Open code editor.
Select and delete the contents of the code editor. Then copy and paste the following YAML code:
kind: AdaptiveDialog
beginDialog:
kind: OnRecognizedIntent
id: main
intent:
displayName: Lesson 3 - A topic with a condition, variables and a prebuilt entity
triggerQueries:
- Buy items
- Buy online
- Buy product
- Purchase item
- Order product
actions:
- kind: SendMessage
id: Sjghab
message: I am happy to help you place your order.
- kind: Question
id: eRH3BJ
alwaysPrompt: false
variable: init:Topic.State
prompt: To what state will you be shipping?
entity: StatePrebuiltEntity
- kind: ConditionGroup
id: sEzulE
conditions:
- id: pbR5LO
condition: =Topic.State = "California" || Topic.State = "Washington" || Topic.State = "Oregon"
elseActions:
- kind: SendMessage
id: X7BFUC
message: There will be an additional shipping charge of $27.50.
- kind: Question
id: 6lyBi8
alwaysPrompt: false
variable: init:Topic.ShippingRateAccepted
prompt: Is that acceptable?
entity: BooleanPrebuiltEntity
- kind: ConditionGroup
id: 9BR57P
conditions:
- id: BW47C4
condition: =Topic.ShippingRateAccepted = true
elseActions:
- kind: SendMessage
id: LMwySU
message: Thank you and please come again.
Select Save, and then select Close code editor. The Question node now has many conditions to the question about shipping.
Test your agent when you make changes to your topics, to make sure everything works as expected.
After you design and test your agent, publish it to the web, mobile or native apps, or Microsoft Bot Framework channels.
Events
May 19, 6 PM - May 23, 12 AM
Calling all developers, creators, and AI innovators to join us in Seattle @Microsoft Build May 19-22.
Register todayTraining
Module
Manage topics in Microsoft Copilot Studio - Training
This module you're introduced to the basic principles of topics such as trigger phrases and conversation paths and how to create them.
Certification
Microsoft Certified: Power Automate RPA Developer Associate - Certifications
Demonstrate how to improve and automate workflows with Microsoft Power Automate RPA developer.
Documentation
Use system topics - Microsoft Copilot Studio
Learn how to use system topics in Microsoft Copilot Studio.
Manage topics - Microsoft Copilot Studio
Resolve errors, set the status of individual topics, and copy topics when creating new topics to save time.
Create and edit topics with Copilot - Microsoft Copilot Studio
Use AI powered by GPT to create and edit topics, and get your agent ready for your users in minutes.