Skip to main content

Phase 5: Cloud + AI Integration (Weeks 21–28)

Objective: Integrate cloud and AI knowledge into complete enterprise solutions. Build RAG systems, learn model evaluation, and earn AI-900 certification (with optional advanced AI-103 path).

🎯 Expected Outcomes​

By completing this phase:

  • Azure AI Foundry mastered (models, evaluations, agents)
  • RAG (Retrieval-Augmented Generation) implemented
  • AI evaluation and monitoring in production
  • AI-900 certification earned
  • Functional RAG system in portfolio

Weeks 21-22: Azure AI Foundry​

Objective​

Master Microsoft's AI platform for building and deploying enterprise solutions.

Main Resources​

ResourceLanguageTypeDuration
Azure AI Foundry DocumentationπŸ‡ͺπŸ‡Έ SpanishDocs8 hrs
Microsoft Learn: Azure AI Foundry (What is it?)πŸ‡ͺπŸ‡Έ SpanishDocs6 hrs
Azure AI Foundry QuickstartsπŸ‡ͺπŸ‡Έ SpanishLabs4 hrs
Azure OpenAI ServiceπŸ‡ͺπŸ‡Έ SpanishDocs4 hrs
DeepLearning.AI: Building with Azure AIπŸ‡¬πŸ‡§ EnglishCourse3 hrs

Week 21 Plan​

DayTopicPractice
MondayAzure AI Foundry: overview, projects, hubsCreate project
TuesdayAvailable models: GPT-4, GPT-4o, PhiCompare models
WednesdayPlayground: prompt testing and refinementExperiment
ThursdayDeployments: quotas, rate limits, regionsDeploy model
FridayContent filters and safety settingsConfigure safety

Week 22 Plan​

DayTopicPractice
MondayAzure AI Agents: overview and typesExplore Agent Service
TuesdayAgents with tools: code interpreter, file searchBuild agent
WednesdayEvaluations: built-in and custom metricsEvaluate responses
ThursdayPrompt flow: orchestration flowsDesign flow
FridayMonitoring and logging in productionMetrics dashboard

Key Concepts​

Azure AI Foundry:
β”œβ”€β”€ Hub (organizaciΓ³n)
β”‚ └── Project (workspace)
β”‚ β”œβ”€β”€ Models
β”‚ β”‚ β”œβ”€β”€ Azure OpenAI (GPT-4, GPT-4o)
β”‚ β”‚ β”œβ”€β”€ Open models (Phi, Llama, Mistral)
β”‚ β”‚ └── Custom fine-tuned
β”‚ β”œβ”€β”€ Agents
β”‚ β”‚ β”œβ”€β”€ Code Interpreter
β”‚ β”‚ β”œβ”€β”€ File Search
β”‚ β”‚ └── Custom Tools
β”‚ β”œβ”€β”€ Evaluations
β”‚ β”‚ β”œβ”€β”€ Groundedness
β”‚ β”‚ β”œβ”€β”€ Relevance
β”‚ β”‚ β”œβ”€β”€ Coherence
β”‚ β”‚ └── Custom metrics
β”‚ └── Deployments
β”‚ β”œβ”€β”€ Serverless
β”‚ └── Provisioned

Weeks 23-24: RAG (Retrieval-Augmented Generation)​

Objective​

Build a system that answers questions based on internal documents, eliminating hallucinations.

Main Resources​

ResourceLanguageTypeDuration
Microsoft Learn: RAG with Azure AIπŸ‡ͺπŸ‡Έ SpanishDocs3 hrs
DeepLearning.AI: Building RAG ApplicationsπŸ‡¬πŸ‡§ EnglishCourse3 hrs
LangChain RAG TutorialπŸ‡¬πŸ‡§ EnglishTutorial4 hrs
Azure AI Search DocumentationπŸ‡ͺπŸ‡Έ SpanishDocs4 hrs
Pinecone: RAG GuideπŸ‡¬πŸ‡§ EnglishGuide2 hrs

Week 23 Plan​

DayTopicPractice
MondayRAG concepts: why, how, architectureDiagram system
TuesdayEmbeddings: text β†’ vectorsGenerate embeddings
WednesdayVector stores: Azure AI Search, PineconeSetup vector store
ThursdayChunking strategies: size, overlapProcess documents
FridayRetrieval: similarity search, hybridImplement search

Week 24 Plan​

DayTopicPractice
MondayGeneration: prompt with contextSystem prompts for RAG
TuesdayEvaluation: groundedness, relevanceMeasure quality
WednesdayAdvanced: reranking, metadata filtersImprove precision
ThursdayProduction: caching, monitoringOptimize
FridayDeploy complete projectβ€”

πŸ”¨ Project: Internal Policy Chatbot​

Chatbot that answers questions about an organization's internal policies:

Policy Chatbot Architecture:
β”œβ”€β”€ Document Ingestion
β”‚ β”œβ”€β”€ PDF/Word processing
β”‚ β”œβ”€β”€ Chunking (500 tokens, 50 overlap)
β”‚ └── Embedding generation
β”œβ”€β”€ Vector Store
β”‚ β”œβ”€β”€ Azure AI Search / ChromaDB
β”‚ └── Metadata indexing
β”œβ”€β”€ Retrieval
β”‚ β”œβ”€β”€ Similarity search (top-k)
β”‚ β”œβ”€β”€ Hybrid search (vector + keyword)
β”‚ └── Reranking
β”œβ”€β”€ Generation
β”‚ β”œβ”€β”€ System prompt (compliance expert)
β”‚ β”œβ”€β”€ Context injection
β”‚ └── Source citations
└── Interface
β”œβ”€β”€ Streamlit UI
└── API endpoint

