Your progress, quiz answers, and scores will be saved automatically so you can pick up right where you left off — even after closing the browser.
LEVEL 2 — PRACTITIONER
✓ synced
👤—▼
👤
—
—
—
Account Status—
Member Since—
Theme
Level 2 — Practitioner
Level 02 Practitioner
Hands-on. Code-first. Production-grade. This curriculum takes you from conceptual understanding to building real AI systems — from Python foundations through RAG pipelines to your own document intelligence agent.
9Cases
4Real Projects
1Capstone System
6–7Target Level
PROGRESS0%
Phase 1 — Python for AI
01
Python Foundations
Python Foundations for AI
Variables, functions, loops, files, APIs — only the Python you actually need to build AI systems. No fluff.
▾
// Learning Topics
✓
Why Python + Essential Data Types
→ Read
✓
Functions, Loops & Control Flow
→ Read
✓
Strings, Files & Package Management
→ Read
✓
AI-Specific Python Patterns
→ Read
✓
What Breaks and Why: Debugging
→ Read
Checkpoint Quiz
1. In Python, what does this code do? data = {"name": "Alice", "score": 95} then print(data["score"])
A. Prints the entire dictionary
B. Prints 95 — it accesses the value associated with the key "score"
C. Throws an error because dictionaries aren't printable
ReAct loops, tool use, multi-agent systems, and designing agents that think before they act.
▾
// Learning Topics
✓
From Answering to Acting: Agent Fundamentals
→ Read
✓
Tool Definition & Tool Use
→ Read
✓
Memory Architecture
→ Read
✓
Multi-Agent Systems
→ Read
✓
Human-in-the-Loop Design + Build Exercise
→ Read
// Practitioner Tip — Context Window Management
The context window is the investigator's working memory — and like all memory, it has a ceiling. Before a session fills up, instruct the AI to generate a carry-forward prompt: a self-contained brief covering active goals, key decisions, outputs produced, and open threads. Close the session. Start a new one. Paste the brief in first. The investigation continues without losing the thread. This is how experienced practitioners keep long-running cases moving when the context ceiling approaches.
Checkpoint Quiz
1. In a ReAct loop, what is the correct sequence of steps?
A. Think → Select tool → Execute tool → Observe result → Loop
B. Select tool → Execute tool → Think → Observe result