{"id":53210,"date":"2025-04-18T14:29:53","date_gmt":"2025-04-18T04:29:53","guid":{"rendered":"https:\/\/www.cloudproinc.com.au\/?p=53210"},"modified":"2025-04-18T14:29:55","modified_gmt":"2025-04-18T04:29:55","slug":"build-ai-applications-with-azure-ai-foundry","status":"publish","type":"post","link":"https:\/\/cloudproinc.com.au\/index.php\/2025\/04\/18\/build-ai-applications-with-azure-ai-foundry\/","title":{"rendered":"Build AI applications With Azure AI Foundry"},"content":{"rendered":"\n<p>In this post, we will show how to build AI applications using Azure AI Foundry and the benefits of using the SDK for Foundry.<\/p>\n\n\n\n<!--more-->\n\n\n\n<h2 class=\"wp-block-heading\">Introduction<\/h2>\n\n\n\n<p>The world of Artificial Intelligence (AI) is expanding rapidly, and businesses are increasingly seeking ways to leverage this technology to gain a competitive edge. One powerful tool in this space is Azure Foundry AI. Designed to simplify the integration of AI into various business processes, Azure Foundry AI is a game-changer for companies looking to innovate and streamline their operations.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What is Azure AI Foundry<\/h2>\n\n\n\n<p>Azure AI Foundry is a comprehensive platform on Microsoft Azure designed to streamline AI solution development by providing centralized project organization, resource management, and advanced development tools.<\/p>\n\n\n\n<p>It offers a <strong>web-based interface<\/strong> (Azure AI Foundry portal) for managing AI projects efficiently, along with an <strong>Azure AI Foundry SDK<\/strong> for programmatic solution development. The platform is structured around <strong>hubs and projects<\/strong>:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Hubs<\/strong>: Top-level containers managing shared resources, data, and security configurations.<\/li>\n\n\n\n<li><strong>Projects<\/strong>: Subsections within hubs, facilitating collaborative AI solution development.<\/li>\n\n\n\n<li><strong>Role Inheritance<\/strong>: Ensures seamless collaboration by inheriting permissions and resources from hubs to projects.<\/li>\n<\/ul>\n\n\n\n<p>This hierarchical organization helps maintain efficient resource utilization while promoting secure collaboration.<\/p>\n\n\n\n<p>Within Azure AI Foundry, hubs include essential <strong>Azure AI resources<\/strong>, such as <strong>Azure AI services, Key Vaults, and storage accounts<\/strong>. Projects under these hubs benefit from powerful tools, including:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Model Catalog<\/strong>: Machine learning models from Azure OpenAI, Hugging Face, and other sources.<\/li>\n\n\n\n<li><strong>Interactive Playgrounds<\/strong>: Experiment with generative AI models in a hands-on environment.<\/li>\n\n\n\n<li><strong>Model Fine-Tuning<\/strong>: Customize AI models with specific datasets.<\/li>\n\n\n\n<li><strong>Prompt Flow<\/strong>: Orchestrate AI interactions efficiently.<\/li>\n\n\n\n<li><strong>Development Environments<\/strong>: Integrated Visual Studio Code containers for coding and testing.<\/li>\n\n\n\n<li><strong>AI Assessments<\/strong>: Tools for tracing, evaluation, and content safety management.<\/li>\n<\/ul>\n\n\n\n<p>This cohesive ecosystem allows developers to build, test, and deploy AI solutions effectively within a unified framework.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Getting Started with the Azure Foundry AI SDK<\/h2>\n\n\n\n<p>The Azure Foundry AI Software Development Kit (SDK) is a powerful tool that allows developers to build and deploy AI models quickly and efficiently.<\/p>\n\n\n\n<p>Below, is a step-by-step guide to help you get started with the SDK for .NET using a C# console application<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 1: Setting Up Your Environment<\/h2>\n\n\n\n<p>Before you can start using the Azure Foundry AI SDK, you need to set up your development environment. This involves creating a C# Console application and installing the necessary software and configuring your Azure account.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Set Up Your Azure Account: If you don&#8217;t already have an Azure account, you will need to create one. You can sign up for a free account, which provides access to a range of Azure services at no cost for the first 12 months.<\/li>\n\n\n\n<li>Create a Hub, project and Azure OpenAI service (https:\/\/ai.azure.com)<\/li>\n\n\n\n<li>Install the SDK: You can install the Azure Foundry AI SDK and related packages using the following:<\/li>\n<\/ul>\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-941fe9eca3df8064c5537af06d472e1e\"><code>dotnet add package Azure.AI.Projects --prerelease\ndotnet add package Azure.Identity\ndotnet add package Azure.AI.TextAnalytics\ndotnet add package Azure.AI.Inference<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Copy Connection String<\/h2>\n\n\n\n<p>The initial step in most Azure AI Foundry SDK code involves connecting to an Azure AI Foundry project. Each project possesses a unique <em>connection string<\/em>, which is available on the project&#8217;s <strong>Overview<\/strong> page in the Azure AI Foundry portal.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"940\" height=\"513\" data-src=\"\/wp-content\/uploads\/2025\/04\/image-3.png\" alt=\"\" class=\"wp-image-53212 lazyload\" data-srcset=\"\/wp-content\/uploads\/2025\/04\/image-3.png 940w, \/wp-content\/uploads\/2025\/04\/image-3-300x164.png 300w, \/wp-content\/uploads\/2025\/04\/image-3-768x419.png 768w, \/wp-content\/uploads\/2025\/04\/image-3-480x262.png 480w\" data-sizes=\"(max-width: 940px) 100vw, 940px\" src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" style=\"--smush-placeholder-width: 940px; --smush-placeholder-aspect-ratio: 940\/513;\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Code<\/h2>\n\n\n\n<p>Once you have installed the necessary packages and copied the connection string, you can proceed by adding the following code snippet to your application. This code snippet demonstrates how to set up the connection to your Azure AI Foundry project and initialize the necessary services.<\/p>\n\n\n\n<p>&nbsp;Make sure to replace the placeholder in line 3 with your actual connection string. Additionally, in line 29, insert the name of your GPT model, which can be found under the <strong>Model + endpoints<\/strong> section in the Azure AI Foundry portal.<\/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-0ca4701bfc9c49576e1882c810b6c8e2\"><code>using System;\n\nusing Azure;\n\nusing Azure.AI.Projects;\n\nusing Azure.Identity;\n\nusing Azure.AI.Inference;\n\nnamespace foundrySDK\n\n{\n\n\u00a0\u00a0\u00a0 class Program\n\n\u00a0\u00a0\u00a0 {\n\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 static void Main(string&#91;] args)\n\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 {\n\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 try\n\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 {\n\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 \/\/ Initialize the project client with the connection string and default Azure credentials\n\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 var connectionString = \"Connection String Goes here \";\n\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 var projectClient = new AIProjectClient(connectionString, new DefaultAzureCredential());\n\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 \/\/ Get a chat completions client from the project client\n\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ChatCompletionsClient chatClient = projectClient.GetChatCompletionsClient();\n\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 \/\/ Prompt the user to enter a question\n\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Console.WriteLine(\"Enter a question:\");\n\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 var userPrompt = Console.ReadLine();\n\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 \/\/ Create chat completions options with the specified model and messages\n\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 var requestOptions = new ChatCompletionsOptions()\n\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 {\n\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Model = \"gpt-4o\",\n\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Messages =\n\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 {\n\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 new ChatRequestSystemMessage(\"You are a helpful AI assistant that answers questions.\"),\n\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 new ChatRequestUserMessage(userPrompt),\n\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 }\n\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 };\n\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 \/\/ Get a chat completion response based on the user-provided prompt\n\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Response&lt;ChatCompletions> response = chatClient.Complete(requestOptions);\n\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 \/\/ Output the response content to the console\n\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Console.WriteLine(response.Value.Content);\n\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 }\n\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 catch (Exception ex)\n\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 {\n\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 \/\/ Output any exceptions to the console\n\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Console.WriteLine($\"An error occurred: {ex.Message}\");\n\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 }\n\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 }\n\n\u00a0\u00a0\u00a0 }\n\n}<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Run Program<\/h2>\n\n\n\n<p>After handling exceptions, you can run the C# console application to test the integration and functionality of your AI-powered solutions.<\/p>\n\n\n\n<p>The program&#8217;s output is displayed below.<\/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-444f3565f9591d6a381ac64f24dd42db\"><code>Enter a question:<br>Where does Paris located<br>Paris is the capital city of **France**, located in the north-central part of the country. It lies along the **Seine River**, and its geographic coordinates are approximately **48.8566\u00b0 N latitude** and **2.3522\u00b0 E longitude**. Paris is one of the most iconic cities in the world, known for its cultural landmarks, such as the Eiffel Tower, Louvre Museum, and Notre-Dame Cathedral.<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>Azure Foundry AI offers a powerful and flexible platform for integrating AI into your business processes.<\/p>\n\n\n\n<p>By leveraging the capabilities of the Azure Foundry AI SDK, managers can drive innovation and efficiency within their organizations. Whether you are new to AI or an experienced developer, the tools and resources provided by Azure Foundry AI make it easier than ever to harness the power of Artificial Intelligence.<\/p>\n\n\n\n<p>Follow this guide to start using Azure Foundry AI and transform your business with advanced AI technology.<\/p>\n\n\n\n<div class=\"wp-block-jetpack-related-posts\">\n<h2 class=\"wp-block-heading\">Related Posts<\/h2>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>In this post, we will show how to build AI applications using Azure AI Foundry and the benefits of using the SDK for Foundry.<\/p>\n","protected":false},"author":1,"featured_media":53213,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_yoast_wpseo_focuskw":"Build AI applications With Azure AI Foundry","_yoast_wpseo_title":"","_yoast_wpseo_metadesc":"Learn how to build powerful AI applications with Azure AI Foundry. This step-by-step guide covers setup, SDK usage with .NET, and real-world benefits for developers and businesses.","_yoast_wpseo_opengraph-title":"","_yoast_wpseo_opengraph-description":"","_yoast_wpseo_twitter-title":"","_yoast_wpseo_twitter-description":"","_et_pb_use_builder":"off","_et_pb_old_content":"","_et_gb_content_width":"","_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[16,26,13],"tags":[],"class_list":["post-53210","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>Build AI applications With Azure AI Foundry - CPI Consulting<\/title>\n<meta name=\"description\" content=\"Learn how to build powerful AI applications with Azure AI Foundry. This step-by-step guide covers setup, SDK usage with .NET, and real-world benefits for developers and businesses.\" \/>\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\/2025\/04\/18\/build-ai-applications-with-azure-ai-foundry\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Build AI applications With Azure AI Foundry\" \/>\n<meta property=\"og:description\" content=\"Learn how to build powerful AI applications with Azure AI Foundry. This step-by-step guide covers setup, SDK usage with .NET, and real-world benefits for developers and businesses.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/04\/18\/build-ai-applications-with-azure-ai-foundry\/\" \/>\n<meta property=\"og:site_name\" content=\"CPI Consulting\" \/>\n<meta property=\"article:published_time\" content=\"2025-04-18T04:29:53+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-04-18T04:29:55+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cloudproinc.com.au\/wp-content\/uploads\/2025\/04\/Build-AI-applications-With-Azure-AI-Foundry-1024x683.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"683\" \/>\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=\"4 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\\\/2025\\\/04\\\/18\\\/build-ai-applications-with-azure-ai-foundry\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2025\\\/04\\\/18\\\/build-ai-applications-with-azure-ai-foundry\\\/\"},\"author\":{\"name\":\"CPI Staff\",\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/#\\\/schema\\\/person\\\/192eeeb0ce91062126ce3822ae88fe6e\"},\"headline\":\"Build AI applications With Azure AI Foundry\",\"datePublished\":\"2025-04-18T04:29:53+00:00\",\"dateModified\":\"2025-04-18T04:29:55+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2025\\\/04\\\/18\\\/build-ai-applications-with-azure-ai-foundry\\\/\"},\"wordCount\":715,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2025\\\/04\\\/18\\\/build-ai-applications-with-azure-ai-foundry\\\/#primaryimage\"},\"thumbnailUrl\":\"\\\/wp-content\\\/uploads\\\/2025\\\/04\\\/Build-AI-applications-With-Azure-AI-Foundry.png\",\"articleSection\":[\"Azure\",\"Azure AI Services\",\"Blog\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2025\\\/04\\\/18\\\/build-ai-applications-with-azure-ai-foundry\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2025\\\/04\\\/18\\\/build-ai-applications-with-azure-ai-foundry\\\/\",\"url\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2025\\\/04\\\/18\\\/build-ai-applications-with-azure-ai-foundry\\\/\",\"name\":\"Build AI applications With Azure AI Foundry - CPI Consulting\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2025\\\/04\\\/18\\\/build-ai-applications-with-azure-ai-foundry\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2025\\\/04\\\/18\\\/build-ai-applications-with-azure-ai-foundry\\\/#primaryimage\"},\"thumbnailUrl\":\"\\\/wp-content\\\/uploads\\\/2025\\\/04\\\/Build-AI-applications-With-Azure-AI-Foundry.png\",\"datePublished\":\"2025-04-18T04:29:53+00:00\",\"dateModified\":\"2025-04-18T04:29:55+00:00\",\"description\":\"Learn how to build powerful AI applications with Azure AI Foundry. This step-by-step guide covers setup, SDK usage with .NET, and real-world benefits for developers and businesses.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2025\\\/04\\\/18\\\/build-ai-applications-with-azure-ai-foundry\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2025\\\/04\\\/18\\\/build-ai-applications-with-azure-ai-foundry\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2025\\\/04\\\/18\\\/build-ai-applications-with-azure-ai-foundry\\\/#primaryimage\",\"url\":\"\\\/wp-content\\\/uploads\\\/2025\\\/04\\\/Build-AI-applications-With-Azure-AI-Foundry.png\",\"contentUrl\":\"\\\/wp-content\\\/uploads\\\/2025\\\/04\\\/Build-AI-applications-With-Azure-AI-Foundry.png\",\"width\":1536,\"height\":1024},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2025\\\/04\\\/18\\\/build-ai-applications-with-azure-ai-foundry\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Build AI applications With Azure AI Foundry\"}]},{\"@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.com.au\\\/index.php\\\/author\\\/cpiadmin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Build AI applications With Azure AI Foundry - CPI Consulting","description":"Learn how to build powerful AI applications with Azure AI Foundry. This step-by-step guide covers setup, SDK usage with .NET, and real-world benefits for developers and businesses.","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\/2025\/04\/18\/build-ai-applications-with-azure-ai-foundry\/","og_locale":"en_US","og_type":"article","og_title":"Build AI applications With Azure AI Foundry","og_description":"Learn how to build powerful AI applications with Azure AI Foundry. This step-by-step guide covers setup, SDK usage with .NET, and real-world benefits for developers and businesses.","og_url":"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/04\/18\/build-ai-applications-with-azure-ai-foundry\/","og_site_name":"CPI Consulting","article_published_time":"2025-04-18T04:29:53+00:00","article_modified_time":"2025-04-18T04:29:55+00:00","og_image":[{"width":1024,"height":683,"url":"https:\/\/cloudproinc.com.au\/wp-content\/uploads\/2025\/04\/Build-AI-applications-With-Azure-AI-Foundry-1024x683.png","type":"image\/png"}],"author":"CPI Staff","twitter_card":"summary_large_image","twitter_misc":{"Written by":"CPI Staff","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/04\/18\/build-ai-applications-with-azure-ai-foundry\/#article","isPartOf":{"@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/04\/18\/build-ai-applications-with-azure-ai-foundry\/"},"author":{"name":"CPI Staff","@id":"https:\/\/cloudproinc.azurewebsites.net\/#\/schema\/person\/192eeeb0ce91062126ce3822ae88fe6e"},"headline":"Build AI applications With Azure AI Foundry","datePublished":"2025-04-18T04:29:53+00:00","dateModified":"2025-04-18T04:29:55+00:00","mainEntityOfPage":{"@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/04\/18\/build-ai-applications-with-azure-ai-foundry\/"},"wordCount":715,"commentCount":0,"publisher":{"@id":"https:\/\/cloudproinc.azurewebsites.net\/#organization"},"image":{"@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/04\/18\/build-ai-applications-with-azure-ai-foundry\/#primaryimage"},"thumbnailUrl":"\/wp-content\/uploads\/2025\/04\/Build-AI-applications-With-Azure-AI-Foundry.png","articleSection":["Azure","Azure AI Services","Blog"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.cloudproinc.com.au\/index.php\/2025\/04\/18\/build-ai-applications-with-azure-ai-foundry\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/04\/18\/build-ai-applications-with-azure-ai-foundry\/","url":"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/04\/18\/build-ai-applications-with-azure-ai-foundry\/","name":"Build AI applications With Azure AI Foundry - CPI Consulting","isPartOf":{"@id":"https:\/\/cloudproinc.azurewebsites.net\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/04\/18\/build-ai-applications-with-azure-ai-foundry\/#primaryimage"},"image":{"@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/04\/18\/build-ai-applications-with-azure-ai-foundry\/#primaryimage"},"thumbnailUrl":"\/wp-content\/uploads\/2025\/04\/Build-AI-applications-With-Azure-AI-Foundry.png","datePublished":"2025-04-18T04:29:53+00:00","dateModified":"2025-04-18T04:29:55+00:00","description":"Learn how to build powerful AI applications with Azure AI Foundry. This step-by-step guide covers setup, SDK usage with .NET, and real-world benefits for developers and businesses.","breadcrumb":{"@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/04\/18\/build-ai-applications-with-azure-ai-foundry\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.cloudproinc.com.au\/index.php\/2025\/04\/18\/build-ai-applications-with-azure-ai-foundry\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/04\/18\/build-ai-applications-with-azure-ai-foundry\/#primaryimage","url":"\/wp-content\/uploads\/2025\/04\/Build-AI-applications-With-Azure-AI-Foundry.png","contentUrl":"\/wp-content\/uploads\/2025\/04\/Build-AI-applications-With-Azure-AI-Foundry.png","width":1536,"height":1024},{"@type":"BreadcrumbList","@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/04\/18\/build-ai-applications-with-azure-ai-foundry\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/cloudproinc.azurewebsites.net\/"},{"@type":"ListItem","position":2,"name":"Build AI applications With Azure AI Foundry"}]},{"@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.com.au\/index.php\/author\/cpiadmin\/"}]}},"jetpack_featured_media_url":"\/wp-content\/uploads\/2025\/04\/Build-AI-applications-With-Azure-AI-Foundry.png","jetpack-related-posts":[{"id":57294,"url":"https:\/\/cloudproinc.com.au\/index.php\/2026\/03\/18\/microsoft-ai-foundry-hq-closes-the-gap-between-ai-experimentation-and-enterprise-grade-deployment\/","url_meta":{"origin":53210,"position":0},"title":"Microsoft AI Foundry HQ Closes the Gap Between AI Experimentation and Enterprise-Grade Deployment","author":"CPI Staff","date":"March 18, 2026","format":false,"excerpt":"Most Australian organisations have the same AI problem right now. The proof of concept worked. Leadership approved the budget. And then everything stalled. The gap between a successful AI experiment and a production-grade enterprise deployment is wider than anyone expected. Models need governance. Agents need monitoring. Compliance teams need audit\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\/2026\/03\/microsoft-ai-foundry-hq-closes-gap-ai-experimentation-enterprise-deployment-cover.png","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2026\/03\/microsoft-ai-foundry-hq-closes-gap-ai-experimentation-enterprise-deployment-cover.png 1x, \/wp-content\/uploads\/2026\/03\/microsoft-ai-foundry-hq-closes-gap-ai-experimentation-enterprise-deployment-cover.png 1.5x, \/wp-content\/uploads\/2026\/03\/microsoft-ai-foundry-hq-closes-gap-ai-experimentation-enterprise-deployment-cover.png 2x, \/wp-content\/uploads\/2026\/03\/microsoft-ai-foundry-hq-closes-gap-ai-experimentation-enterprise-deployment-cover.png 3x, \/wp-content\/uploads\/2026\/03\/microsoft-ai-foundry-hq-closes-gap-ai-experimentation-enterprise-deployment-cover.png 4x"},"classes":[]},{"id":57288,"url":"https:\/\/cloudproinc.com.au\/index.php\/2026\/03\/22\/what-microsoft-ai-foundry-means-for-australian-organisations-designing-enterprise-ai-platforms\/","url_meta":{"origin":53210,"position":1},"title":"What Microsoft AI Foundry Means for Australian Organisations Designing Enterprise AI Platforms","author":"CPI Staff","date":"March 22, 2026","format":false,"excerpt":"Most Australian organisations that started building AI capabilities in the last two years are hitting the same wall. The proof of concept worked. The board approved the next phase. And now IT teams are drowning in questions nobody planned for. Where do the models run? Who approves new deployments? How\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\/2026\/03\/microsoft-ai-foundry-australian-enterprise-ai-platforms-cover.png","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2026\/03\/microsoft-ai-foundry-australian-enterprise-ai-platforms-cover.png 1x, \/wp-content\/uploads\/2026\/03\/microsoft-ai-foundry-australian-enterprise-ai-platforms-cover.png 1.5x, \/wp-content\/uploads\/2026\/03\/microsoft-ai-foundry-australian-enterprise-ai-platforms-cover.png 2x, \/wp-content\/uploads\/2026\/03\/microsoft-ai-foundry-australian-enterprise-ai-platforms-cover.png 3x, \/wp-content\/uploads\/2026\/03\/microsoft-ai-foundry-australian-enterprise-ai-platforms-cover.png 4x"},"classes":[]},{"id":57297,"url":"https:\/\/cloudproinc.com.au\/index.php\/2026\/03\/17\/why-microsoft-ai-foundry-should-be-on-every-cios-vendor-evaluation-list-for-2026\/","url_meta":{"origin":53210,"position":2},"title":"Why Microsoft AI Foundry Should Be on Every CIO&#8217;s Vendor Evaluation List for 2026","author":"CPI Staff","date":"March 17, 2026","format":false,"excerpt":"Most mid-market Australian organisations are past the AI proof-of-concept stage. The models work. The board is asking for the next phase. And suddenly the questions nobody planned for are piling up. Where do the models run? Who approves new deployments? How does the organisation trace what an agent did when\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\/2026\/03\/why-microsoft-ai-foundry-every-cios-vendor-evaluation-2026-cover.png","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2026\/03\/why-microsoft-ai-foundry-every-cios-vendor-evaluation-2026-cover.png 1x, \/wp-content\/uploads\/2026\/03\/why-microsoft-ai-foundry-every-cios-vendor-evaluation-2026-cover.png 1.5x, \/wp-content\/uploads\/2026\/03\/why-microsoft-ai-foundry-every-cios-vendor-evaluation-2026-cover.png 2x, \/wp-content\/uploads\/2026\/03\/why-microsoft-ai-foundry-every-cios-vendor-evaluation-2026-cover.png 3x, \/wp-content\/uploads\/2026\/03\/why-microsoft-ai-foundry-every-cios-vendor-evaluation-2026-cover.png 4x"},"classes":[]},{"id":53311,"url":"https:\/\/cloudproinc.com.au\/index.php\/2025\/04\/29\/how-to-protect-your-openai-net-apps-from-prompt-injection-attacks-with-azure-ai-foundry\/","url_meta":{"origin":53210,"position":3},"title":"Protect Your OpenAI .NET Apps from Prompt Injection Attacks","author":"CPI Staff","date":"April 29, 2025","format":false,"excerpt":"In this OpenAI and Azure blog post, we will show you how to Protect Your OpenAI .NET Apps from Prompt Injection Attacks effectively. Table of contentsWhy Prompt Injection MattersSetting Up the ProtectionInstall Required PackagesThe Full Protection WorkflowExample C# CodeKey PointsConclusionMore Posts Prompt injection attacks are becoming a serious security concern\u2026","rel":"","context":"In &quot;.NET&quot;","block_context":{"text":".NET","link":"https:\/\/cloudproinc.com.au\/index.php\/category\/net\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2025\/04\/AI_Prompt_protection.png","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2025\/04\/AI_Prompt_protection.png 1x, \/wp-content\/uploads\/2025\/04\/AI_Prompt_protection.png 1.5x, \/wp-content\/uploads\/2025\/04\/AI_Prompt_protection.png 2x, \/wp-content\/uploads\/2025\/04\/AI_Prompt_protection.png 3x, \/wp-content\/uploads\/2025\/04\/AI_Prompt_protection.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":53210,"position":4},"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":57239,"url":"https:\/\/cloudproinc.com.au\/index.php\/2026\/03\/16\/what-microsofts-new-ai-stack-means-for-safer-faster-ai-projects\/","url_meta":{"origin":53210,"position":5},"title":"What Microsoft\u2019s New AI Stack Means for Safer Faster AI Projects","author":"CPI Staff","date":"March 16, 2026","format":false,"excerpt":"Agent Framework, Foundry, MCP and Aspire can speed up AI delivery without losing control. Here\u2019s what each layer does and how to decide what your business actually needs.","rel":"","context":"In &quot;Azure Foundry&quot;","block_context":{"text":"Azure Foundry","link":"https:\/\/cloudproinc.com.au\/index.php\/category\/azure-foundry\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2026\/03\/post-17.png","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2026\/03\/post-17.png 1x, \/wp-content\/uploads\/2026\/03\/post-17.png 1.5x, \/wp-content\/uploads\/2026\/03\/post-17.png 2x, \/wp-content\/uploads\/2026\/03\/post-17.png 3x, \/wp-content\/uploads\/2026\/03\/post-17.png 4x"},"classes":[]}],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/cloudproinc.com.au\/index.php\/wp-json\/wp\/v2\/posts\/53210","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=53210"}],"version-history":[{"count":1,"href":"https:\/\/cloudproinc.com.au\/index.php\/wp-json\/wp\/v2\/posts\/53210\/revisions"}],"predecessor-version":[{"id":53214,"href":"https:\/\/cloudproinc.com.au\/index.php\/wp-json\/wp\/v2\/posts\/53210\/revisions\/53214"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/cloudproinc.com.au\/index.php\/wp-json\/wp\/v2\/media\/53213"}],"wp:attachment":[{"href":"https:\/\/cloudproinc.com.au\/index.php\/wp-json\/wp\/v2\/media?parent=53210"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cloudproinc.com.au\/index.php\/wp-json\/wp\/v2\/categories?post=53210"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cloudproinc.com.au\/index.php\/wp-json\/wp\/v2\/tags?post=53210"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}