🔒 Guided

Pre-launch preview. Authorised access only.

Incorrect code

Guided by A Guide to Cloud
Explore AB-900 AI-901
Guided AI-103 Domain 1
Domain 1 — Module 2 of 8 25%
2 of 27 overall

AI-103 Study Guide

Domain 1: Plan and Manage an Azure AI Solution

  • Choosing the Right AI Model Free
  • Foundry Services: Your AI Toolkit Free
  • Retrieval, Indexing & Agent Memory
  • Designing AI Infrastructure
  • Deploying Models & CI/CD
  • Quotas, Scaling & Cost
  • Monitoring & Security
  • Responsible AI: Filters, Auditing & Governance

Domain 2: Implement Generative AI and Agentic Solutions

  • Connecting Your App to Foundry Free
  • Building RAG Applications
  • Workflows & Reasoning Pipelines
  • Evaluating AI Models & Apps
  • Agent Fundamentals: Roles, Goals & Tools Free
  • Building Agents with Retrieval & Memory
  • Agent Tools & Knowledge Integration
  • Multi-Agent Orchestration & Safeguards
  • Agent Monitoring & Error Analysis
  • Prompt Engineering & Model Tuning
  • Observability & Production Operations

Domain 3: Implement Computer Vision Solutions

  • Image & Video Generation
  • Multimodal Visual Understanding
  • Responsible AI for Visual Content

Domain 4: Implement Text Analysis Solutions

  • Text Analysis with Language Models
  • Speech, Translation & Voice Agents

Domain 5: Implement Information Extraction Solutions

  • Ingestion, Indexing & Grounding Pipelines
  • Extracting Content with Content Understanding
  • Exam Prep: Putting It All Together

AI-103 Study Guide

Domain 1: Plan and Manage an Azure AI Solution

  • Choosing the Right AI Model Free
  • Foundry Services: Your AI Toolkit Free
  • Retrieval, Indexing & Agent Memory
  • Designing AI Infrastructure
  • Deploying Models & CI/CD
  • Quotas, Scaling & Cost
  • Monitoring & Security
  • Responsible AI: Filters, Auditing & Governance

Domain 2: Implement Generative AI and Agentic Solutions

  • Connecting Your App to Foundry Free
  • Building RAG Applications
  • Workflows & Reasoning Pipelines
  • Evaluating AI Models & Apps
  • Agent Fundamentals: Roles, Goals & Tools Free
  • Building Agents with Retrieval & Memory
  • Agent Tools & Knowledge Integration
  • Multi-Agent Orchestration & Safeguards
  • Agent Monitoring & Error Analysis
  • Prompt Engineering & Model Tuning
  • Observability & Production Operations

Domain 3: Implement Computer Vision Solutions

  • Image & Video Generation
  • Multimodal Visual Understanding
  • Responsible AI for Visual Content

Domain 4: Implement Text Analysis Solutions

  • Text Analysis with Language Models
  • Speech, Translation & Voice Agents

Domain 5: Implement Information Extraction Solutions

  • Ingestion, Indexing & Grounding Pipelines
  • Extracting Content with Content Understanding
  • Exam Prep: Putting It All Together
Domain 1: Plan and Manage an Azure AI Solution Free ⏱ ~14 min read

Foundry Services: Your AI Toolkit

Microsoft Foundry is a platform of platforms. Learn which service handles what — from generative tasks to grounding, vector search, agent workflows, and multimodal processing.

What is Microsoft Foundry?

☕ Simple explanation

Microsoft Foundry is like a workshop with every AI tool you could need — all in one building.

Need to deploy a language model? There’s a workbench for that. Need to search through company documents? There’s a tool for that. Need to build an AI agent that books meetings? There’s a framework for that. Need to extract data from invoices? There’s a machine for that.

Instead of buying tools from 10 different shops, Foundry puts everything under one roof — one portal, one set of SDKs, one billing system.

