AI Agents in Finance · Level 3 - Production
Launching soon Join the waitlist
Level 3 · Production · 7-week program · OpenAI Agents SDK + LangGraph + LlamaIndex

Master AI agents in finance end to end, and make them production-grade

The complete advanced course: everything about agents, taken to production grade. You cover the full landscape fast: design patterns, planning and workflow patterns, multi-agent orchestration, memory in all its forms, and reasoning patterns from ReAct to tree search. Then you go where no other level goes: harness and loop engineering (the discipline of making agent loops trustworthy), guardrails, security and auditability, observability at scale with cost dashboards, evaluation from LLM-as-a-judge to deterministic code evaluators, and RAG evaluation applied to an agentic RAG pipeline.

You finish with three production deep dives: an Autonomous Rates Analyst (Iron Reflex) hardened layer by layer, a Regulated Robo-Advisor Platform (By the Book) carrying the full compliance harness, and a Global Macro Monitoring Desk (Watchdog) that raises alerts with a human in the loop. Then you build a capstone of your own.

7-week program 11 chapters 21 labs 3 deep dives + capstone OpenAI Agents SDK + LangGraph + LlamaIndex Standalone: Level 2 not required
Taught by the co-author of the Packt book Building AI Agents for Finance
Fit check

For people whose agents have to work on Monday morning

This is the advanced course of the series: complete coverage, production depth. Thirty seconds of honesty saves you a refund request.

This course is for you if…

  • You write Python, work in or around finance, and want the complete agent picture in one place, taken all the way to production.
  • You've built agents that work in a notebook and been asked the hard questions: what happens when it fails, what does it cost, how do we know it's still good?
  • You're responsible for reliability or compliance: guardrails, audit trails, evaluation evidence, human sign-off.
  • You want evaluation treated as a first-class engineering discipline, including RAG evaluation with real metrics.
  • You've taken Level 1, or you're jumping in directly. Either works: week 1 rebuilds the foundations from zero, fast.

It's not for you if…

  • You've never written Python. The week-1 sprint compresses foundations; it doesn't skip them, but it assumes you code.
  • You want to spend your lab hours building each architecture pattern one by one, in depth. That's Level 2, the Architect course.
  • You're looking for prompt tips. This is production engineering: budgets, failure handling, evaluation.
  • You expect trading signals or investment advice. You'll build analytical systems, not a money machine.
Outcomes

By the end, you will

Every outcome maps to a lab you build: starter notebook in, working system out.

01
Command the full agent landscape: design patterns, planning, workflow patterns, orchestration, memory, and reasoning, recapped fast and applied in production form.
02
Engineer the harness: the loop around the model, with turn and token budgets, stop conditions, retries, cost circuit breakers, and checkpoint-and-resume. The discipline no tutorial teaches.
03
Harden a multi-agent team: a supervisor system with bounded workers and structured failure states that you instrument, evaluate, and serve as the course progresses.
04
Apply advanced reasoning with a cost model: self-refinement, tree-of-thoughts, and tree search on real portfolio decisions, knowing what each extra call buys.
05
Guard, secure, and audit: guardrails with tripwires, a red-team battery, injection defense, action tiers, and audit trails that reconstruct why an agent acted.
06
Observe at scale: instrument a whole agent team persistently and build the cost dashboard: tokens and dollars per agent, per run, over time.
07
Evaluate everything: judged QA at scale, tool-selection and trajectory evals, code-execution checks, and the RAG evaluation triad applied to an agentic retrieval pipeline.
08
Prove it end to end: three production deep dives assembling every layer you built, then a capstone of your own: at least two cooperating agents with guardrails, tracing, and an eval.
Method

How this course is taught

The same pedagogy used in corporate training rooms at financial institutions, proven on people who bill by the hour.

🏭

Production lens on everything

Every pattern is taught with its failure modes, its cost model, and its guard. Failure is the default case; the labs are built around what breaks.

🧩

One harmonized stack

