{"id":57764,"date":"2026-07-05T20:26:34","date_gmt":"2026-07-05T10:26:34","guid":{"rendered":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/05\/design-agentic-retrieval-with-azure-ai-search-knowledge-sources\/"},"modified":"2026-07-05T20:28:02","modified_gmt":"2026-07-05T10:28:02","slug":"design-agentic-retrieval-with-azure-ai-search-knowledge-sources","status":"publish","type":"post","link":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/05\/design-agentic-retrieval-with-azure-ai-search-knowledge-sources\/","title":{"rendered":"Design Agentic Retrieval with Azure AI Search Knowledge Sources"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">In this blog post Design Agentic Retrieval with Azure AI Search Knowledge Sources we will explain how modern AI agents can search your business information more intelligently, without turning your company data into a guessing game.<\/p>\n\n\n\n<!--more-->\n\n\n\n<p class=\"wp-block-paragraph\">Many organisations have already tested an AI chatbot over SharePoint, policy documents, proposals, service records, or product information. The first demo often looks impressive. Then someone asks a real business question and the answer is incomplete, out of date, or confidently wrong.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">That is the problem agentic retrieval is designed to fix. Instead of asking AI to search once and hope for the best, Azure AI Search can now help an agent plan the search, break a difficult question into smaller searches, check multiple sources, and return better evidence for the final answer.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The simple version<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Azure AI Search is Microsoft\u2019s search service for business data. It can index documents, web content, database records, and other information so applications can find the right content quickly.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Agentic retrieval adds a smarter layer on top. An AI model looks at the user\u2019s question, works out what it needs to know, searches the right knowledge sources, and brings back the most useful results for an answer.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">A knowledge source is the definition of where the AI should look. That might be an existing Azure AI Search index, an Azure Blob Storage container, SharePoint content, Azure SQL data, or approved web content. In plain English, it tells the AI agent, \u201cThese are the trusted places you are allowed to use.\u201d<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">This builds on the ideas we covered in Architecture of RAG Building Reliable Retrieval Augmented AI, where we explained retrieval augmented generation, or RAG. RAG means the AI answers using your documents and data, rather than relying only on what the model already knows.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Why normal AI search often disappoints<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Most early AI knowledge projects follow a simple pattern. Put documents into a search index, ask a question, retrieve a few chunks of text, and ask the AI model to write an answer.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">That works for simple questions like, \u201cWhat is our parental leave policy?\u201d It struggles with questions like, \u201cWhat are the commercial risks if we accept this customer\u2019s proposed payment terms and delivery obligations?\u201d<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">That second question may need to search contract templates, legal guidance, finance policy, customer history, delivery notes, and maybe recent emails or SharePoint records. A single search query is rarely enough.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">This is where agentic retrieval becomes useful for leaders. It improves the quality of answers without asking staff to learn special search syntax or know exactly where every document lives.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What Azure AI Search Knowledge Sources actually do<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Think of knowledge sources as controlled entry points into business information. They do not magically make messy data perfect, but they give your AI architecture structure.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Search index knowledge sources<\/strong> connect an existing Azure AI Search index to an AI agent. This is useful when you have already prepared content with metadata, categories, access rules, and search tuning.<\/li>\n<li><strong>Azure Blob knowledge sources<\/strong> help create an indexed pipeline from files stored in Azure Blob Storage. Blob Storage is Microsoft\u2019s cloud file storage for documents, exports, logs, and other unstructured content.<\/li>\n<li><strong>SharePoint knowledge sources<\/strong> allow agents to use Microsoft 365 content, with careful attention to user identity and permissions.<\/li>\n<li><strong>Web knowledge sources<\/strong> can bring in current web grounding where approved, which can help with public information, standards, or market context.<\/li>\n<li><strong>Database knowledge sources<\/strong> can support structured business data, such as product records, customer cases, asset information, or operational data.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">The important point is not the technology list. The important point is control. You can design which sources are trusted, which are off limits, and which are suitable only for certain use cases.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The business outcome is better decisions, not clever demos<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">A CIO or CTO does not need another AI prototype that works only in a boardroom demo. You need something that helps staff make faster, safer decisions in the real business.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">For example, imagine a 180-person engineering firm with documents spread across SharePoint, Teams, project folders, and a few specialist systems. Project managers waste time searching for prior design decisions, safety notes, contract clauses, and customer commitments.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">A basic chatbot might find one project document and produce a neat answer. An agentic retrieval design can search across project documents, policy libraries, lessons learned, and approved web standards, then return a more complete response with the supporting source material.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The business result is practical: fewer repeated mistakes, less time searching, faster onboarding for new staff, and better consistency across projects.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How the retrieval flow works<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">At a high level, the flow looks like this:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>The user asks a business question.<\/strong> For example, \u201cWhat do we need to check before sending customer data to this vendor?\u201d<\/li>\n<li><strong>The AI plans the search.<\/strong> It breaks the question into smaller searches, such as privacy policy, vendor risk process, data classification, and contract requirements.<\/li>\n<li><strong>Azure AI Search queries the knowledge sources.<\/strong> Each approved source is searched in parallel where appropriate.<\/li>\n<li><strong>The results are ranked.<\/strong> Semantic ranking means Azure looks for meaning and relevance, not just matching words.<\/li>\n<li><strong>The AI answers using the retrieved evidence.<\/strong> The answer should be grounded in your approved data, not invented from thin air.<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">If you want to go deeper on answer quality, our post Boost Accuracy with Azure AI Groundedness explains groundedness in plain English. Groundedness means the AI answer is tied back to the information it was given.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">A practical design pattern<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">For most mid-sized organisations, we would not start by indexing everything. That usually creates noise, cost, and security risk.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">A better first design is to pick one valuable business workflow and build a focused knowledge base around it. A knowledge base is the container that brings one or more knowledge sources together for retrieval.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">For example, for a vendor risk assistant, the knowledge base might include:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>procurement policies from SharePoint;<\/li>\n<li>approved contract clauses from a legal document library;<\/li>\n<li>security questionnaires stored in Azure Blob Storage;<\/li>\n<li>vendor records from Azure SQL;<\/li>\n<li>selected public guidance where web grounding is approved.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">Here is a simplified example of what this can look like conceptually. This is not a full production template, but it shows the shape of the design.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>PUT \/knowledgeSources\/vendor-policy-source?api-version=2026-04-01\n{\n &quot;kind&quot;: &quot;searchIndex&quot;,\n &quot;indexName&quot;: &quot;vendor-policies-index&quot;,\n &quot;description&quot;: &quot;Approved procurement, privacy and vendor risk policies&quot;\n}\n\nPUT \/knowledgeBases\/vendor-risk-kb?api-version=2026-04-01\n{\n &quot;name&quot;: &quot;vendor-risk-kb&quot;,\n &quot;description&quot;: &quot;Knowledge base for vendor risk and data handling questions&quot;,\n &quot;knowledgeSources&quot;: [\n &quot;vendor-policy-source&quot;,\n &quot;contract-clause-source&quot;,\n &quot;security-questionnaire-source&quot;\n ]\n}\n\nPOST \/knowledgeBases\/vendor-risk-kb\/retrieve?api-version=2026-04-01\n{\n &quot;messages&quot;: [\n {\n &quot;role&quot;: &quot;user&quot;,\n &quot;content&quot;: &quot;What should we check before sharing customer data with this supplier?&quot;\n }\n ]\n}<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">The key decision is not the API call. It is the design work behind it: which data sources are trusted, who can access them, how current they are, and how you will test answer quality.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Security and permissions cannot be an afterthought<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">AI retrieval is only useful if it respects the same boundaries as the rest of your business. If a staff member cannot open an HR file in SharePoint, the AI should not reveal that content in an answer.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">This is especially important for Australian organisations working through Essential 8, the Australian government\u2019s cybersecurity framework that many organisations are now required or strongly encouraged to follow. Controls such as application control, patching, multi-factor authentication, restricted admin privileges, and regular backups all matter when AI agents can access business systems.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">It also matters for privacy. If your AI assistant can retrieve customer records, employee information, or commercially sensitive documents, you need clear decisions around access, logging, retention, and where data is processed.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">CloudProInc often designs this alongside Microsoft Entra ID, which manages user identities and sign-ins, Microsoft Intune, which manages and secures company devices, Microsoft Defender, which helps detect and respond to threats, and Wiz, which finds cloud security risks across Azure environments.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">If permission-aware AI knowledge bases are on your roadmap, our related post Build Permission Aware Knowledge Bases With Foundry IQ and Azure AI goes deeper into this exact challenge.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Five design questions before you build<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">1. What business decision should the agent improve?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Do not start with \u201cwe need an AI agent.\u201d Start with a painful business process. Vendor risk reviews, policy lookup, service desk triage, project handover, sales proposal support, and compliance evidence gathering are good candidates.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">2. Which sources are authoritative?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Every company has old folders, duplicate templates, and documents named \u201cfinal final v3.\u201d Agentic retrieval will not fix poor information governance by itself. Choose the trusted sources first.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">3. How will permissions be enforced?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Decide whether retrieval should run under the user\u2019s identity, a service identity, or a controlled application identity. In plain English, decide whether the AI sees what the person sees, or only a curated subset of approved information.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">4. How will you measure answer quality?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Create test questions before launch. Include easy, hard, ambiguous, and unsafe questions. Check whether the answer is useful, whether it cites the right source material internally, and whether it refuses when it should.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">5. What happens when the answer is wrong?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">No AI system is perfect. You need feedback loops, monitoring, escalation paths, and clear wording that shows users when they should verify an answer before acting.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Where this fits in your AI roadmap<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Agentic retrieval is not the whole AI strategy. It is the knowledge layer that makes agents more useful and safer.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The broader architecture still needs secure infrastructure, identity controls, monitoring, cost management, and responsible AI guardrails. We covered those foundations in Designing Secure AI Agent Infrastructure on Azure.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">For many organisations, the best path is a small production-grade pilot. Pick one workflow, build the right knowledge sources, test it with real users, measure time saved, and then expand.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Final thoughts<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Azure AI Search Knowledge Sources make agentic retrieval more practical because they give AI agents a controlled way to find and use business information. That means better answers, less rework, lower risk, and a clearer path from AI experiment to business value.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The organisations that will benefit most are not the ones that connect AI to everything overnight. They are the ones that design retrieval carefully, protect sensitive information, and focus on real business outcomes.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">CloudProInc is a Melbourne-based Microsoft Partner and Wiz Security Integrator with more than 20 years of enterprise IT experience across Azure, Microsoft 365, Intune, Windows 365, OpenAI, Claude, Microsoft Defender, and Wiz. If you are not sure whether your AI knowledge architecture is ready for production, we are happy to take a practical look and help you map the safest next step.<\/p>\n\n\n","protected":false},"excerpt":{"rendered":"<p>Learn how Azure AI Search Knowledge Sources help AI agents find trusted business information, reduce risk, and produce more useful answers from your company data.<\/p>\n","protected":false},"author":1,"featured_media":57767,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_yoast_wpseo_opengraph-title":"Agentic Retrieval Design with Knowledge Sources","_yoast_wpseo_opengraph-description":"Agentic retrieval helps AI agents search approved business sources, break down complex questions, and return grounded answers with clearer, reliable evidence.","_yoast_wpseo_twitter-title":"Agentic Retrieval Design with Knowledge Sources","_yoast_wpseo_twitter-description":"Agentic retrieval helps AI agents search approved business sources, break down complex questions, and return grounded answers with clearer, reliable evidence.","_et_pb_use_builder":"","_et_pb_old_content":"","_et_gb_content_width":"","_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_post_was_ever_published":false},"categories":[13],"tags":[],"class_list":["post-57764","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.3 (Yoast SEO v27.9) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Agentic Retrieval Design with Knowledge Sources<\/title>\n<meta name=\"description\" content=\"Agentic retrieval helps AI agents search approved business sources, break down complex questions, and return grounded answers with clearer, reliable evidence.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/05\/design-agentic-retrieval-with-azure-ai-search-knowledge-sources\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Agentic Retrieval Design with Knowledge Sources\" \/>\n<meta property=\"og:description\" content=\"Agentic retrieval helps AI agents search approved business sources, break down complex questions, and return grounded answers with clearer, reliable evidence.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/05\/design-agentic-retrieval-with-azure-ai-search-knowledge-sources\/\" \/>\n<meta property=\"og:site_name\" content=\"CPI Consulting\" \/>\n<meta property=\"article:published_time\" content=\"2026-07-05T10:26:34+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-07-05T10:28:02+00:00\" \/>\n<meta name=\"author\" content=\"CPI Staff\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:title\" content=\"Agentic Retrieval Design with Knowledge Sources\" \/>\n<meta name=\"twitter:description\" content=\"Agentic retrieval helps AI agents search approved business sources, break down complex questions, and return grounded answers with clearer, reliable evidence.\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"CPI Staff\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"9 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2026\\\/07\\\/05\\\/design-agentic-retrieval-with-azure-ai-search-knowledge-sources\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2026\\\/07\\\/05\\\/design-agentic-retrieval-with-azure-ai-search-knowledge-sources\\\/\"},\"author\":{\"name\":\"CPI Staff\",\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/#\\\/schema\\\/person\\\/192eeeb0ce91062126ce3822ae88fe6e\"},\"headline\":\"Design Agentic Retrieval with Azure AI Search Knowledge Sources\",\"datePublished\":\"2026-07-05T10:26:34+00:00\",\"dateModified\":\"2026-07-05T10:28:02+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2026\\\/07\\\/05\\\/design-agentic-retrieval-with-azure-ai-search-knowledge-sources\\\/\"},\"wordCount\":1693,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2026\\\/07\\\/05\\\/design-agentic-retrieval-with-azure-ai-search-knowledge-sources\\\/#primaryimage\"},\"thumbnailUrl\":\"\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/design-agentic-retrieval-with-azure-ai-search-knowledge-sources.png\",\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2026\\\/07\\\/05\\\/design-agentic-retrieval-with-azure-ai-search-knowledge-sources\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2026\\\/07\\\/05\\\/design-agentic-retrieval-with-azure-ai-search-knowledge-sources\\\/\",\"url\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2026\\\/07\\\/05\\\/design-agentic-retrieval-with-azure-ai-search-knowledge-sources\\\/\",\"name\":\"Agentic Retrieval Design with Knowledge Sources\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2026\\\/07\\\/05\\\/design-agentic-retrieval-with-azure-ai-search-knowledge-sources\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2026\\\/07\\\/05\\\/design-agentic-retrieval-with-azure-ai-search-knowledge-sources\\\/#primaryimage\"},\"thumbnailUrl\":\"\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/design-agentic-retrieval-with-azure-ai-search-knowledge-sources.png\",\"datePublished\":\"2026-07-05T10:26:34+00:00\",\"dateModified\":\"2026-07-05T10:28:02+00:00\",\"description\":\"Agentic retrieval helps AI agents search approved business sources, break down complex questions, and return grounded answers with clearer, reliable evidence.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2026\\\/07\\\/05\\\/design-agentic-retrieval-with-azure-ai-search-knowledge-sources\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2026\\\/07\\\/05\\\/design-agentic-retrieval-with-azure-ai-search-knowledge-sources\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2026\\\/07\\\/05\\\/design-agentic-retrieval-with-azure-ai-search-knowledge-sources\\\/#primaryimage\",\"url\":\"\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/design-agentic-retrieval-with-azure-ai-search-knowledge-sources.png\",\"contentUrl\":\"\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/design-agentic-retrieval-with-azure-ai-search-knowledge-sources.png\",\"width\":1536,\"height\":1024},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2026\\\/07\\\/05\\\/design-agentic-retrieval-with-azure-ai-search-knowledge-sources\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Design Agentic Retrieval with Azure AI Search Knowledge Sources\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/#website\",\"url\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/\",\"name\":\"Cloud Pro Inc - CPI Consulting Pty Ltd\",\"description\":\"Cloud, AI &amp; Cybersecurity Consulting | Melbourne\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/#organization\",\"name\":\"Cloud Pro Inc - Cloud Pro Inc - CPI Consulting Pty Ltd\",\"url\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"\\\/wp-content\\\/uploads\\\/2022\\\/01\\\/favfinalfile.png\",\"contentUrl\":\"\\\/wp-content\\\/uploads\\\/2022\\\/01\\\/favfinalfile.png\",\"width\":500,\"height\":500,\"caption\":\"Cloud Pro Inc - Cloud Pro Inc - CPI Consulting Pty Ltd\"},\"image\":{\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/#\\\/schema\\\/person\\\/192eeeb0ce91062126ce3822ae88fe6e\",\"name\":\"CPI Staff\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2d96eeb53b791d92c8c50dd667e3beec92c93253bb6ff21c02cfa8ca73665c70?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2d96eeb53b791d92c8c50dd667e3beec92c93253bb6ff21c02cfa8ca73665c70?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2d96eeb53b791d92c8c50dd667e3beec92c93253bb6ff21c02cfa8ca73665c70?s=96&d=mm&r=g\",\"caption\":\"CPI Staff\"},\"sameAs\":[\"http:\\\/\\\/www.cloudproinc.com.au\"],\"url\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/author\\\/cpiadmin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Agentic Retrieval Design with Knowledge Sources","description":"Agentic retrieval helps AI agents search approved business sources, break down complex questions, and return grounded answers with clearer, reliable evidence.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/05\/design-agentic-retrieval-with-azure-ai-search-knowledge-sources\/","og_locale":"en_US","og_type":"article","og_title":"Agentic Retrieval Design with Knowledge Sources","og_description":"Agentic retrieval helps AI agents search approved business sources, break down complex questions, and return grounded answers with clearer, reliable evidence.","og_url":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/05\/design-agentic-retrieval-with-azure-ai-search-knowledge-sources\/","og_site_name":"CPI Consulting","article_published_time":"2026-07-05T10:26:34+00:00","article_modified_time":"2026-07-05T10:28:02+00:00","author":"CPI Staff","twitter_card":"summary_large_image","twitter_title":"Agentic Retrieval Design with Knowledge Sources","twitter_description":"Agentic retrieval helps AI agents search approved business sources, break down complex questions, and return grounded answers with clearer, reliable evidence.","twitter_misc":{"Written by":"CPI Staff","Est. reading time":"9 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/05\/design-agentic-retrieval-with-azure-ai-search-knowledge-sources\/#article","isPartOf":{"@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/05\/design-agentic-retrieval-with-azure-ai-search-knowledge-sources\/"},"author":{"name":"CPI Staff","@id":"https:\/\/www.cloudproinc.com.au\/#\/schema\/person\/192eeeb0ce91062126ce3822ae88fe6e"},"headline":"Design Agentic Retrieval with Azure AI Search Knowledge Sources","datePublished":"2026-07-05T10:26:34+00:00","dateModified":"2026-07-05T10:28:02+00:00","mainEntityOfPage":{"@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/05\/design-agentic-retrieval-with-azure-ai-search-knowledge-sources\/"},"wordCount":1693,"commentCount":0,"publisher":{"@id":"https:\/\/www.cloudproinc.com.au\/#organization"},"image":{"@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/05\/design-agentic-retrieval-with-azure-ai-search-knowledge-sources\/#primaryimage"},"thumbnailUrl":"\/wp-content\/uploads\/2026\/07\/design-agentic-retrieval-with-azure-ai-search-knowledge-sources.png","articleSection":["Blog"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/05\/design-agentic-retrieval-with-azure-ai-search-knowledge-sources\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/05\/design-agentic-retrieval-with-azure-ai-search-knowledge-sources\/","url":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/05\/design-agentic-retrieval-with-azure-ai-search-knowledge-sources\/","name":"Agentic Retrieval Design with Knowledge Sources","isPartOf":{"@id":"https:\/\/www.cloudproinc.com.au\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/05\/design-agentic-retrieval-with-azure-ai-search-knowledge-sources\/#primaryimage"},"image":{"@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/05\/design-agentic-retrieval-with-azure-ai-search-knowledge-sources\/#primaryimage"},"thumbnailUrl":"\/wp-content\/uploads\/2026\/07\/design-agentic-retrieval-with-azure-ai-search-knowledge-sources.png","datePublished":"2026-07-05T10:26:34+00:00","dateModified":"2026-07-05T10:28:02+00:00","description":"Agentic retrieval helps AI agents search approved business sources, break down complex questions, and return grounded answers with clearer, reliable evidence.","breadcrumb":{"@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/05\/design-agentic-retrieval-with-azure-ai-search-knowledge-sources\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/05\/design-agentic-retrieval-with-azure-ai-search-knowledge-sources\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/05\/design-agentic-retrieval-with-azure-ai-search-knowledge-sources\/#primaryimage","url":"\/wp-content\/uploads\/2026\/07\/design-agentic-retrieval-with-azure-ai-search-knowledge-sources.png","contentUrl":"\/wp-content\/uploads\/2026\/07\/design-agentic-retrieval-with-azure-ai-search-knowledge-sources.png","width":1536,"height":1024},{"@type":"BreadcrumbList","@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/05\/design-agentic-retrieval-with-azure-ai-search-knowledge-sources\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.cloudproinc.com.au\/"},{"@type":"ListItem","position":2,"name":"Design Agentic Retrieval with Azure AI Search Knowledge Sources"}]},{"@type":"WebSite","@id":"https:\/\/www.cloudproinc.com.au\/#website","url":"https:\/\/www.cloudproinc.com.au\/","name":"Cloud Pro Inc - CPI Consulting Pty Ltd","description":"Cloud, AI &amp; Cybersecurity Consulting | Melbourne","publisher":{"@id":"https:\/\/www.cloudproinc.com.au\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.cloudproinc.com.au\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.cloudproinc.com.au\/#organization","name":"Cloud Pro Inc - Cloud Pro Inc - CPI Consulting Pty Ltd","url":"https:\/\/www.cloudproinc.com.au\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.cloudproinc.com.au\/#\/schema\/logo\/image\/","url":"\/wp-content\/uploads\/2022\/01\/favfinalfile.png","contentUrl":"\/wp-content\/uploads\/2022\/01\/favfinalfile.png","width":500,"height":500,"caption":"Cloud Pro Inc - Cloud Pro Inc - CPI Consulting Pty Ltd"},"image":{"@id":"https:\/\/www.cloudproinc.com.au\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.cloudproinc.com.au\/#\/schema\/person\/192eeeb0ce91062126ce3822ae88fe6e","name":"CPI Staff","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/2d96eeb53b791d92c8c50dd667e3beec92c93253bb6ff21c02cfa8ca73665c70?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/2d96eeb53b791d92c8c50dd667e3beec92c93253bb6ff21c02cfa8ca73665c70?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/2d96eeb53b791d92c8c50dd667e3beec92c93253bb6ff21c02cfa8ca73665c70?s=96&d=mm&r=g","caption":"CPI Staff"},"sameAs":["http:\/\/www.cloudproinc.com.au"],"url":"https:\/\/www.cloudproinc.com.au\/index.php\/author\/cpiadmin\/"}]}},"jetpack_featured_media_url":"\/wp-content\/uploads\/2026\/07\/design-agentic-retrieval-with-azure-ai-search-knowledge-sources.png","jetpack-related-posts":[{"id":53359,"url":"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/05\/05\/customizing-a-blazor-9-web-app-add-a-logo-and-change-the-sidebar-color\/","url_meta":{"origin":57764,"position":0},"title":"Customizing a Blazor 9 Web App: Add a Logo and Change the Sidebar Color","author":"CPI Staff","date":"May 5, 2025","format":false,"excerpt":"Blazor 9 introduces a powerful, component-driven architecture that makes it easier than ever to build interactive and modern web applications using .NET. In this tutorial, we'll walk you through how to personalize your Blazor web app by adding a custom logo and changing the sidebar color to give your app\u2026","rel":"","context":"In &quot;.NET&quot;","block_context":{"text":".NET","link":"https:\/\/www.cloudproinc.com.au\/index.php\/category\/net\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2025\/05\/Add-bootstrap-logo.png","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2025\/05\/Add-bootstrap-logo.png 1x, \/wp-content\/uploads\/2025\/05\/Add-bootstrap-logo.png 1.5x, \/wp-content\/uploads\/2025\/05\/Add-bootstrap-logo.png 2x, \/wp-content\/uploads\/2025\/05\/Add-bootstrap-logo.png 3x, \/wp-content\/uploads\/2025\/05\/Add-bootstrap-logo.png 4x"},"classes":[]},{"id":53066,"url":"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/01\/23\/enable-microsoft-365-insider-using-intune\/","url_meta":{"origin":57764,"position":1},"title":"Enable Microsoft 365 Insider Using Intune","author":"CPI Staff","date":"January 23, 2025","format":false,"excerpt":"In this blog post, we will show you how to set up Microsoft 365 Insider using Microsoft Intune. Estimated reading time: 4 minutes Table of contentsEnable Microsoft 365 Insider Using IntuneSync and Check VersionSimilar Posts This process will guide you through creating and assigning a configuration profile that changes the\u2026","rel":"","context":"In &quot;Blog&quot;","block_context":{"text":"Blog","link":"https:\/\/www.cloudproinc.com.au\/index.php\/category\/blog\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2025\/01\/Enable-Microsoft-365-Insider-Using-Intune.webp","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2025\/01\/Enable-Microsoft-365-Insider-Using-Intune.webp 1x, \/wp-content\/uploads\/2025\/01\/Enable-Microsoft-365-Insider-Using-Intune.webp 1.5x, \/wp-content\/uploads\/2025\/01\/Enable-Microsoft-365-Insider-Using-Intune.webp 2x"},"classes":[]},{"id":327,"url":"https:\/\/www.cloudproinc.com.au\/index.php\/2024\/07\/03\/configure-email-security-quarantine-policy-in-microsoft-365\/","url_meta":{"origin":57764,"position":2},"title":"Configure Email Security Quarantine Policy in Microsoft 365","author":"CPI Staff","date":"July 3, 2024","format":false,"excerpt":"In this Microsoft 365 Security blog post, we will explain how to configure email security quarantine policy in Microsoft 365. Microsoft 365 email quarantine is a security feature that isolates suspicious emails detected by spam filters and phishing detectors from passing in. Once an email is detected and isolated, it\u2026","rel":"","context":"In &quot;Blog&quot;","block_context":{"text":"Blog","link":"https:\/\/www.cloudproinc.com.au\/index.php\/category\/blog\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2024\/07\/Configure-Email-Security-Quarantine-Policy-in-Microsoft-365.webp","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2024\/07\/Configure-Email-Security-Quarantine-Policy-in-Microsoft-365.webp 1x, \/wp-content\/uploads\/2024\/07\/Configure-Email-Security-Quarantine-Policy-in-Microsoft-365.webp 1.5x, \/wp-content\/uploads\/2024\/07\/Configure-Email-Security-Quarantine-Policy-in-Microsoft-365.webp 2x"},"classes":[]},{"id":53293,"url":"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/04\/25\/openai-gpt-image-1-blazor-net-image-generator-web-app\/","url_meta":{"origin":57764,"position":3},"title":"OpenAI GPT-Image-1 Blazor .NET Image Generator Web App","author":"CPI Staff","date":"April 25, 2025","format":false,"excerpt":"In this blog post, we will present the OpenAI GPT-Image-1 Blazor .NET Image Generator Web App, a tool designed to demonstrate the capabilities of OpenAI's latest image generation API. \u00a0What Does the Web App Do? This Blazor-based web application leverages OpenAI's GPT-Image-1 model to generate stunning, high-quality images based on\u2026","rel":"","context":"In &quot;.NET&quot;","block_context":{"text":".NET","link":"https:\/\/www.cloudproinc.com.au\/index.php\/category\/net\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2025\/04\/OpenAI-GPT-image-1-image-API.png","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2025\/04\/OpenAI-GPT-image-1-image-API.png 1x, \/wp-content\/uploads\/2025\/04\/OpenAI-GPT-image-1-image-API.png 1.5x, \/wp-content\/uploads\/2025\/04\/OpenAI-GPT-image-1-image-API.png 2x"},"classes":[]},{"id":56828,"url":"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/11\/26\/customise-voice-synthesis-with-azure-speech-and-ssml\/","url_meta":{"origin":57764,"position":4},"title":"Customise Voice Synthesis With Azure Speech And SSML","author":"CPI Staff","date":"November 26, 2025","format":false,"excerpt":"Learn how to customise synthetic voices using Azure Cognitive Services and SSML to deliver clearer, more natural text-to-speech experiences in your applications.","rel":"","context":"In &quot;Azure AI Services&quot;","block_context":{"text":"Azure AI Services","link":"https:\/\/www.cloudproinc.com.au\/index.php\/category\/azure-ai-services\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2025\/11\/customise-voice-synthesis-with-azure-speech-and-ssml.png","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2025\/11\/customise-voice-synthesis-with-azure-speech-and-ssml.png 1x, \/wp-content\/uploads\/2025\/11\/customise-voice-synthesis-with-azure-speech-and-ssml.png 1.5x, \/wp-content\/uploads\/2025\/11\/customise-voice-synthesis-with-azure-speech-and-ssml.png 2x, \/wp-content\/uploads\/2025\/11\/customise-voice-synthesis-with-azure-speech-and-ssml.png 3x, \/wp-content\/uploads\/2025\/11\/customise-voice-synthesis-with-azure-speech-and-ssml.png 4x"},"classes":[]},{"id":53390,"url":"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/05\/18\/add-an-eye-catching-pop-up-to-your-sharepoint-online-site\/","url_meta":{"origin":57764,"position":5},"title":"Add an Eye-Catching Pop-Up to Your SharePoint Online Site","author":"CPI Staff","date":"May 18, 2025","format":false,"excerpt":"In this SharePoint Online blog post we will show how to Add an Eye-Catching Pop-Up to Your SharePoint Online Site. Looking for a simple way to draw attention to important messages on your SharePoint Online site? Whether you're launching a new tool, announcing a policy change, or just want to\u2026","rel":"","context":"In &quot;Blog&quot;","block_context":{"text":"Blog","link":"https:\/\/www.cloudproinc.com.au\/index.php\/category\/blog\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2025\/05\/Show-SharePoint-Online-popup-message.png","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2025\/05\/Show-SharePoint-Online-popup-message.png 1x, \/wp-content\/uploads\/2025\/05\/Show-SharePoint-Online-popup-message.png 1.5x, \/wp-content\/uploads\/2025\/05\/Show-SharePoint-Online-popup-message.png 2x"},"classes":[]}],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.cloudproinc.com.au\/index.php\/wp-json\/wp\/v2\/posts\/57764","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.cloudproinc.com.au\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.cloudproinc.com.au\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.cloudproinc.com.au\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.cloudproinc.com.au\/index.php\/wp-json\/wp\/v2\/comments?post=57764"}],"version-history":[{"count":1,"href":"https:\/\/www.cloudproinc.com.au\/index.php\/wp-json\/wp\/v2\/posts\/57764\/revisions"}],"predecessor-version":[{"id":57766,"href":"https:\/\/www.cloudproinc.com.au\/index.php\/wp-json\/wp\/v2\/posts\/57764\/revisions\/57766"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.cloudproinc.com.au\/index.php\/wp-json\/wp\/v2\/media\/57767"}],"wp:attachment":[{"href":"https:\/\/www.cloudproinc.com.au\/index.php\/wp-json\/wp\/v2\/media?parent=57764"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.cloudproinc.com.au\/index.php\/wp-json\/wp\/v2\/categories?post=57764"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.cloudproinc.com.au\/index.php\/wp-json\/wp\/v2\/tags?post=57764"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}