Microsoft Foundry (formerly Azure AI Studio, then Azure AI Foundry) is Microsoft’s unified platform for building, deploying, and managing AI applications and agents. It provides:

  • Model catalog — 11,000+ models from OpenAI, Meta, Mistral, Anthropic, and more
  • Agent Service — build, deploy, and orchestrate AI agents with tools, memory, and governance
  • Evaluation framework — measure quality, safety, groundedness, and relevance
  • Foundry Tools — pre-built AI services (Search, Content Understanding, Speech, Translator)
  • Observability — tracing, token analytics, safety monitoring, and cost tracking

The platform uses a Foundry Project as its unit of organisation — each project contains models, agents, data connections, and deployments.

The Foundry service map

The exam tests whether you know which Foundry service handles which job. Here’s the complete map:

Task CategoryFoundry ServiceWhat It Does
Generative tasksModel deployments (OpenAI, Llama, Phi, etc.)Text generation, chat, code, summarisation
GroundingAzure AI Search + Foundry IQGround model responses in your data
Vector searchAzure AI Search (vector index)Semantic similarity search using embeddings
Agent workflowsFoundry Agent ServiceBuild agents with tools, memory, and orchestration
Multimodal processingMultimodal models + Content UnderstandingProcess text, images, audio, video together
Document extractionContent UnderstandingOCR, layout analysis, structured field extraction
SpeechAzure AI SpeechSpeech-to-text, text-to-speech, translation
TranslationAzure TranslatorText and document translation
EvaluationFoundry EvaluationMeasure quality, safety, groundedness

Foundry architecture: Projects and resources

Every AI solution in Foundry starts with a Foundry Project. Think of it as your workspace:

ComponentWhat It Contains
Foundry ProjectModels, agents, data connections, evaluations, deployments
Model deploymentsHosted models you can call via API (pay-per-token or provisioned)
Connected resourcesAzure AI Search indexes, storage accounts, Key Vault
Agent definitionsAgent configurations with tools, instructions, and knowledge
ℹ️ Classic vs New Foundry architecture

If you’ve used Azure AI Studio before, you’ll remember the hub-and-project model. The “classic” architecture had hubs as parent containers for projects.

The new Foundry architecture (2026) simplifies this — projects are standalone resources. No more hubs. This makes access control, lifecycle management, and governance simpler.

The exam focuses on the new architecture. If a question mentions “hubs,” it’s likely testing whether you know they’re deprecated.

Grounding and Foundry IQ

Grounding means anchoring AI responses in your actual data instead of letting the model hallucinate. Two key services:

Azure AI Search vs Foundry IQ for grounding
FeatureAzure AI SearchFoundry IQ
What it isFull search platform with indexing, ranking, and retrievalFoundry-native knowledge layer for agents
Search typesKeyword, semantic, vector, hybridIntegrated with agent memory and tools
Best forRAG applications, custom search pipelinesQuick agent knowledge setup without custom indexing
Setup effortMedium — configure index, chunking, embeddingsLow — upload docs, Foundry handles the rest
FlexibilityHigh — full control over indexing and retrievalLower — abstracted for simplicity
💡 Exam tip: When to pick Search vs Foundry IQ

The exam will present scenarios where you need to ground an AI response. Key decision:

  • Need full control over indexing, chunking, hybrid search, enrichment? → Azure AI Search
  • Quick setup for an agent that needs to search company docs? → Foundry IQ
  • Both are correct for RAG — the question is about complexity and control requirements

Agent Service

The Foundry Agent Service is where you build AI agents — systems that don’t just chat, but take actions:

Agent FeatureWhat It Provides
Model selectionChoose which LLM powers the agent’s reasoning
InstructionsSystem prompt defining the agent’s role, rules, and personality
ToolsFunctions the agent can call (APIs, search, code execution)
KnowledgeData sources the agent can query (Foundry IQ, Search indexes)
MemoryConversation history and per-thread state
OrchestrationMulti-agent coordination with approval controls
ℹ️ Real-world example: Atlas Financial's compliance agent