Every lab runs on the OpenAI Agents SDK, LangGraph, or LlamaIndex, with open-source tracing and evaluation tools on top. Nothing exotic, nothing you can't reuse at work.

📈

Finance-native labs

Equity screening with compliance surprises, portfolio rebalancing, hedging decisions, client intake, advisory workflows: the systems your desk actually needs.

🧱

One system, hardened all course

The team you build in week 2 gets instrumented and evaluated in week 5, then carried into the deep dives, which assemble every layer you built.

Curriculum

7 weeks · 11 chapters · 21 labs · 3 deep dives + capstone

Each chapter ships a concept lesson and Colab-ready labs. Week 1 is steep by design; weeks 3 and 5 are the heaviest build weeks. Here is what each one covers.

Week 1 · The full agent landscape, fast
Ch 1Foundations Sprint & the Design-Pattern Map

One research agent built three ways: the raw loop, the SDK, the graph. Around it, the full design-pattern map and the lens the whole course applies: in production, failure is the default case, cost is a budget, and every run must be reconstructable.

Key concepts: the agent loop, one agent three ways, the design-pattern taxonomy (capability, reasoning, quality, orchestration), what production changes.

1 lab: the same research agent three ways, each variant with a production upgrade the tutorials skip.

Ch 2Planning & Workflow Patterns

How agents decide what to do before doing it, and the workflow patterns behind reliable pipelines: when a fixed, inspectable flow beats an autonomous agent, and how to run specialists in parallel.

Key concepts: planning styles and their trade-offs, prompt chaining with gates, parallelization, routing, orchestrator-workers, evaluator-optimizer, workflows vs agents in finance.

2 labs: a planning agent that survives a compliance surprise mid-run, and a parallel impact assessment across four types of finance actors.

Week 2 · The harness + hardened orchestration
Ch 3The Agent Harness: Loop Engineering

The signature chapter of this level, and a discipline no other level teaches: the harness is everything the loop must own that the model doesn't. Runaway loops, silent failures, and cost blowouts each get a detection signal and a guard.

Key concepts: turn and token budgets, stop conditions, tool dispatch, retries and timeouts, cost circuit breakers, checkpoint and resume, human interrupts, the loop failure taxonomy.

1 lab: familiar agent loops re-read through production robustness: bounded retries, budget guards, and disagreement as a live escalation signal.

Ch 4Multi-Agent Orchestration, Hardened

The orchestration map, then the production version: what state agents share, where a human signs off, and what a team needs to survive real traffic. Ends with a framework-landscape survey and a decision checklist.

Key concepts: supervisor/workers, orchestrator-worker, handoffs, agents-as-tools, shared state, context isolation, hardening a team, choosing a framework.

1 lab: a hardened supervisor team you keep all course: instrumented in week 5, evaluated in week 5, served in week 6.

Week 3 · Memory + advanced reasoning
Ch 5Memory in Full

The complete memory picture: what each kind of memory enables, how an agent learns from its own past sessions, and the production question underneath: what should an agent be allowed to remember, and who reviews it?

Key concepts: working vs long-term memory (episodic, semantic, procedural), learning from past sessions, compaction policies, pinned constraints, memory as a governance surface.

2 labs: an advisor that distills sessions into retrievable experience, and a compression lab measuring what each policy forgets and what it costs.

Ch 6Reasoning Patterns: from ReAct to Search

The full reasoning landscape, deep this time: how agents check their own work, and the search-based patterns that explore many candidate answers before committing, each with an honest cost model.

Key concepts: ReAct, self-refinement and reflection, self-consistency, tree-of-thoughts, tree search with backpropagation, verification patterns, LLM-as-a-judge with rubrics.

3 labs: a self-refining investment thesis writer, a tree-of-thoughts hedging decision, and a tree-search agent rebalancing a portfolio under constraints.

Week 4 · Guardrails, security & auditability
Ch 7Guardrails

