AI Instructor Live Labs Included Exam Prep

AI-103: Developing AI Apps and Agents on Azure for Python Developers

Build production-ready generative AI solutions and agents on Microsoft Foundry using the OpenAI Responses API, Foundry Agent Service SDK, Microsoft Agent Framework, Azure AI Search, Content Understanding (documents + video), Vision, and Voice Live — aligned to the AI-103 certification.

Intermediate
2d 3h 50m
32 Lessons
AI-103
AI-103: Developing AI Apps and Agents on Azure Badge

View badge details

Exam Preparation

Exam Preparation Included

Practice with real exam-style questions for the AI-103 certification. AI-powered feedback helps you understand every answer.

Practice Questions Track Progress AI Feedback

About This Course

Prepare for the AI-103 certification by designing, building, securing, and evaluating generative AI solutions on Microsoft Foundry. Across 14+ hands-on lessons, you will provision Foundry accounts and projects, implement keyless managed-identity auth, design responsible AI safeguards, wire up tool-calling chats via the OpenAI Responses API, build RAG pipelines with evaluation, orchestrate single and multi-agent systems using the Foundry Agent Service SDK and the Microsoft Agent Framework (including Agent-to-Agent federation), fine-tune your own models, process images and speech, build voice-live agents, and extract structured data with Azure AI Content Understanding for both documents and video. The course culminates in the Northwind Horizon capstone a unified FastAPI service that combines chat, RAG, agents, vision, speech, and extraction behind a single API surface.

Course Curriculum

32 Lessons
01
AI Lesson
AI Lesson

Model Selection & Foundry Tools

45m

Learn how to choose the right model for a workload across the full Foundry catalog — Azure Direct models (OpenAI, Phi) and partner/community models (Anthropic Claude, Meta Llama, Mistral, Cohere, DeepSeek) — using task type, modality, context window, cost, latency, and deployment type as decision inputs. You'll learn deployment type trade-offs (Global Standard, Provisioned, Batch, DataZone, Managed Compute), how Foundry Tools (Bing Grounding, Code Interpreter, File Search) augment base models, and which models support function/tool calling. In the hands-on lab that follows, you'll deploy three models and benchmark them on the same prompt set.

02
Lab Exercise
Lab Exercise

Model Selection & Foundry Tools - Lab Exercises

2h 30m 2 Exercises

Deploy three Foundry models, then benchmark them on latency, token usage, and tool-calling support using the model-explorer starter project. You'll finish compare_models.py and toolcall_probe.py using the Responses API via AIProjectClient.get_openai_client().

03
AI Lesson
AI Lesson

Foundry Infrastructure & Deployments

45m

Author Bicep to provision a Foundry hub and project, wire up connections to AI Search, Storage, and Application Insights, then deploy it with azd/az and set up a GitHub Actions pipeline using OIDC federated authentication. You'll also deploy a model into the project via ARM.

04
Lab Exercise
Lab Exercise

Foundry Infrastructure & Deployments - Lab Exercises

2h 45m 3 Exercises

Finish the Bicep template for a full Foundry stack (hub, project, AI Search, Storage, App Insights), deploy it with a shell script, then add a GitHub Actions workflow that redeploys on push using OIDC federated credentials.

05
AI Lesson
AI Lesson

Manage, Monitor, Secure AI

45m

Replace keys with managed identity, apply quotas, add monitoring, and use private endpoints. You'll learn how to configure a user-assigned managed identity, use DefaultAzureCredential from code, assign the right RBAC roles, set TPM quotas, wire Azure Monitor + Log Analytics, and add private endpoints to the Foundry project and AI Search.

06
Lab Exercise
Lab Exercise

Manage, Monitor, Secure AI - Lab Exercises

2h 0m 2 Exercises

Migrate a FastAPI chat endpoint from AZURE_OPENAI_API_KEY to keyless authentication using DefaultAzureCredential and AIProjectClient.get_openai_client(), then deploy bicep/identity.bicep to provision a user-assigned managed identity with the Azure AI User role assignment on the Foundry scope.

07
AI Lesson
AI Lesson

Responsible AI in Foundry

45m

Learn how to apply responsible AI controls end-to-end on Microsoft Foundry: content filter policies on model deployments, Azure AI Content Safety for runtime moderation, Foundry Evaluations for quality and safety scoring, OpenTelemetry tracing, and human-in-the-loop approval gates. This lesson maps to AI-103 objective 1d and prepares you to build responsible generative apps that meet enterprise governance requirements.

