Domain 2 β€” Module 2 of 15 13%
13 of 26 overall
Domain 2: Implement AI Solutions Using Foundry Free ⏱ ~14 min read

Microsoft Foundry: Your AI Command Center

Microsoft Foundry is where you deploy AI models, build agents, and manage your AI projects. This module walks you through the portal β€” from creating a project to deploying your first model.

What is Microsoft Foundry?

Simple explanation

Microsoft Foundry is your AI workshop β€” it’s where you go to build, test, and deploy everything AI in Azure.

Think of it like a fully equipped workshop. The model catalog is your tool shelf (hundreds of AI models to choose from). The playground is your workbench (test models without writing code). The project is your workspace (keeps everything organised).

You don’t need to install anything β€” it’s a web portal at ai.azure.com. Sign in with your Azure account and start building.

The Foundry portal layout

When you sign in to ai.azure.com, you’ll see:

SectionWhat It Contains
HomeRecent projects, quick actions, getting started guides
Model catalogBrowse and deploy hundreds of models (OpenAI, Microsoft, Meta, Mistral, etc.)
PlaygroundChat with deployed models, test prompts, configure settings β€” no code needed
BuildCreate agents, build apps, write and test prompts
OperateMonitor deployments, view metrics, manage resources
ToolsFoundry Tools (AI services) β€” Speech, Vision, Language, Content Understanding

Key concepts

Foundry resource

A Foundry resource is the top-level Azure resource that contains everything. Think of it as your AI headquarters.

Projects

A project is a workspace within a Foundry resource. Each project has:

  • Its own deployed models
  • Its own agents
  • Its own API keys and endpoints
  • Its own monitoring and logs

Priya scenario: Priya creates a Foundry resource for her university work. Inside it, she creates two projects: one for her coursework chatbot and one for her thesis research assistant.

Model deployments

A deployment makes a model available through an API endpoint. When you deploy GPT-4o, you get a URL that your applications can call to send prompts and receive responses.

Deploying your first model β€” step by step

Here’s how Priya deploys GPT-4o in the Foundry portal:

  1. Sign in to ai.azure.com
  2. Select a project (or create one)
  3. Go to Model catalog β†’ search for β€œGPT-4o”
  4. Click Deploy β†’ choose deployment type (Global Standard is easiest)
  5. Name your deployment (e.g., β€œgpt4o-coursework”)
  6. Set configuration β€” rate limits, content filters
  7. Deploy β€” within seconds, you have an API endpoint

The Playground: testing without code

The Playground is where you test your deployed model interactively:

Playground FeatureWhat You Can Do
ChatHave a conversation with the model, just like ChatGPT
System promptSet the system message (role, rules, tone)
ParametersAdjust temperature, max tokens, top-p in real time
View codeSee the equivalent Python/C#/JavaScript code for your chat
Compare modelsRun the same prompt against different deployments side by side

Key exam concept: The Playground is the fastest way to test prompts and parameters without writing any code. It generates the equivalent SDK code you can copy into your application.

Foundry evolution: what changed and why

Understanding the naming history helps on the exam:

Previous NameCurrent Name
Azure AI StudioMicrosoft Foundry (portal)
Azure AI ServicesFoundry Tools
Azure OpenAI ServicePart of Foundry (OpenAI models)
Hub + AI resourceFoundry resource + projects
Assistants APIResponses API

The exam may still reference older terminology in some questions. Know that β€œFoundry” is the current umbrella term.

Foundry Tools (formerly Azure AI Services)

Foundry Tools are the specialized AI services available within Foundry:

ToolCapability
Azure AI LanguageText analysis β€” sentiment, entities, keywords, summarisation
Azure AI SpeechSpeech-to-text, text-to-speech, translation
Azure AI VisionImage analysis, OCR, face detection
Azure Content UnderstandingDocument, image, audio, video extraction
Azure OpenAIGPT models, GPT-image, embeddings (model access, not a standalone tool)

🎬 Video walkthrough

Flashcards

Question

What is Microsoft Foundry?

Click or press Enter to reveal answer

Answer

Microsoft's unified Azure platform for building, deploying, and governing AI solutions. It combines model deployment, agent creation, evaluation, and monitoring. Access it at ai.azure.com.

Click to flip back

Question

What is a Foundry project?

Click or press Enter to reveal answer

Answer

A workspace within a Foundry resource. Each project has its own deployed models, agents, API keys, endpoints, and monitoring. Think of it as a separate workspace for each AI initiative.

Click to flip back

Question

What is the Foundry Playground?

Click or press Enter to reveal answer

Answer

An interactive testing environment where you can chat with deployed models, adjust parameters (temperature, max tokens), set system prompts, and view equivalent SDK code β€” all without writing code.

Click to flip back

Question

What are Foundry Tools?

Click or press Enter to reveal answer

Answer

Specialised AI services within Foundry (formerly Azure AI Services): Language, Speech, Vision, Content Understanding, and Azure OpenAI. Each provides focused capabilities for specific AI workloads.

Click to flip back

Knowledge Check

Knowledge Check

Priya wants to test how GPT-4o responds to different system prompts and temperature settings before writing any code. Which Foundry feature should she use?

Knowledge Check

DataFlow Corp needs to organise their AI work: one team builds customer support bots, another works on document processing. How should they structure their Foundry setup?


Next up: Building a Chat App with the Foundry SDK β€” writing your first Python code to interact with AI.