Keeping an agent inside its mandate: guardrails as first-class components, the subtle race condition where a tool fires before the guardrail verdict lands, and red-teaming your own system before someone else does.

Key concepts: input and output guardrails, tripwires, the guardrail-vs-tool race condition, compliance-safe behavior, red-team batteries as living test assets.

2 labs: harden a fundamentals agent against out-of-scope queries and the race condition, then attack an advisory agent with a red-team battery.

Ch 8Security & Auditability

Agents that touch real workflows need defense and a paper trail: resisting injected instructions, tiering actions by how reversible they are, and being able to reconstruct for a reviewer exactly why the agent did what it did.

Key concepts: prompt-injection defense, action tiers, least-privilege tools, the trace as an audit file, tamper-evident plans, reconstructing an agent's history from its records.

2 labs: a hardened client-intake agent, and an audit lab that reconstructs an agent's decisions end to end.

Week 5 · Observability + evaluation
Ch 9Observability at Scale

From reading traces to running monitoring: instrument a whole agent team persistently, attach cost to every span, and turn a pile of runs into a dashboard someone can act on.

Key concepts: traces and spans for teams, persistent instrumentation, cost accounting per agent and per run, latency budgets, monitoring vs looking.

1 lab: instrument the week-2 team end to end and build its cost dashboard.

Ch 10Agent Evaluation

The chapter that separates a demo from a system: how do you know the agent is good, and how do you know it's still good after you change it? Judges where judgment is needed, code where code is better, and thresholds you re-check after every change.

Key concepts: offline evals over traces, synthetic datasets, LLM-as-a-judge vs deterministic code evaluators, tool-selection evals, trajectory convergence.

4 labs: judged QA at scale, tool-call evaluation, trajectory convergence, and code-execution checks.

Week 6 · RAG evaluation
Ch 11Agentic RAG & RAG Evaluation

First, what agentic RAG actually is: retrieval that routes, decomposes, grades itself, and refuses when the evidence isn't there. Then the part most courses skip: measuring it, with the metrics that tell you whether the retriever or the generator is failing.

Key concepts: naive-RAG failure modes, routing and decomposition, retrieval grading, cite-or-refuse, the RAG evaluation triad (faithfulness, answer relevance, context relevancy), hallucination metrics, ground-truth metrics.

2 labs: a metrics tour where a deliberately wrong answer makes the scores fail visibly, then build a routed retrieval pipeline over a real filing and evaluate it end to end.

Week 7 · Deep dives + capstone
DD 1–3Three deep dives + your capstone

Week 7 assembles everything into three production systems: an Autonomous Rates Analyst (Iron Reflex), a Regulated Robo-Advisor Platform (By the Book), and a Global Macro Monitoring Desk (Watchdog). Then you design and build your own capstone: at least two cooperating agents, with guardrails, tracing, and an eval. Full details below.

Deep dives

Three systems that earn the word "production"

Not demos, but complete, inspectable systems: each on a different production story, each on a different finance desk.

Iron Reflex
Planning + tree search + reflection memory, hardened

The Autonomous Rates Analyst

An agent that runs a rates desk's pre-inflation-print drill end to end: plans its research once, executes each step with cheap calls, decides through judged competing proposals, writes the desk memo, and learns lessons it reuses on the next run. Then every layer this course teaches gets wrapped around it: memory writes that need human approval, guardrails on inputs and outputs, full instrumentation with a cost ledger, and an evaluation gate that blocks degraded runs.

By the Book
The full compliance harness

The Regulated Robo-Advisor Platform

One advisory workflow carrying everything at once: suitability constraints enforced by guardrails, every decision traced, quality proven by evals, and an audit trail a reviewer could reconstruct. The synthesis build: if you can build this, you can stand behind agents in a regulated environment.

Watchdog
Supervised monitoring desk + human in the loop

The Global Macro Monitoring Desk

A supervisor drives specialist workers watching markets and macro events, raises alerts as they form, and escalates to a human before anything consequential goes out. The deep dive where orchestration, alerting, and human sign-off come together in one running desk.