08
Lab Exercise
Lab Exercise

Responsible AI in Foundry - Lab Exercises

2h 25m 3 Exercises

Hands-on lab for AI-103 Lesson 5. You will build a responsible-AI orchestrator using Azure AI Content Safety as a pre/post filter, run Foundry Evaluations (groundedness, relevance, violence, hate) against an eval dataset, and add a human approval gate. Starter repo: ai-103-responsible-ai.

09
AI Lesson
AI Lesson

Build Generative Apps Part 1 — Chat & Tool Calling

45m

Learn how to build chat endpoints that leverage the OpenAI Responses API through Microsoft Foundry. Understand how to author function tool schemas, handle tool_call items, chain tool results with previous_response_id, and stream tokens. This lesson maps to AI-103 objective 2a (part 1) and prepares you to build production chat apps with tool calling on Azure.

10
Lab Exercise
Lab Exercise

Chat & Tool Calling - Lab Exercises

2h 20m 3 Exercises

Hands-on lab for AI-103 Lesson 6. You will implement a FastAPI /chat endpoint that calls the OpenAI Responses API via AIProjectClient.get_openai_client(), wire three function tools (get_weather, calculate, lookup_inventory), chain tool outputs with previous_response_id, and add streaming. Starter repo: ai-103-chat-tools.

11
AI Lesson
AI Lesson

Fine-tuning Foundation Models in Foundry

1h 15m

Learn when and how to fine-tune foundation models in Azure AI Foundry. Covers the decision framework (prompt vs RAG vs fine-tune), JSONL training data, SFT/DPO/RFT methods, the full lifecycle, cost + two-phase retirement, and the common failure modes to design around.

12
Lab Exercise
Lab Exercise

Fine-tuning Foundation Models in Foundry - Lab Exercises

2h 15m 7 Exercises

Note: This lab pre-provisions Azure resources at start — allow up to 10 minutes for the environment to become ready before beginning the exercises.

In this hands-on lab you fine-tune a gpt-4.1-mini foundation model on Summitline Outfitters' curated gear-recommendation dataset, deploy the fine-tuned model on a Developer-SKU deployment, and compare it against the base model on held-out Summitline test prompts. You will inspect the JSONL training format, submit a Supervised Fine-Tuning (SFT) job against the Foundry Azure OpenAI endpoint, poll job status + inspect loss / validation metrics, deploy the trained artifact keylessly, and eyeball a side-by-side quality comparison that shows the fine-tune consistently names in-catalog SKUs (pattern NW-SL-###) and cites the tool it used — where the base model does not.

13
AI Lesson
AI Lesson

Build Generative Apps Part 2 — RAG & Evaluation

45m

Learn to build Retrieval-Augmented Generation (RAG) applications on Microsoft Foundry: author an AI Search index with vector + keyword + semantic configuration, ingest and embed documents, query with VectorizedQuery + semantic ranking, ground responses with citations, and evaluate quality with azure-ai-evaluation. This lesson maps to AI-103 objective 2a (part 2) and is core for the exam.

14
Lab Exercise
Lab Exercise

RAG & Evaluation - Lab Exercises

2h 35m 3 Exercises

Hands-on lab for AI-103 Lesson 7. You will create an Azure AI Search index, ingest and embed documents from sample_docs/, implement a /chat endpoint grounded on hybrid + semantic search, and run azure-ai-evaluation groundedness + relevance evaluators against eval_data.jsonl. Starter repo: ai-103-rag-eval.

15
AI Lesson
AI Lesson

Agent Service Fundamentals

45m

Teaching lesson that introduces the Microsoft Agent Framework runtime pattern for building agents on Microsoft Foundry: FoundryChatClient constructed with a project endpoint + model deployment + system prompt + Python function tools, plus AgentThread for multi-turn conversation state. Concepts land here so students can execute them in Lab 2255 (Concierge Agent hands-on).

16
Lab Exercise
Lab Exercise

Agent Service Fundamentals - Lab Exercises

2h 5m 3 Exercises

Build a "Summitline concierge" agent with three function tools (get_weather, calculate, lookup_inventory) using the Azure AI Agents Service. You will author the AgentsClient + ToolSet wiring, drive a multi-turn thread, handle automatic tool execution, and pull a transcript back out.