Example documents:

  • Information security policy
  • Acceptable use policy
  • Incident response plan
  • Data privacy policy

Deliverable: Complete repository with code, documentation, and demo.


Weeks 25-26: AI Monitoring and Safety​

Objective​

Learn to monitor AI systems in production and detect issues before they impact users.

Main Resources​

ResourceLanguageTypeDuration
Microsoft: AI Content SafetyπŸ‡ͺπŸ‡Έ SpanishDocs3 hrs
Azure AI Evaluation SDKπŸ‡ͺπŸ‡Έ SpanishTutorial4 hrs
Giskard: AI TestingπŸ‡¬πŸ‡§ EnglishTool3 hrs
OWASP Top 10 for LLMsπŸ‡¬πŸ‡§ EnglishFramework4 hrs
Microsoft: Red Teaming AIπŸ‡ͺπŸ‡Έ SpanishGuide2 hrs

Week 25 Plan​

DayTopicPractice
MondayHallucinations: causes and detectionEvaluate models
TuesdayContent safety: filters and moderationImplement filters
WednesdayPrompt injection: attacks and defensesRed team exercise
ThursdayData leakage: preventionPII detection
FridayOWASP Top 10 for LLMsAssessment

Week 26 Plan​

DayTopicPractice
MondayEvaluation metrics: groundedness, coherenceEvaluation SDK
TuesdayA/B testing prompts and modelsTesting framework
WednesdayMonitoring dashboardsAzure Monitor + AI
ThursdayAlerting and incident response for AIPlaybooks
FridayComplete AI Red Team exerciseDocument findings

πŸ”¨ Project: AI Safety Testing Framework​

Create a testing framework that includes:

  1. Test cases for prompt injection
  2. Groundedness evaluation (hallucinations)
  3. PII detection checks
  4. Content safety validation
  5. Performance benchmarks
  6. Reporting template

Weeks 27-28: AI-900 Certification (+ Optional AI-103)​

Objective​

Consolidate knowledge and earn AI-900 certification.

AI-900 Resources​

ResourceLanguageTypeDuration
Microsoft Learn: AI-900πŸ‡ͺπŸ‡Έ SpanishLearning Path8 hrs
AI-900 Study GuideπŸ‡ͺπŸ‡Έ SpanishOfficial guideReference
John Savill's Technical Training (YouTube)πŸ‡¬πŸ‡§ EnglishVideo (study cram)2 hrs
Official AI-900 Practice Assessment (free)πŸ‡ͺπŸ‡Έ SpanishFree official practice2 hrs

Week 27 Plan​

DayModuleTopic
MondayModule 1AI workloads and considerations
TuesdayModule 2Machine Learning fundamentals
WednesdayModule 3Computer Vision
ThursdayModule 4NLP and Document Intelligence
FridayModule 5Generative AI

Week 28 Plan​

DayActivity
MondayGeneral review + gaps
TuesdayPractice exams
WednesdayReview weak areas
ThursdayFinal practice exam
FridayAI-900 exam
SaturdayIf passed: plan next credential (AI-103 or vendor-neutral)

Certification: AI-900​

  • Cost: $99 USD
  • Language: Available in Spanish
  • Format: 40-60 questions, 45 minutes
  • Passing score: 700/1000
  • Domains:
    • AI workloads and considerations (15-20%)
    • Machine Learning on Azure (20-25%)
    • Computer Vision workloads (15-20%)
    • NLP workloads (15-20%)
    • Generative AI workloads (15-20%)

Optional: AI-103 (if there is time and motivation)​

For advanced candidates with a development objective, AI-103 adds value:

  • Associate level (more weight than Fundamentals)
  • Successor to AI-102 (retired Jun 30, 2026); covers generative AI apps and multi-agent solutions with Microsoft Foundry (Python)
  • Verify price, status (beta/GA), and syllabus on the official AI-103 page
  • Requires 4-6 additional weeks of preparation
Governance/program instead of development? Consider vendor-neutral

If your target is AI Program Manager / AI Governance / TPM (not writing production code), a vendor-neutral credential such as IAPP AIGP or PMI-CPMAI (exam in Spanish) often provides more return than AI-103. See the full ladder in Plan Overview.

Stack portability

The patterns in this phase (RAG, evaluation, agents, safety) do not depend on one vendor. Everything you build in Azure AI Foundry can be replicated with LangChain / LlamaIndex, open models (Llama, Mistral, Phi), and open vector stores (ChromaDB, pgvector, FAISS). Use Azure as one example, but document your project in a vendor-agnostic way so it applies to employers using AWS, GCP, or open-source stacks.


πŸ“‹ Phase 5 Checklist​

  • Azure AI Foundry: models, agents, evaluations
  • RAG: complete system implemented
  • Policy Chatbot: functional and documented
  • AI Safety: OWASP LLM Top 10 understood
  • Red teaming: exercise completed
  • AI Safety Testing Framework: created
  • AI-900 Learning Path: completed
  • AI-900 certification: earned
  • Portfolio: 10+ projects in GitHub

πŸ”— Resume Value​

After this phase:

"I implemented enterprise RAG systems with Azure AI Foundry, including document ingestion, vector search, and generation with source citations. I designed AI safety testing frameworks that evaluate hallucinations, prompt injection, and data leakage. Certifications: AZ-900, SC-900, AI-900."

⏭️ Next Phase​

Phase 6: Career Launch β†’