enabling web search

Roguska, Eliza 0 Reputation points
2026-09-11T07:48:33.1633333+00:00

how to enable web search while using copilot feature for an agent

Microsoft Copilot | Other
0 comments No comments

1 answer

Sort by: Newest
  1. AI answer

    2026-09-11T07:48:49.1566667+00:00

    For a Microsoft Copilot agent, web search must be enabled at both the organization level and the agent level.

    1. Confirm the organization allows web search.
      • Organization administrators can disable web search for Copilot and all agents.
      • If admins disable it, agents that have web search enabled won’t return web search results.
    2. Enable web search in the agent.
      • If building a declarative agent with Agents Toolkit and Visual Studio Code, add WebSearch to the manifest capabilities.
      • To limit search to specific public sites, add the sites property with up to four URLs.
    {
      "capabilities": [
        {
          "name": "WebSearch",
          "sites": [
            {
              "url": "cnn.com"
            }
          ]
        }
      ]
    }
    
    1. If using Agent Builder:
      • Open the Configure tab.
      • Under Knowledge, list the website URLs to reference.
    2. For Copilot Studio agents:
      • Turn on the Web Search setting.
      • The agent then generates a short keyword query from the user’s question and sends that query to Bing, not the full prompt.
    3. If using Microsoft Copilot Chat and the organization already allows web search:
      • Open Settings or … Settings and more.
      • Go to Personalization.
      • Expand Advanced.
      • Turn on the Web search toggle.

    Notes:

    • Scoped web search supports up to four public websites.
    • Scoped results depend on Bing-indexed content, so dynamic or client-side rendered content can be missing or outdated.
    • If web search is turned off by the organization, the user toggle is unavailable or ineffective.

    References:

    AI-generated content may be incorrect. Read our transparency notes for more information.

    Was this answer helpful?

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.