Instructor

Learn from a practitioner who teaches this for a living

Hanane Dupouy

Hanane Dupouy is a finance-AI practitioner and corporate trainer, and co-author of the Packt book Building AI Agents for Finance. Hanane has taught these exact patterns to engineering teams inside international firms, and built this course the way those workshops run: show the limitation first, hand-build the mechanism second, adopt the framework third, always on finance data.

  • Co-author, Building AI Agents for Finance (Packt Publishing)
  • Corporate trainer
  • Conference speaker: CFA UK Institute, IMA, STAC AI, Packt AI Summit
  • Speaker inside corporates such as Thales Digital Factory and BPCE
  • 16+ years in finance: data scientist, then head of a data science and business intelligence team, and 5 years as an algorithmic trader
What you get

Everything included

ENROLLMENT OPENS SOON
7-week program · lifetime access to all materials
  • 11 chapters + 3 production deep dives + a guided capstone
  • All 21 labs as Colab-ready notebooks
  • Starter + full solution code for every lab
  • One harmonized stack: OpenAI Agents SDK, LangGraph, LlamaIndex
  • Runs with one OpenAI API key
  • All future updates included
Join the waitlist

Be first to know when enrollment opens.

FAQ

Questions, answered straight

What are the prerequisites? Do I need Level 1 or Level 2?
Level 2 is not required at all. Level 1 is not required as a purchase, but its fundamentals are: this course assumes you have built at least one agent, whether in Level 1 or elsewhere. You also need working Python (functions, classes, pip, comfortable reading tracebacks). Week 1 is an accelerated sprint that rebuilds the foundations and the pattern map from scratch, so nothing is skipped, but the ramp is steeper than a beginner course.
How is this different from Level 2? Which should I take?
They're parallel paths after Level 1, not a ladder. Level 2, the Architect course, spends its lab hours building each architecture pattern deeply: graphs, agentic RAG two ways, orchestration. Level 3, this course, covers the complete agent landscape and spends its lab hours where Level 2 doesn't go: harness engineering, guardrails, security, observability, and evaluation. Take Level 2 to design systems; take Level 3 to master the whole picture and make it production-grade. The concepts overlap where they must; the labs don't repeat.
How much time does it take?
The program is structured over 7 weeks at a few focused hours per week. Weeks 3 (reasoning, three labs) and 5 (observability and evaluation, five labs) are the heaviest. Everything remains available afterward, so you can go at your own pace.
What do I need to run the labs?
One OpenAI API key and either Google Colab (free, zero setup) or Python 3.11+ locally. The tracing and evaluation tools are open source, install with pip, and run fully locally with no extra account. Expect a few dollars of API usage for the whole course.
Which frameworks does this teach?
Every lab runs on the OpenAI Agents SDK, LangGraph, or LlamaIndex: nothing exotic, nothing you can't reuse at work. Open-source tracing and evaluation tooling sits on top as the instrumentation layer.
If I took Level 1 or Level 2, will I see the same labs again?
No lab repeats verbatim. Against Level 1 the dedup is strict. Where a concept is shared with Level 2, this course uses a different notebook, use case, or pattern variant, and its one shared lab (the experience-memory advisor) is flagged openly. The production chapters: harness, guardrails, security, observability, evaluation, exist only here.
What is the capstone?
In week 7 you design and ship your own system: any finance use case, at least two cooperating agents, plus at minimum guardrails, tracing, and one eval. Scope small and finish: a modest system that runs beats an ambitious diagram.
Will this teach me to trade or pick stocks?
No. You'll build analytical and advisory systems: research pipelines, monitoring desks, advisory platforms, document Q&A. This is an engineering course, not a trading course, and nothing in it is investment advice.

Anyone can demo an agent. You'll be able to make one production-grade.

Cover the whole landscape in seven weeks. Leave with systems that are guarded, observed, and evaluated.

Launching soon Get notified when it opens
Join the waitlist