Here are all the actual test exam dumps for IT exams. Most people prepare for the actual exams with our test dumps to pass their exams. So it's critical to choose and actual test pdf to succeed.

Exam AI-102 Topic 1 Question 169 Discussion

Actual exam question for Microsoft's AI-102 exam
Question #: 169
Topic #: 1
You are building an agent by using the Azure Al Agent Service.
You need to ensure that the agent can access publicly accessible data that was released during the past 90 days.
How should you complete the code? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.

Suggested Answer:


Explanation:

To let an Azure AI Agent access publicly available, recent web content, you add the Bing grounding tool. In the SDK, you first define a ToolConnectionList with the Bing connection ID (here, "bingConnectionId"), then construct a BingGroundingToolDefinition(connectionList) so the agent can call Bing Search with recency filters (e.g., last 90 days) when answering questions.
When creating the agent, tool definitions are passed via the tools: parameter of CreateAgentAsync(...) as a List<ToolDefinition>. The toolResources parameter is used when you must also supply resource descriptors (for example, an Azure AI Search index configuration), which is not needed here because the Bing grounding tool already references the connection through the ToolConnectionList.
Therefore:
* Use BingGroundingToolDefinition to ground the agent on current public web data.
* Provide that tool in tools: new List<ToolDefinition> { grounding } when calling CreateAgentAsync(...).
Microsoft Azure AI References (titles only)
* Azure AI Agent Service - Bing web grounding tool (tool definitions and connections)
* Azure AI Agent Service SDK - Agent creation (CreateAgentAsync parameters: tools vs toolResources)
* Azure AI Agent Service - Tool connections and ToolConnectionList usage

by Mark at May 15, 2026, 11:11 PM

Comments

Chosen Answer:
This is a voting comment (?) , you can switch to a simple comment.
Switch to a voting comment New
Nick name: Submit Cancel
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.