17
AI Lesson
AI Lesson

Knowledge Tools & File Search

45m

Teaching lesson on grounding an Agent Framework agent with structured knowledge sources: uploading documents to a Foundry vector store and calling it via a function tool, wiring an Azure AI Search index as a function tool with SearchClient + VectorizableTextQuery, and building a Content Understanding function tool for domain-specific extraction. Concepts land here so students can execute them in Lab 2259.

18
Lab Exercise
Lab Exercise

Knowledge Tools & File Search - Lab Exercises

2h 25m 3 Exercises

Attach three knowledge tools to a Summitline Outfitters agent: FileSearchTool backed by a vector store of product PDFs, AzureAISearchTool bound to an AI Search connection, and a custom Content Understanding invoice extractor. Test routing by sending catalog, KB, and invoice questions at the same agent and inspecting citations.

19
AI Lesson
AI Lesson

Multi-Agent & Approval Flows

45m

Teaching lesson on multi-agent orchestration under Microsoft Agent Framework: each sub-agent is its own FoundryChatClient, and an orchestrator agent delegates to them via Python function tools that internally call sub_agent.run(...). Also covers human-in-the-loop approval gates and OpenTelemetry instrumentation. Concepts land here so students can execute them in Lab 2262.

20
Lab Exercise
Lab Exercise

Multi-Agent & Approval Flows - Lab Exercises

2h 30m 3 Exercises

Stand up an orchestrator agent that delegates to refund + lookup worker agents via ConnectedAgentTool, add a FastAPI approval queue that pauses refunds over $100 until a human approves, and wire OpenTelemetry through azure-monitor-opentelemetry so every span lands in Application Insights.

21
AI Lesson
AI Lesson

Computer Vision — Generation, Understanding, Responsible AI

45m

Certification prep lesson covering Azure OpenAI vision (Responses API with input_image) and gpt-image-1 generation / inpainting, with a caption-and-detect pipeline and responsible AI guardrails. Uses keyless DefaultAzureCredential and the Microsoft Learn MCP as the API source of truth.

22
Lab Exercise
Lab Exercise

Computer Vision - Lab Exercises

2h 30m 4 Exercises

Hands-on companion for Lesson 11. Students complete four Vision exercises in the ai-103-vision FastAPI starter: generate, edit/inpaint, caption, and caption+detect with drawn bounding boxes. Keyless auth, Azure Validator checks each endpoint, and a capstone AI assessment closes the lab.

23
AI Lesson
AI Lesson

Video Understanding with Content Understanding

1h 30m

Learn how to process, analyze, and reason over video content using Azure Content Understanding in Foundry Tools. Covers single-task vs pro-mode analyzers, field schema design for video, multimodal reasoning over video output, agent integration with timestamped citations, and an honest briefing on the state of video generation in Foundry (Sora discontinuation) and how it affects the AI-103 exam.

24
Lab Exercise
Lab Exercise

Video Understanding with Content Understanding - Lab Exercises

2h 15m 7 Exercises

Note: This lab pre-provisions Azure resources at start — allow up to 10 minutes for the environment to become ready before beginning the exercises.

You are on the Summitline Outfitters engineering team building the video-analytics side of the product-support toolset. In this hands-on lab you will (1) upload sample product-demo videos to Azure Blob Storage, (2) author a Content Understanding pro-mode video analyzer with a Summitline-specific JSON schema (products demonstrated, key features shown, scene summary, presenter quality, duration), (3) invoke the analyzer and inspect the segmented output, (4) index each analyzer segment into Azure AI Search with vector embeddings from text-embedding-3-large, (5) wrap the whole flow as a Foundry agent FunctionTool that returns results with timestamped citations, and (6) run an end-to-end query — "show me videos where the tent is set up in windy conditions" — that reasons across the indexed segments. All auth is keyless via DefaultAzureCredential; no API keys are used.

25
AI Lesson
AI Lesson

Text Analysis & Speech

45m

Certification prep lesson on Azure AI Language (entities, sentiment, opinion mining), Azure Speech SDK 1.46 (STT, TTS, continuous recognition, translation), and Translator v3.0 REST. Keyless auth where supported; Microsoft Learn MCP is the canonical API reference.

26
Lab Exercise
Lab Exercise

Text Analysis & Speech - Lab Exercises

2h 10m 3 Exercises

