In this tutorial, you will get the opportunity to understand how agentic AI can be constructed in a low-code environment, by following the guidelines to build an agent that parses resumes into a readable and easily digestible format.
LLMs are well-equipped to handle complicated natural language tasks, but even at the user interface, this can still involve a lot of mundane tasks like file uploading, copy-pasting, and refreshing data. By taking advantage of Copilot Studio and its capabilities, much of the process can be automated so that you can spend your time more thoughtfully.
Copilot Studio has an “Agents” tab that lets you build these task rabbits. However, in one Agent, there are several Topics. These individual Topics are the truly single-component “agents:” they handle one task at a time and give you one output at a time. Together, they create an overarching “Agent” that can handle a certain subset of tasks for you. In the “Multi-Agent Orchestration” option on the Overview page of one Agent, toggling this option allows Copilot to use generative AI and natural language processing to orchestrate the use of any of the Topics when a user interacts with the whole Agent.
This question holds more nuance. The “Agents” tab in Copilot Studio holds the published and unpublished agents you have created, and these are chatbots in the traditional sense. When you publish an agent, you can publish it to a specific environment (like Word, SharePoint, etc.) to ask that agent inquiries regarding the content of the environment. This is particularly beneficial for RAG LLM tasks, which allow the agent to use the environment (documents, etc.) as its “knowledge base” to answer questions and take actions intelligently.
The “Flows” tab in Copilot Studio is an option that allows users to create automated workflows with little to no code. Whereas an Agent is interactive, typically the advantage of a Flow is the “Automatic Trigger” option, which will start an automated task (or set of tasks) on its own. These triggers can correspond to a variety of events like: any time a file is added to a folder, or a document is edited.
Don’t forget...
You can get step-by-step instructions to troubleshoot any nitty gritty questions with any LLM, like OpenAI’s ChatGPT, Microsoft’s own Copilot, or similar infrastructure. Although this tutorial is meant to be concise, asking an LLM to guide you through which tabs to click on and which actions to take is a great way to get a better feel for how the language model in Copilot Studio will interpret input as well, and lets you learn the best practices for interacting with a chatbot and with agentic AI. This will also give you a good understanding for how other people will be interacting with your agent too!
When using the support of public models, take care to validate information by asking the GPT for references and ensuring that the references are recent and not outdated. This post is accurate as of July 2025.
Here are the steps we can take to finally build our own agent in Copilot Studio:
Step 1: Create Your Copilot
This creates a basic chatbot ready for customization.
Step 2: Add a Topic for Resume Summarizing
Topics are individual conversations your bot can handle. When the user says a trigger phrase, the bot starts the topic.
Step 3: Ask the User for Resume Text
Let’s start the conversation by prompting the user to paste the resume.
This input will later be sent to an external summarizer.
Step 4: Connect to a Resume Summarizing API
Now you'll connect the chatbot to an external summarizer. This can be done using Power Automate, a no-code tool for integrating with APIs.
Option A: Use Your Own API
If you have access to a resume summarization API (e.g. OpenAI, Azure OpenAI, or a custom webhook):
Option B: Use a Mock/Placeholder Flow
If you’re just testing, the API can return a static message like “This resume is for a marketing specialist with 5 years of experience.”
Once the flow is ready:
Step 5: Display the Summary to the User
Now that you have the summary, show it to the user.
Optionally, you can add follow-up questions like:
Step 6: Test and Publish Your Copilot
When you’re ready, you can click Publish in the top menu, and then go to Channels to share your bot via Microsoft Teams, or a public or internal website! Congrats on publishing your first agent!