Atlas Financial builds a compliance review agent using three Foundry services:

  1. Agent Service — defines the agent’s role (“Review loan applications against regulatory guidelines”)
  2. Azure AI Search — indexes 50,000 pages of regulations for grounding
  3. GPT-4o deployment — provides the reasoning capability

The agent receives a loan application, searches relevant regulations, and produces a compliance assessment with citations. Three services working together.

Content Understanding

Content Understanding is Foundry’s newer multimodal extraction service for processing documents, images, and video. It coexists with Document Intelligence, which remains available for document-specific tasks:

CapabilityWhat It Does
OCRReads printed and handwritten text from images and PDFs
Layout analysisUnderstands document structure (tables, headings, sections)
Field extractionPulls specific fields (invoice number, date, total)
Single-task modeOptimised pipeline for one extraction type
Pro modeMulti-capability pipeline combining OCR, layout, and extraction
💡 Exam tip: Content Understanding vs Document Intelligence

These are separate, coexisting services — Content Understanding did NOT replace Document Intelligence. The exam may test when to use which:

  • Content Understanding — multimodal extraction (documents + images + audio + video), custom schemas, Markdown output for LLM consumption
  • Document Intelligence — document-specific extraction with pre-built models (invoices, receipts, tax forms), high-accuracy structured output

If the scenario involves multimodal content or feeding output to an LLM/agent → Content Understanding. If it’s purely document extraction with pre-built analysers → either service works, but Document Intelligence has more mature pre-built models.

Key terms

Question

What is a Foundry Project?

Click or press Enter to reveal answer

Answer

The unit of organisation in Microsoft Foundry. A project contains model deployments, agent definitions, data connections, evaluations, and access policies. Projects are standalone resources (no hubs in the new architecture).

Click to flip back

Question

What is Foundry IQ?

Click or press Enter to reveal answer

Answer

Foundry's built-in knowledge layer for agents. Upload documents and Foundry IQ handles indexing and retrieval automatically — simpler than configuring Azure AI Search manually, but with less control.

Click to flip back

Question

What is Content Understanding?

Click or press Enter to reveal answer

Answer

Foundry's multimodal extraction service for processing documents, images, audio, and video. It uses OCR, layout analysis, and field extraction with custom schemas. Coexists with Document Intelligence (which remains available for document-specific tasks).

Click to flip back

Question

What is the Foundry Agent Service?

Click or press Enter to reveal answer

Answer

The managed service for building AI agents in Foundry. Agents combine a model, instructions, tools, knowledge, and memory to plan and execute multi-step tasks autonomously.

Click to flip back

Question

What is Azure AI Search's role in Foundry?

Click or press Enter to reveal answer

Answer

Azure AI Search provides the retrieval layer for RAG and grounding. It supports keyword, semantic, vector, and hybrid search across indexed content, and integrates with Foundry for agent knowledge.

Click to flip back

Knowledge check

Knowledge Check

NeuralMed wants to build a patient-facing chatbot that answers questions using their medical knowledge base of 10,000 articles. The team needs full control over how articles are chunked, embedded, and ranked. Which grounding service should they use?

Knowledge Check

Kai needs to quickly prototype an AI agent that can answer questions about the company's shipping policies. He has 20 PDF documents and wants the fastest setup possible. Which approach should he use?

Knowledge Check

Which of the following is a Foundry Tool (managed service), NOT a model you deploy?

🎬 Video coming soon

← Previous

Choosing the Right AI Model

Next →

Retrieval, Indexing & Agent Memory

Guided

I learn, I simplify, I share.

A Guide to Cloud YouTube Feedback

© 2026 Sutheesh. All rights reserved.

Guided is an independent study resource and is not affiliated with, endorsed by, or officially connected to Microsoft. Microsoft, Azure, and related trademarks are property of Microsoft Corporation. Always verify information against Microsoft Learn.