Hands-on companion for Lesson 12. Students complete three exercises in ai-103-text-speech: Azure AI Language analyze (entities+sentiment+opinions), Speech STT/TTS round-trip, and Translator v3.0 text translation. Azure Validator confirms each FastAPI endpoint.

27
AI Lesson
AI Lesson

Voice Live Agents with Azure Speech and Foundry

1h 15m

Build hands-free, real-time voice agents for Summitline Outfitters store associates using Azure Speech Voice Live and a Foundry agent. Learn the WebSocket speech-to-speech architecture, session configuration, voice + VAD tuning, function-tool invocation over voice, latency budgets, and failure-mode handling.

28
Lab Exercise
Lab Exercise

Voice Live Agents with Azure Speech and Foundry - Lab Exercises

2h 15m 6 Exercises

Note: This lab pre-provisions Azure resources at start — allow up to 10 minutes for the environment to become ready before beginning the exercises.

Build the hands-free product-question voice agent for Summitline Outfitters using the Azure Voice Live API and a Microsoft Foundry hosted agent. You will deploy a Foundry agent backed by an Azure AI Search RAG index over Summitline product docs (tent, backpack, sleeping bag, jacket, boots), wire the agent behind a Voice Live real-time WebSocket session, drive it with pre-recorded WAV files (the container is headless — no microphone), demonstrate barge-in interruption, and register a check_inventory(sku) function tool the agent can invoke mid-conversation. All auth is keyless via DefaultAzureCredential.

29
AI Lesson
AI Lesson

Retrieval & Information Extraction

45m

Certification prep lesson on Azure AI Search 11.6 hybrid + semantic retrieval (HNSW vector, VectorizedQuery, QueryCaptionType), and Azure Content Understanding 2024-12-01-preview analyzer lifecycle (PUT, analyze, poll, read fields). End-to-end: CU extract then index.

30
Lab Exercise
Lab Exercise

Retrieval & Information Extraction - Lab Exercises

2h 30m 4 Exercises

Hands-on companion for Lesson 13. Four exercises in ai-103-ingest-extract pipeline: Content Understanding extract with analyzer lifecycle and polling, chunk+embed+ingest, create HNSW+semantic index, hybrid semantic query with captions and answers.

31
AI Lesson
AI Lesson

Capstone — Summitline Outfitters AI Platform

45m

Capstone lesson unifying chat, RAG, tool-using agents (Azure AI Agents 1.1.0 with AgentsClient + ToolSet + FunctionTool), vision, Content Understanding, and speech behind a single FastAPI app. Azure Monitor OpenTelemetry tracing with DefaultAzureCredential throughout. Business framing: Summitline Outfitters — a specialty outdoor-gear retailer rolling out an AI concierge + internal knowledge platform.

32
Lab Exercise
Lab Exercise

Capstone — Summitline Outfitters - Lab Exercises

2h 35m 4 Exercises

Hands-on Summitline Outfitters capstone. Four exercises in ai-103-capstone: chat+tracing with AIProjectClient and Azure Monitor OTel, grounded RAG with citations, tool-using agent via AgentsClient 1.1.0 with FunctionTool for get_order_status, Content Understanding invoice extract, and the full test_client.py smoke test. All six endpoints (/chat, /rag, /agent, /vision-ask, /extract-doc, /voice) observable in App Insights.

This course includes:

  • 24/7 AI Instructor Support
  • Live Lab Environments
  • 16 Hands-on Lessons
  • Exam Prep Included
  • Completion Badge
AI-103: Developing AI Apps and Agents on Azure Badge

Earn Your Badge

Complete all lessons to unlock the AI-103: Developing AI Apps and Agents on Azure achievement badge.

Skill Level Intermediate
Total Duration 2d 3h 50m
AI-103: Developing AI Apps and Agents on Azure Badge
Achievement Badge

AI-103: Developing AI Apps and Agents on Azure

Awarded for completing the AI-103 course covering AI application development, generative AI, agentic solutions, computer vision, text analysis, and information extraction on Azure using Python and Microsoft Foundry.

Course AI-103: Developing AI Apps and Agents on Azure for Python Developers
Criteria Complete all lessons in the AI-103: Developing AI Apps and Agents on Azure for Python Developers course
Valid For 730 days

Skills You'll Earn

Azure AI Foundry Generative AI AI Agents RAG Computer Vision Azure AI Services Python Responsible AI

Complete all lessons in this course to earn this badge