{"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:\/\/cloudproinc.azurewebsites.net\/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 property=\"og:image\" content=\"https:\/\/cloudproinc.azurewebsites.net\/wp-content\/uploads\/2026\/07\/design-agentic-retrieval-with-azure-ai-search-knowledge-sources.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1536\" \/>\n\t<meta property=\"og:image:height\" content=\"1024\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\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:\\\/\\\/cloudproinc.azurewebsites.net\\\/#\\\/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:\\\/\\\/cloudproinc.azurewebsites.net\\\/#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:\\\/\\\/cloudproinc.azurewebsites.net\\\/#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:\\\/\\\/cloudproinc.azurewebsites.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Design Agentic Retrieval with Azure AI Search Knowledge Sources\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/#website\",\"url\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/\",\"name\":\"Cloud Pro Inc - CPI Consulting Pty Ltd\",\"description\":\"Cloud, AI &amp; Cybersecurity Consulting | Melbourne\",\"publisher\":{\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/#organization\",\"name\":\"Cloud Pro Inc - Cloud Pro Inc - CPI Consulting Pty Ltd\",\"url\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/#\\\/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:\\\/\\\/cloudproinc.azurewebsites.net\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/#\\\/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:\\\/\\\/cloudproinc.azurewebsites.net\\\/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","og_image":[{"width":1536,"height":1024,"url":"https:\/\/cloudproinc.azurewebsites.net\/wp-content\/uploads\/2026\/07\/design-agentic-retrieval-with-azure-ai-search-knowledge-sources.png","type":"image\/png"}],"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:\/\/cloudproinc.azurewebsites.net\/#\/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:\/\/cloudproinc.azurewebsites.net\/#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:\/\/cloudproinc.azurewebsites.net\/#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:\/\/cloudproinc.azurewebsites.net\/"},{"@type":"ListItem","position":2,"name":"Design Agentic Retrieval with Azure AI Search Knowledge Sources"}]},{"@type":"WebSite","@id":"https:\/\/cloudproinc.azurewebsites.net\/#website","url":"https:\/\/cloudproinc.azurewebsites.net\/","name":"Cloud Pro Inc - CPI Consulting Pty Ltd","description":"Cloud, AI &amp; Cybersecurity Consulting | Melbourne","publisher":{"@id":"https:\/\/cloudproinc.azurewebsites.net\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/cloudproinc.azurewebsites.net\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/cloudproinc.azurewebsites.net\/#organization","name":"Cloud Pro Inc - Cloud Pro Inc - CPI Consulting Pty Ltd","url":"https:\/\/cloudproinc.azurewebsites.net\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cloudproinc.azurewebsites.net\/#\/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:\/\/cloudproinc.azurewebsites.net\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/cloudproinc.azurewebsites.net\/#\/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:\/\/cloudproinc.azurewebsites.net\/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":57749,"url":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/2026\/07\/03\/build-permission-aware-knowledge-bases-with-foundry-iq-and-azure-ai\/","url_meta":{"origin":57764,"position":0},"title":"Build Permission Aware Knowledge Bases With Foundry IQ and Azure AI","author":"CPI Staff","date":"July 3, 2026","format":false,"excerpt":"Foundry IQ and Azure AI Search help organisations build AI knowledge bases that respect user permissions, reduce risk, and return answers grounded in company data.","rel":"","context":"In &quot;Blog&quot;","block_context":{"text":"Blog","link":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/category\/blog\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2026\/07\/build-permission-aware-knowledge-bases-with-foundry-iq-and-azure-ai.png","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2026\/07\/build-permission-aware-knowledge-bases-with-foundry-iq-and-azure-ai.png 1x, \/wp-content\/uploads\/2026\/07\/build-permission-aware-knowledge-bases-with-foundry-iq-and-azure-ai.png 1.5x, \/wp-content\/uploads\/2026\/07\/build-permission-aware-knowledge-bases-with-foundry-iq-and-azure-ai.png 2x, \/wp-content\/uploads\/2026\/07\/build-permission-aware-knowledge-bases-with-foundry-iq-and-azure-ai.png 3x, \/wp-content\/uploads\/2026\/07\/build-permission-aware-knowledge-bases-with-foundry-iq-and-azure-ai.png 4x"},"classes":[]},{"id":56797,"url":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/2025\/11\/19\/boost-accuracy-with-azure-ai-groundedness\/","url_meta":{"origin":57764,"position":1},"title":"Boost Accuracy with Azure AI Groundedness","author":"CPI Staff","date":"November 19, 2025","format":false,"excerpt":"Learn how Azure AI Groundedness helps your cloud applications return accurate, verifiable answers by tightly linking generative AI to your data and tools.","rel":"","context":"In &quot;Azure&quot;","block_context":{"text":"Azure","link":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/category\/microsoft-azure\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2025\/11\/boost-accuracy-with-azure-ai-groundedness-for-cloud-apps.png","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2025\/11\/boost-accuracy-with-azure-ai-groundedness-for-cloud-apps.png 1x, \/wp-content\/uploads\/2025\/11\/boost-accuracy-with-azure-ai-groundedness-for-cloud-apps.png 1.5x, \/wp-content\/uploads\/2025\/11\/boost-accuracy-with-azure-ai-groundedness-for-cloud-apps.png 2x, \/wp-content\/uploads\/2025\/11\/boost-accuracy-with-azure-ai-groundedness-for-cloud-apps.png 3x, \/wp-content\/uploads\/2025\/11\/boost-accuracy-with-azure-ai-groundedness-for-cloud-apps.png 4x"},"classes":[]},{"id":57604,"url":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/2026\/06\/01\/claude-opus-4-8-in-azure-ai-foundry\/","url_meta":{"origin":57764,"position":2},"title":"Claude Opus 4.8 in Azure AI Foundry","author":"CPI Staff","date":"June 1, 2026","format":false,"excerpt":"Anthropic\u2019s Claude Opus 4.8 is now available in Microsoft Azure AI Foundry, giving organisations another frontier model option inside the Azure ecosystem. For Australian businesses already standardising on Microsoft cloud services, this matters for a simple reason: AI adoption is moving from experimentation to production. The question is no longer\u2026","rel":"","context":"In &quot;AI Governance &amp; Risk Management&quot;","block_context":{"text":"AI Governance &amp; Risk Management","link":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/category\/ai-governance-risk-management\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2026\/06\/claude-opus-48-in-azure-ai-foundry.png","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2026\/06\/claude-opus-48-in-azure-ai-foundry.png 1x, \/wp-content\/uploads\/2026\/06\/claude-opus-48-in-azure-ai-foundry.png 1.5x, \/wp-content\/uploads\/2026\/06\/claude-opus-48-in-azure-ai-foundry.png 2x, \/wp-content\/uploads\/2026\/06\/claude-opus-48-in-azure-ai-foundry.png 3x, \/wp-content\/uploads\/2026\/06\/claude-opus-48-in-azure-ai-foundry.png 4x"},"classes":[]},{"id":53836,"url":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/2025\/09\/15\/architecture-of-rag-building-reliable-retrieval-augmented-ai\/","url_meta":{"origin":57764,"position":3},"title":"Architecture of RAG Building Reliable Retrieval Augmented AI","author":"CPI Staff","date":"September 15, 2025","format":false,"excerpt":"A practical guide to RAG architecture, from data ingestion to retrieval, generation, and evaluation, with patterns, pitfalls, and a minimal Python example you can adapt to your stack.","rel":"","context":"In &quot;Blog&quot;","block_context":{"text":"Blog","link":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/category\/blog\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2025\/09\/architecture-of-rag-building-reliable-retrieval-augmented-ai.png","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2025\/09\/architecture-of-rag-building-reliable-retrieval-augmented-ai.png 1x, \/wp-content\/uploads\/2025\/09\/architecture-of-rag-building-reliable-retrieval-augmented-ai.png 1.5x, \/wp-content\/uploads\/2025\/09\/architecture-of-rag-building-reliable-retrieval-augmented-ai.png 2x, \/wp-content\/uploads\/2025\/09\/architecture-of-rag-building-reliable-retrieval-augmented-ai.png 3x, \/wp-content\/uploads\/2025\/09\/architecture-of-rag-building-reliable-retrieval-augmented-ai.png 4x"},"classes":[]},{"id":57591,"url":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/2026\/05\/28\/designing-secure-ai-agent-infrastructure-on-azure\/","url_meta":{"origin":57764,"position":4},"title":"Designing Secure AI Agent Infrastructure on Azure","author":"CPI Staff","date":"May 28, 2026","format":false,"excerpt":"AI agents are moving from demos into production workflows. They can read documents, call APIs, query databases, create tickets, summarise customer history, and trigger business processes. That power creates a new infrastructure problem for Australian organisations: an AI agent is not just a chatbot. It is an application runtime, an\u2026","rel":"","context":"In &quot;AI Governance &amp; Risk Management&quot;","block_context":{"text":"AI Governance &amp; Risk Management","link":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/category\/ai-governance-risk-management\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2026\/05\/designing-secure-ai-agent-infrastructure-on-azure.png","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2026\/05\/designing-secure-ai-agent-infrastructure-on-azure.png 1x, \/wp-content\/uploads\/2026\/05\/designing-secure-ai-agent-infrastructure-on-azure.png 1.5x, \/wp-content\/uploads\/2026\/05\/designing-secure-ai-agent-infrastructure-on-azure.png 2x, \/wp-content\/uploads\/2026\/05\/designing-secure-ai-agent-infrastructure-on-azure.png 3x, \/wp-content\/uploads\/2026\/05\/designing-secure-ai-agent-infrastructure-on-azure.png 4x"},"classes":[]},{"id":56798,"url":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/2025\/11\/26\/block-prompt-attacks-with-azure-ai-services\/","url_meta":{"origin":57764,"position":5},"title":"Block Prompt Attacks with Azure AI Services","author":"CPI Staff","date":"November 26, 2025","format":false,"excerpt":"Learn how to block prompt injection and jailbreak attacks using Azure AI, with practical patterns for safe, production-ready AI applications on Microsoft Azure.","rel":"","context":"In &quot;Azure AI Services&quot;","block_context":{"text":"Azure AI Services","link":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/category\/azure-ai-services\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2025\/11\/block-prompt-attacks-with-azure-ai-in-real-world-apps.png","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2025\/11\/block-prompt-attacks-with-azure-ai-in-real-world-apps.png 1x, \/wp-content\/uploads\/2025\/11\/block-prompt-attacks-with-azure-ai-in-real-world-apps.png 1.5x, \/wp-content\/uploads\/2025\/11\/block-prompt-attacks-with-azure-ai-in-real-world-apps.png 2x, \/wp-content\/uploads\/2025\/11\/block-prompt-attacks-with-azure-ai-in-real-world-apps.png 3x, \/wp-content\/uploads\/2025\/11\/block-prompt-attacks-with-azure-ai-in-real-world-apps.png 4x"},"classes":[]}],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/posts\/57764","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/comments?post=57764"}],"version-history":[{"count":1,"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/posts\/57764\/revisions"}],"predecessor-version":[{"id":57766,"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/posts\/57764\/revisions\/57766"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/media\/57767"}],"wp:attachment":[{"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/media?parent=57764"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/categories?post=57764"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/tags?post=57764"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}