{"id":56797,"date":"2025-11-19T06:36:39","date_gmt":"2025-11-18T20:36:39","guid":{"rendered":"https:\/\/www.cloudproinc.com.au\/?p=56797"},"modified":"2025-11-19T06:36:42","modified_gmt":"2025-11-18T20:36:42","slug":"boost-accuracy-with-azure-ai-groundedness","status":"publish","type":"post","link":"https:\/\/cloudproinc.com.au\/index.php\/2025\/11\/19\/boost-accuracy-with-azure-ai-groundedness\/","title":{"rendered":"Boost Accuracy with Azure AI Groundedness"},"content":{"rendered":"\n<p>In this blog post Boost Accuracy with Azure AI Groundedness for Cloud Apps we will explore how to make your Azure AI solutions more accurate, verifiable, and production-ready by grounding them in your data and systems.<\/p>\n\n\n\n<!--more-->\n\n\n\n<p>Generative AI is powerful, but it has a habit of sounding confident even when it is wrong. <em>Boost Accuracy with Azure AI Groundedness for Cloud Apps<\/em> focuses on how to reduce these hallucinations by tying model outputs tightly to your data, APIs, and business rules using Azure AI Studio and related services.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-what-is-groundedness-and-why-it-matters\">What is groundedness and why it matters<\/h2>\n\n\n\n<p><strong>Groundedness<\/strong> means that an AI system\u2019s answers are clearly supported by reliable sources, such as your documents, databases, or APIs. A grounded response is:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Traceable<\/strong> \u2013 you can see where the answer came from<\/li>\n\n\n\n<li><strong>Verifiable<\/strong> \u2013 you can check the sources and confirm the facts<\/li>\n\n\n\n<li><strong>Repeatable<\/strong> \u2013 the same question produces a similar answer when the data has not changed<\/li>\n<\/ul>\n\n\n\n<p>Without groundedness, AI assistants will sometimes invent facts, misquote policies, or provide outdated information. For technical teams and technical managers, this is more than an annoyance \u2013 it can create compliance issues, bad customer experiences, and support overhead.<\/p>\n\n\n\n<p><a href=\"https:\/\/www.cloudproinc.com.au\/index.php\/category\/azure-ai-services\/\">Azure AI<\/a> tackles this using a combination of prompt design, retrieval, and evaluation tools that make it easier to keep models aligned with your data and to measure how well they are doing.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-the-technology-behind-azure-ai-groundedness\">The technology behind Azure AI Groundedness<\/h2>\n\n\n\n<p>Under the hood, groundedness in Azure AI is driven by three main ideas:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-1-retrieval-augmented-generation-rag\">1. Retrieval-Augmented Generation (RAG)<\/h3>\n\n\n\n<p>RAG is the architecture where a large language model (LLM) first retrieves relevant context from a data source, then uses that context to generate an answer. In Azure AI, this typically looks like:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>User asks a question to your app.<\/li>\n\n\n\n<li>Your app sends the question to a <strong>vector index<\/strong> (e.g., Azure AI Search) built over your content.<\/li>\n\n\n\n<li>Top matching passages, documents, or knowledge base entries are retrieved.<\/li>\n\n\n\n<li>The LLM receives both the user question and the retrieved content as context.<\/li>\n\n\n\n<li>The LLM answers, instructed to rely on that context and cite it where possible.<\/li>\n<\/ol>\n\n\n\n<p>This keeps the model from guessing beyond what your data supports, and allows you to update answers just by updating the index.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-2-system-prompts-and-safety-configuration\">2. System prompts and safety configuration<\/h3>\n\n\n\n<p>Azure OpenAI and Azure AI Studio let you define a <strong>system message<\/strong> that controls how the model behaves. You can instruct the model to:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Use only the provided sources<\/li>\n\n\n\n<li>Refuse to answer when information is missing<\/li>\n\n\n\n<li>Include citations and reference IDs in replies<\/li>\n<\/ul>\n\n\n\n<p>Combined with Azure\u2019s safety features (content filters, rate limits, and logging), this shapes the model into a reliable, policy-aware assistant rather than a free-form chatbot.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-3-groundedness-evaluation\">3. Groundedness evaluation<\/h3>\n\n\n\n<p>Azure AI also provides <strong>evaluation tools<\/strong> to test how grounded your system is. These tools can use another model to score your AI\u2019s responses on dimensions such as:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Groundedness<\/strong> \u2013 is the answer supported by the provided sources?<\/li>\n\n\n\n<li><strong>Relevance<\/strong> \u2013 how well does it address the user\u2019s question?<\/li>\n\n\n\n<li><strong>Coherence<\/strong> \u2013 is the answer clear and logically structured?<\/li>\n<\/ul>\n\n\n\n<p>Instead of guessing whether your AI is \u201cgood enough,\u201d you can run batches of test queries, measure groundedness, and improve iteratively.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-how-groundedness-fits-into-azure-solutions\">How groundedness fits into Azure solutions<\/h2>\n\n\n\n<p>In a typical Azure-based AI application, groundedness weaves through several services:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Azure AI Studio<\/strong> \u2013 design, prototype, and evaluate your AI flow<\/li>\n\n\n\n<li><strong>Azure OpenAI Service<\/strong> \u2013 provides GPT-family models and system prompt configuration<\/li>\n\n\n\n<li><strong>Azure AI Search<\/strong> \u2013 stores your content as a hybrid or vector index for retrieval<\/li>\n\n\n\n<li><strong>Azure Storage or Cosmos DB<\/strong> \u2013 keeps documents and structured data<\/li>\n\n\n\n<li><strong>Application code<\/strong> (e.g., .NET, Python, Node) \u2013 orchestrates user requests, retrieval, and responses<\/li>\n<\/ul>\n\n\n\n<p>CloudPro and similar Azure partners often use this pattern to build helpdesk copilots, policy assistants, and internal knowledge tools that must be right most of the time and provably so.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-design-a-grounded-ai-assistant-step-by-step\">Design a grounded AI assistant step by step<\/h2>\n\n\n\n<p>The steps below walk through a high-level pattern you can adapt for your environment.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-step-1-identify-critical-use-cases-and-risk\">Step 1 \u2013 Identify critical use cases and risk<\/h3>\n\n\n\n<p>Start by choosing where accuracy matters most. Common cases:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Employee policy Q&amp;A (HR, IT, compliance)<\/li>\n\n\n\n<li>Customer-facing support and troubleshooting<\/li>\n\n\n\n<li>Internal engineering knowledge bases and runbooks<\/li>\n<\/ul>\n\n\n\n<p>For each, list:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>What must be correct (numbers, dates, policy clauses)<\/li>\n\n\n\n<li>What can be approximate (summaries, explanations)<\/li>\n\n\n\n<li>What the AI must <strong>never<\/strong> invent (legal terms, pricing, security guidance)<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-step-2-prepare-content-for-retrieval\">Step 2 \u2013 Prepare content for retrieval<\/h3>\n\n\n\n<p>Groundedness is only as good as the content you provide. Good practices:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Store source documents in <strong>Azure Blob Storage<\/strong> or <strong>SharePoint<\/strong>.<\/li>\n\n\n\n<li>Split large documents into smaller chunks (e.g., 500\u20131500 tokens) with clear headings.<\/li>\n\n\n\n<li>Enrich documents with metadata (department, region, effective date, product line).<\/li>\n\n\n\n<li>Index them with <strong>Azure AI Search<\/strong> using vector or hybrid search.<\/li>\n<\/ul>\n\n\n\n<p>This allows your AI to retrieve focused, relevant passages rather than entire PDFs or wiki pages.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-step-3-build-a-retrieval-augmented-flow\">Step 3 \u2013 Build a retrieval-augmented flow<\/h3>\n\n\n\n<p>At runtime, your app should follow a consistent pattern:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Receive<\/strong> the user question.<\/li>\n\n\n\n<li><strong>Call Azure AI Search<\/strong> with a semantic or vector query.<\/li>\n\n\n\n<li><strong>Select top passages<\/strong> and optionally post-filter by metadata.<\/li>\n\n\n\n<li><strong>Construct a prompt<\/strong> that includes system instructions, user question, and retrieved sources.<\/li>\n\n\n\n<li><strong>Send the prompt<\/strong> to Azure OpenAI with instructions to stay within the context.<\/li>\n<\/ol>\n\n\n\n<p>Here is a simplified Python example (structure, not production-ready code):<\/p>\n\n\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-18caa906ec0bf6aec52d772d5fe1ec8a\"><code>from azure.search.documents import SearchClient\nfrom azure.identity import DefaultAzureCredential\nfrom openai import AzureOpenAI\n\nsearch_client = SearchClient(\n    endpoint=\"https:\/\/&lt;your-search&gt;.search.windows.net\",\n    index_name=\"knowledge-index\",\n    credential=DefaultAzureCredential()\n)\n\nopenai_client = AzureOpenAI(\n    azure_endpoint=\"https:\/\/&lt;your-openai&gt;.openai.azure.com\/\",\n    api_version=\"2024-02-15-preview\",\n    api_key=\"&lt;your-key&gt;\"\n)\n\nSYSTEM_PROMPT = \"\"\"You are a helpful assistant for our organisation.\nUse only the provided context to answer. If the answer is not in the\ncontext, say you do not know. Always reference the document IDs you used.\n\"\"\"\n\nuser_question = \"What is our policy for working from home in NSW?\"\n\n# 1. Retrieve context\nresults = search_client.search(\n    search_text=user_question,\n    top=5,\n    query_type=\"semantic\"\n)\n\ncontext_snippets = &#91;]\nfor doc in results:\n    context_snippets.append(f\"&#91;docId={doc&#91;'id']}]\\n{doc&#91;'content']}\")\n\ncontext = \"\\n\\n\".join(context_snippets)\n\n# 2. Call Azure OpenAI\nresponse = openai_client.chat.completions.create(\n    model=\"gpt-4o\",\n    messages=&#91;\n        {\"role\": \"system\", \"content\": SYSTEM_PROMPT},\n        {\"role\": \"user\", \"content\": user_question},\n        {\"role\": \"system\", \"content\": f\"Context:\\n{context}\"}\n    ],\n    temperature=0.1\n)\n\nanswer = response.choices&#91;0].message.content\nprint(answer)\n<\/code><\/pre>\n\n\n\n<p>Key groundedness features in this pattern:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The model gets <strong>explicit context<\/strong> from your index.<\/li>\n\n\n\n<li>The system prompt instructs the model to <strong>refuse to guess<\/strong>.<\/li>\n\n\n\n<li>Document IDs are passed so the model can <strong>cite sources<\/strong>.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-step-4-use-azure-ai-evaluation-to-measure-groundedness\">Step 4 \u2013 Use Azure AI evaluation to measure groundedness<\/h3>\n\n\n\n<p>After your prototype works, you need to quantify its accuracy. Azure AI Studio supports:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Manual playground testing<\/strong> \u2013 interact with your flow and inspect responses.<\/li>\n\n\n\n<li><strong>Automated evaluations<\/strong> \u2013 run test sets of queries and let a model score responses.<\/li>\n<\/ul>\n\n\n\n<p>In an automated evaluation, you provide:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A set of test questions (manually created or sampled from logs)<\/li>\n\n\n\n<li>Reference documents or expected answers<\/li>\n\n\n\n<li>The model\u2019s responses generated via your pipeline<\/li>\n<\/ul>\n\n\n\n<p>Azure then uses an evaluator model to score groundedness, coherence, and relevance. The groundedness score answers: \u201cDid the AI stay within the evidence we gave it?\u201d<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-step-5-close-the-loop-and-improve\">Step 5 \u2013 Close the loop and improve<\/h3>\n\n\n\n<p>Once you can measure groundedness, you can improve it systematically:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Tighten prompts<\/strong> \u2013 be clearer that the model must not infer beyond the context.<\/li>\n\n\n\n<li><strong>Improve retrieval<\/strong> \u2013 adjust search parameters, chunk sizes, and metadata filters.<\/li>\n\n\n\n<li><strong>Curate test sets<\/strong> \u2013 add examples where the system previously hallucinated.<\/li>\n\n\n\n<li><strong>Introduce guardrails<\/strong> \u2013 for high-risk questions (legal, financial, safety), escalate to a human or provide links to official documents instead of natural-language synthesis.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-practical-tips-to-boost-groundedness-in-azure\">Practical tips to boost groundedness in Azure<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-1-turn-temperature-down\">1. Turn temperature down<\/h3>\n\n\n\n<p>Creative variance is not your friend when you care about accuracy. For grounded Q&amp;A, use low <code>temperature<\/code> values (e.g., 0\u20130.2). This makes the model more deterministic and closer to the evidence.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-2-ask-for-quotes-and-citations\">2. Ask for quotes and citations<\/h3>\n\n\n\n<p>In your system prompt, ask the model to quote or reference the relevant passage and include document IDs or URLs. For example:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>When you answer, list the documentId values you used at the end\nunder a heading \"Sources\". If multiple documents conflict, say so\nexplicitly and do not guess.\n<\/code><\/pre>\n\n\n\n<p>This creates traceability and builds user trust.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-3-separate-facts-from-opinions\">3. Separate facts from opinions<\/h3>\n\n\n\n<p>If your assistant sometimes needs to explain or hypothesise, clearly separate grounded facts from model opinions. For example:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>First, summarise what the documents say using a heading \"What the\npolicy says\". Then, optionally provide your reasoning or suggestions\nunder \"Additional guidance\".\n<\/code><\/pre>\n\n\n\n<p>This makes it obvious where the AI is extrapolating beyond strict source material.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-4-handle-no-answer-gracefully\">4. Handle \u201cno answer\u201d gracefully<\/h3>\n\n\n\n<p>A well-grounded system will sometimes say, \u201cI don\u2019t know based on the provided information.\u201d Instead of treating that as a failure:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Offer a link to a relevant search page or contact channel.<\/li>\n\n\n\n<li>Log the question for content gap analysis.<\/li>\n\n\n\n<li>Consider adding that topic to your knowledge base or FAQ.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-5-log-prompts-context-and-outputs\">5. Log prompts, context, and outputs<\/h3>\n\n\n\n<p>For production systems, store:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>User queries<\/li>\n\n\n\n<li>Retrieved documents or snippets<\/li>\n\n\n\n<li>Final prompts sent to the model<\/li>\n\n\n\n<li>Model responses and evaluation scores<\/li>\n<\/ul>\n\n\n\n<p>This trace is invaluable for debugging and compliance, and it lets you replay real interactions when you refine your retrieval or prompts.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-where-cloudpro-style-partners-can-help\">Where CloudPro-style partners can help<\/h2>\n\n\n\n<p>Groundedness is not just a checkbox; it is an ongoing practice across architecture, data, and operations. Organisations often need help with:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Designing secure, compliant Azure architectures for AI workloads<\/li>\n\n\n\n<li>Preparing content, indexing, and metadata for high-quality retrieval<\/li>\n\n\n\n<li>Implementing evaluation pipelines and dashboards for groundedness<\/li>\n\n\n\n<li>Integrating AI assistants into existing apps, portals, and workflows<\/li>\n<\/ul>\n\n\n\n<p>Working with an Azure-focused team that understands both the technical stack and the business context can dramatically shorten time-to-value and reduce risk.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-next-steps\">Next steps<\/h2>\n\n\n\n<p>To move forward with groundedness in your own Azure environment:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Pick one high-impact, low-risk use case (e.g., internal IT FAQ).<\/li>\n\n\n\n<li>Index a curated set of documents with Azure AI Search.<\/li>\n\n\n\n<li>Build a simple RAG-based prototype in Azure AI Studio or code.<\/li>\n\n\n\n<li>Add system prompts that enforce groundedness and citations.<\/li>\n\n\n\n<li>Run evaluations, review groundedness scores, and iterate.<\/li>\n<\/ol>\n\n\n\n<p>Done well, Azure AI Groundedness turns generative AI from a clever demo into a dependable part of your cloud applications \u2013 one that your teams can trust, verify, and steadily improve.<\/p>\n\n\n\n<ul class=\"wp-block-yoast-seo-related-links yoast-seo-related-links\">\n<li><a href=\"https:\/\/www.cloudproinc.com.au\/index.php\/2024\/07\/05\/boosting-intune-machine-policy-updates-from-8-hours-to-30-minutes\/\">Boosting Intune Machine Policy Updates from 8 Hours to 30 Minutes<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/08\/22\/what-is-supervised-fine-tuning-sft\/\">What is Supervised Fine-Tuning (SFT)<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/cloudproinc.com.au\/index.php\/2025\/09\/25\/what-are-weights-in-ai-models\/\">What Are Weights in AI Models<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/04\/28\/upload-files-openai-dotnet-sdk-csharp\/\">How to Upload Files to OpenAI Storage with C#<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/cloudproinc.com.au\/index.php\/2025\/09\/25\/document-definition-in-langchain\/\">Document Definition in LangChain<\/a><\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>Learn how Azure AI Groundedness helps your cloud applications return accurate, verifiable answers by tightly linking generative AI to your data and tools.<\/p>\n","protected":false},"author":1,"featured_media":56802,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_yoast_wpseo_focuskw":"Boost Accuracy with Azure AI Groundedness","_yoast_wpseo_title":"","_yoast_wpseo_metadesc":"Enhance your Azure AI solutions. Boost accuracy with Azure AI groundedness for verifiable and production-ready cloud apps.","_yoast_wpseo_opengraph-title":"","_yoast_wpseo_opengraph-description":"","_yoast_wpseo_twitter-title":"","_yoast_wpseo_twitter-description":"","_et_pb_use_builder":"","_et_pb_old_content":"","_et_gb_content_width":"","_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[16,26,13],"tags":[],"class_list":["post-56797","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-microsoft-azure","category-azure-ai-services","category-blog"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.3 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Boost Accuracy with Azure AI Groundedness - CPI Consulting<\/title>\n<meta name=\"description\" content=\"Enhance your Azure AI solutions. Boost accuracy with Azure AI groundedness for verifiable and production-ready cloud apps.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/cloudproinc.com.au\/index.php\/2025\/11\/19\/boost-accuracy-with-azure-ai-groundedness\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Boost Accuracy with Azure AI Groundedness\" \/>\n<meta property=\"og:description\" content=\"Enhance your Azure AI solutions. Boost accuracy with Azure AI groundedness for verifiable and production-ready cloud apps.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/cloudproinc.com.au\/index.php\/2025\/11\/19\/boost-accuracy-with-azure-ai-groundedness\/\" \/>\n<meta property=\"og:site_name\" content=\"CPI Consulting\" \/>\n<meta property=\"article:published_time\" content=\"2025-11-18T20:36:39+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-11-18T20:36:42+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cloudproinc.com.au\/wp-content\/uploads\/2025\/11\/boost-accuracy-with-azure-ai-groundedness-for-cloud-apps.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: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=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/cloudproinc.com.au\\\/index.php\\\/2025\\\/11\\\/19\\\/boost-accuracy-with-azure-ai-groundedness\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/cloudproinc.com.au\\\/index.php\\\/2025\\\/11\\\/19\\\/boost-accuracy-with-azure-ai-groundedness\\\/\"},\"author\":{\"name\":\"CPI Staff\",\"@id\":\"https:\\\/\\\/cloudproinc.com.au\\\/#\\\/schema\\\/person\\\/192eeeb0ce91062126ce3822ae88fe6e\"},\"headline\":\"Boost Accuracy with Azure AI Groundedness\",\"datePublished\":\"2025-11-18T20:36:39+00:00\",\"dateModified\":\"2025-11-18T20:36:42+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/cloudproinc.com.au\\\/index.php\\\/2025\\\/11\\\/19\\\/boost-accuracy-with-azure-ai-groundedness\\\/\"},\"wordCount\":1476,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/cloudproinc.com.au\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/cloudproinc.com.au\\\/index.php\\\/2025\\\/11\\\/19\\\/boost-accuracy-with-azure-ai-groundedness\\\/#primaryimage\"},\"thumbnailUrl\":\"\\\/wp-content\\\/uploads\\\/2025\\\/11\\\/boost-accuracy-with-azure-ai-groundedness-for-cloud-apps.png\",\"articleSection\":[\"Azure\",\"Azure AI Services\",\"Blog\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/cloudproinc.com.au\\\/index.php\\\/2025\\\/11\\\/19\\\/boost-accuracy-with-azure-ai-groundedness\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/cloudproinc.com.au\\\/index.php\\\/2025\\\/11\\\/19\\\/boost-accuracy-with-azure-ai-groundedness\\\/\",\"url\":\"https:\\\/\\\/cloudproinc.com.au\\\/index.php\\\/2025\\\/11\\\/19\\\/boost-accuracy-with-azure-ai-groundedness\\\/\",\"name\":\"Boost Accuracy with Azure AI Groundedness - CPI Consulting\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/cloudproinc.com.au\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/cloudproinc.com.au\\\/index.php\\\/2025\\\/11\\\/19\\\/boost-accuracy-with-azure-ai-groundedness\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/cloudproinc.com.au\\\/index.php\\\/2025\\\/11\\\/19\\\/boost-accuracy-with-azure-ai-groundedness\\\/#primaryimage\"},\"thumbnailUrl\":\"\\\/wp-content\\\/uploads\\\/2025\\\/11\\\/boost-accuracy-with-azure-ai-groundedness-for-cloud-apps.png\",\"datePublished\":\"2025-11-18T20:36:39+00:00\",\"dateModified\":\"2025-11-18T20:36:42+00:00\",\"description\":\"Enhance your Azure AI solutions. Boost accuracy with Azure AI groundedness for verifiable and production-ready cloud apps.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/cloudproinc.com.au\\\/index.php\\\/2025\\\/11\\\/19\\\/boost-accuracy-with-azure-ai-groundedness\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/cloudproinc.com.au\\\/index.php\\\/2025\\\/11\\\/19\\\/boost-accuracy-with-azure-ai-groundedness\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/cloudproinc.com.au\\\/index.php\\\/2025\\\/11\\\/19\\\/boost-accuracy-with-azure-ai-groundedness\\\/#primaryimage\",\"url\":\"\\\/wp-content\\\/uploads\\\/2025\\\/11\\\/boost-accuracy-with-azure-ai-groundedness-for-cloud-apps.png\",\"contentUrl\":\"\\\/wp-content\\\/uploads\\\/2025\\\/11\\\/boost-accuracy-with-azure-ai-groundedness-for-cloud-apps.png\",\"width\":1536,\"height\":1024},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/cloudproinc.com.au\\\/index.php\\\/2025\\\/11\\\/19\\\/boost-accuracy-with-azure-ai-groundedness\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Boost Accuracy with Azure AI Groundedness\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/cloudproinc.com.au\\\/#website\",\"url\":\"https:\\\/\\\/cloudproinc.com.au\\\/\",\"name\":\"Cloud Pro Inc - CPI Consulting Pty Ltd\",\"description\":\"Cloud, AI &amp; Cybersecurity Consulting | Melbourne\",\"publisher\":{\"@id\":\"https:\\\/\\\/cloudproinc.com.au\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/cloudproinc.com.au\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/cloudproinc.com.au\\\/#organization\",\"name\":\"Cloud Pro Inc - Cloud Pro Inc - CPI Consulting Pty Ltd\",\"url\":\"https:\\\/\\\/cloudproinc.com.au\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/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:\\\/\\\/cloudproinc.com.au\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/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:\\\/\\\/cloudproinc.com.au\\\/index.php\\\/author\\\/cpiadmin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Boost Accuracy with Azure AI Groundedness - CPI Consulting","description":"Enhance your Azure AI solutions. Boost accuracy with Azure AI groundedness for verifiable and production-ready cloud apps.","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:\/\/cloudproinc.com.au\/index.php\/2025\/11\/19\/boost-accuracy-with-azure-ai-groundedness\/","og_locale":"en_US","og_type":"article","og_title":"Boost Accuracy with Azure AI Groundedness","og_description":"Enhance your Azure AI solutions. Boost accuracy with Azure AI groundedness for verifiable and production-ready cloud apps.","og_url":"https:\/\/cloudproinc.com.au\/index.php\/2025\/11\/19\/boost-accuracy-with-azure-ai-groundedness\/","og_site_name":"CPI Consulting","article_published_time":"2025-11-18T20:36:39+00:00","article_modified_time":"2025-11-18T20:36:42+00:00","og_image":[{"width":1536,"height":1024,"url":"https:\/\/cloudproinc.com.au\/wp-content\/uploads\/2025\/11\/boost-accuracy-with-azure-ai-groundedness-for-cloud-apps.png","type":"image\/png"}],"author":"CPI Staff","twitter_card":"summary_large_image","twitter_misc":{"Written by":"CPI Staff","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/cloudproinc.com.au\/index.php\/2025\/11\/19\/boost-accuracy-with-azure-ai-groundedness\/#article","isPartOf":{"@id":"https:\/\/cloudproinc.com.au\/index.php\/2025\/11\/19\/boost-accuracy-with-azure-ai-groundedness\/"},"author":{"name":"CPI Staff","@id":"https:\/\/cloudproinc.com.au\/#\/schema\/person\/192eeeb0ce91062126ce3822ae88fe6e"},"headline":"Boost Accuracy with Azure AI Groundedness","datePublished":"2025-11-18T20:36:39+00:00","dateModified":"2025-11-18T20:36:42+00:00","mainEntityOfPage":{"@id":"https:\/\/cloudproinc.com.au\/index.php\/2025\/11\/19\/boost-accuracy-with-azure-ai-groundedness\/"},"wordCount":1476,"commentCount":0,"publisher":{"@id":"https:\/\/cloudproinc.com.au\/#organization"},"image":{"@id":"https:\/\/cloudproinc.com.au\/index.php\/2025\/11\/19\/boost-accuracy-with-azure-ai-groundedness\/#primaryimage"},"thumbnailUrl":"\/wp-content\/uploads\/2025\/11\/boost-accuracy-with-azure-ai-groundedness-for-cloud-apps.png","articleSection":["Azure","Azure AI Services","Blog"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/cloudproinc.com.au\/index.php\/2025\/11\/19\/boost-accuracy-with-azure-ai-groundedness\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/cloudproinc.com.au\/index.php\/2025\/11\/19\/boost-accuracy-with-azure-ai-groundedness\/","url":"https:\/\/cloudproinc.com.au\/index.php\/2025\/11\/19\/boost-accuracy-with-azure-ai-groundedness\/","name":"Boost Accuracy with Azure AI Groundedness - CPI Consulting","isPartOf":{"@id":"https:\/\/cloudproinc.com.au\/#website"},"primaryImageOfPage":{"@id":"https:\/\/cloudproinc.com.au\/index.php\/2025\/11\/19\/boost-accuracy-with-azure-ai-groundedness\/#primaryimage"},"image":{"@id":"https:\/\/cloudproinc.com.au\/index.php\/2025\/11\/19\/boost-accuracy-with-azure-ai-groundedness\/#primaryimage"},"thumbnailUrl":"\/wp-content\/uploads\/2025\/11\/boost-accuracy-with-azure-ai-groundedness-for-cloud-apps.png","datePublished":"2025-11-18T20:36:39+00:00","dateModified":"2025-11-18T20:36:42+00:00","description":"Enhance your Azure AI solutions. Boost accuracy with Azure AI groundedness for verifiable and production-ready cloud apps.","breadcrumb":{"@id":"https:\/\/cloudproinc.com.au\/index.php\/2025\/11\/19\/boost-accuracy-with-azure-ai-groundedness\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/cloudproinc.com.au\/index.php\/2025\/11\/19\/boost-accuracy-with-azure-ai-groundedness\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cloudproinc.com.au\/index.php\/2025\/11\/19\/boost-accuracy-with-azure-ai-groundedness\/#primaryimage","url":"\/wp-content\/uploads\/2025\/11\/boost-accuracy-with-azure-ai-groundedness-for-cloud-apps.png","contentUrl":"\/wp-content\/uploads\/2025\/11\/boost-accuracy-with-azure-ai-groundedness-for-cloud-apps.png","width":1536,"height":1024},{"@type":"BreadcrumbList","@id":"https:\/\/cloudproinc.com.au\/index.php\/2025\/11\/19\/boost-accuracy-with-azure-ai-groundedness\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.cloudproinc.com.au\/"},{"@type":"ListItem","position":2,"name":"Boost Accuracy with Azure AI Groundedness"}]},{"@type":"WebSite","@id":"https:\/\/cloudproinc.com.au\/#website","url":"https:\/\/cloudproinc.com.au\/","name":"Cloud Pro Inc - CPI Consulting Pty Ltd","description":"Cloud, AI &amp; Cybersecurity Consulting | Melbourne","publisher":{"@id":"https:\/\/cloudproinc.com.au\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/cloudproinc.com.au\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/cloudproinc.com.au\/#organization","name":"Cloud Pro Inc - Cloud Pro Inc - CPI Consulting Pty Ltd","url":"https:\/\/cloudproinc.com.au\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/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:\/\/cloudproinc.com.au\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/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:\/\/cloudproinc.com.au\/index.php\/author\/cpiadmin\/"}]}},"jetpack_featured_media_url":"\/wp-content\/uploads\/2025\/11\/boost-accuracy-with-azure-ai-groundedness-for-cloud-apps.png","jetpack-related-posts":[{"id":56798,"url":"https:\/\/cloudproinc.com.au\/index.php\/2025\/11\/26\/block-prompt-attacks-with-azure-ai-services\/","url_meta":{"origin":56797,"position":0},"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.com.au\/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":[]},{"id":53466,"url":"https:\/\/cloudproinc.com.au\/index.php\/2025\/07\/09\/top-vs-code-extensions-for-developers-and-devops-engineers\/","url_meta":{"origin":56797,"position":1},"title":"Top VS Code Extensions for Developers and DevOps Engineers","author":"CPI Staff","date":"July 9, 2025","format":false,"excerpt":"If you're searching for the Top VS Code Extensions for Developers and DevOps Engineers, you've come to the right place. Visual Studio Code (VS Code) has become one of the most popular editors for modern software development due to its speed, flexibility, and the massive ecosystem of extensions. In this\u2026","rel":"","context":"In &quot;Blog&quot;","block_context":{"text":"Blog","link":"https:\/\/cloudproinc.com.au\/index.php\/category\/blog\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2025\/07\/image-13.png","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2025\/07\/image-13.png 1x, \/wp-content\/uploads\/2025\/07\/image-13.png 1.5x, \/wp-content\/uploads\/2025\/07\/image-13.png 2x"},"classes":[]},{"id":53846,"url":"https:\/\/cloudproinc.com.au\/index.php\/2025\/09\/15\/understanding-azure-phi-3\/","url_meta":{"origin":56797,"position":2},"title":"Understanding Azure Phi-3","author":"CPI Staff","date":"September 15, 2025","format":false,"excerpt":"Learn what Azure Phi-3 is, when to use it, and how to deploy and customize it across Azure, AKS, and the edge with practical steps and code snippets.","rel":"","context":"In &quot;Azure&quot;","block_context":{"text":"Azure","link":"https:\/\/cloudproinc.com.au\/index.php\/category\/microsoft-azure\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2025\/09\/understanding-azure-phi-3-and-how-to-use-it-across-cloud-and-edge.png","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2025\/09\/understanding-azure-phi-3-and-how-to-use-it-across-cloud-and-edge.png 1x, \/wp-content\/uploads\/2025\/09\/understanding-azure-phi-3-and-how-to-use-it-across-cloud-and-edge.png 1.5x, \/wp-content\/uploads\/2025\/09\/understanding-azure-phi-3-and-how-to-use-it-across-cloud-and-edge.png 2x, \/wp-content\/uploads\/2025\/09\/understanding-azure-phi-3-and-how-to-use-it-across-cloud-and-edge.png 3x, \/wp-content\/uploads\/2025\/09\/understanding-azure-phi-3-and-how-to-use-it-across-cloud-and-edge.png 4x"},"classes":[]},{"id":56780,"url":"https:\/\/cloudproinc.com.au\/index.php\/2025\/11\/10\/security-best-practices-for-azure-ai-services\/","url_meta":{"origin":56797,"position":3},"title":"Security Best Practices for Azure AI Services","author":"CPI Staff","date":"November 10, 2025","format":false,"excerpt":"Practical, step-by-step guidance to secure Azure AI services end to end\u2014identity, networks, data, prompts, and monitoring\u2014so your teams can innovate confidently without exposing your organisation.","rel":"","context":"In &quot;Azure AI Services&quot;","block_context":{"text":"Azure AI Services","link":"https:\/\/cloudproinc.com.au\/index.php\/category\/azure-ai-services\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2025\/11\/security-best-practices-for-azure-ai-services-in-practice.png","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2025\/11\/security-best-practices-for-azure-ai-services-in-practice.png 1x, \/wp-content\/uploads\/2025\/11\/security-best-practices-for-azure-ai-services-in-practice.png 1.5x, \/wp-content\/uploads\/2025\/11\/security-best-practices-for-azure-ai-services-in-practice.png 2x, \/wp-content\/uploads\/2025\/11\/security-best-practices-for-azure-ai-services-in-practice.png 3x, \/wp-content\/uploads\/2025\/11\/security-best-practices-for-azure-ai-services-in-practice.png 4x"},"classes":[]},{"id":414,"url":"https:\/\/cloudproinc.com.au\/index.php\/2024\/07\/22\/generate-an-image-caption-with-azure-ai-vision-and-net\/","url_meta":{"origin":56797,"position":4},"title":"Generate an Image Caption With Azure AI Vision and .NET","author":"CPI Staff","date":"July 22, 2024","format":false,"excerpt":"This Azure AI Vision article will show how to generate an image caption with Azure AI Vision and .NET C# application. Azure AI Vision is a Microsoft Azure service that is part of the Azure AI Services suite of cloud services, which also includes speech services and the popular Azure\u2026","rel":"","context":"In &quot;AI&quot;","block_context":{"text":"AI","link":"https:\/\/cloudproinc.com.au\/index.php\/category\/ai\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2024\/07\/Generate-an-Image-Caption-With-Azure-AI-Vision-and-.NET_.webp","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2024\/07\/Generate-an-Image-Caption-With-Azure-AI-Vision-and-.NET_.webp 1x, \/wp-content\/uploads\/2024\/07\/Generate-an-Image-Caption-With-Azure-AI-Vision-and-.NET_.webp 1.5x, \/wp-content\/uploads\/2024\/07\/Generate-an-Image-Caption-With-Azure-AI-Vision-and-.NET_.webp 2x"},"classes":[]},{"id":289,"url":"https:\/\/cloudproinc.com.au\/index.php\/2024\/05\/18\/maximizing-security-when-to-use-wiz-outpost-with-azure\/","url_meta":{"origin":56797,"position":5},"title":"Maximizing Security: When to Use Wiz Outpost with Azure","author":"CPI Staff","date":"May 18, 2024","format":false,"excerpt":"In this Wiz blog post, we will explain when to use a Wiz Outpost with Azure and the benefits of using an outpost. Wiz.io is a cloud security platform that provides comprehensive protection for cloud-native environments. It offers real-time visibility into security risks and vulnerabilities across multi-cloud infrastructures, allowing organizations\u2026","rel":"","context":"In &quot;Azure&quot;","block_context":{"text":"Azure","link":"https:\/\/cloudproinc.com.au\/index.php\/category\/microsoft-azure\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2024\/05\/Maximizing-Security_-When-to-Use-Wiz-Outpost-with-Azure.-The-image-should-depict-a-secure-cloud-environment-.webp","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2024\/05\/Maximizing-Security_-When-to-Use-Wiz-Outpost-with-Azure.-The-image-should-depict-a-secure-cloud-environment-.webp 1x, \/wp-content\/uploads\/2024\/05\/Maximizing-Security_-When-to-Use-Wiz-Outpost-with-Azure.-The-image-should-depict-a-secure-cloud-environment-.webp 1.5x, \/wp-content\/uploads\/2024\/05\/Maximizing-Security_-When-to-Use-Wiz-Outpost-with-Azure.-The-image-should-depict-a-secure-cloud-environment-.webp 2x"},"classes":[]}],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/cloudproinc.com.au\/index.php\/wp-json\/wp\/v2\/posts\/56797","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/cloudproinc.com.au\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/cloudproinc.com.au\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/cloudproinc.com.au\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/cloudproinc.com.au\/index.php\/wp-json\/wp\/v2\/comments?post=56797"}],"version-history":[{"count":2,"href":"https:\/\/cloudproinc.com.au\/index.php\/wp-json\/wp\/v2\/posts\/56797\/revisions"}],"predecessor-version":[{"id":56815,"href":"https:\/\/cloudproinc.com.au\/index.php\/wp-json\/wp\/v2\/posts\/56797\/revisions\/56815"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/cloudproinc.com.au\/index.php\/wp-json\/wp\/v2\/media\/56802"}],"wp:attachment":[{"href":"https:\/\/cloudproinc.com.au\/index.php\/wp-json\/wp\/v2\/media?parent=56797"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cloudproinc.com.au\/index.php\/wp-json\/wp\/v2\/categories?post=56797"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cloudproinc.com.au\/index.php\/wp-json\/wp\/v2\/tags?post=56797"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}