Learning Objectives
- Design AI-powered support and self-service systems with appropriate guardrails
- Identify the key risks in AI customer-facing features: hallucination, PII exposure, bias
- Apply a governance framework for AI product decisions
- Write an AI feature policy for a product team
- Define when to escalate AI decisions to human review
Lesson 11.1 — AI in Customer-Facing Support
AI support systems — chatbots, virtual assistants, automated resolution engines — are among the most common and highest-risk AI features PMs ship. They sit at the intersection of user trust, operational efficiency, and compliance exposure.
AI Support Architecture Patterns
| Pattern | How it works | Best for | Risk level |
|---|---|---|---|
| FAQ deflection | Matches user query to known answers from a knowledge base | High-volume, low-variance queries | Low |
| Intent classification + routing | Classifies intent and routes to correct team or flow | Complex support with multiple departments | Low–Medium |
| Generative response | LLM generates a custom response using RAG-retrieved context | Complex, nuanced queries with varying context | Medium–High |
| Autonomous resolution | AI takes action (refund, account change) without human review | Simple, reversible, low-stakes transactions | High |
Escalation Design
Every AI support system needs a clear escalation path. Design escalation triggers before launch:
- Confidence threshold: If AI confidence is below X%, route to human agent
- Sentiment detection: Angry or distressed users get human handling
- Topic blocklist: Legal, medical, regulatory, or sensitive topics always escalate
- Repeat contact: If the same user contacted support N times in Y days, escalate
- Explicit user request: "Talk to a human" must always be honoured immediately
Lesson 11.2 — AI Risk: PII, Hallucination, and Bias
PII in AI Systems
Personal Identifiable Information (PII) in AI pipelines creates serious compliance risk. As a PM, you are responsible for ensuring your AI features don't inadvertently collect, log, or expose PII.
| Risk | Example | Mitigation |
|---|---|---|
| PII in prompts | User pastes account number into chat | PII detection middleware strips or masks before sending to LLM |
| PII in logs | Chat transcripts logged with names and emails | Log at intent level, not message level; anonymise before storage |
| PII in RAG chunks | Support docs contain example customer names | Audit knowledge base for PII before ingestion |
| Model memory | Conversational AI "remembers" PII across sessions | Stateless sessions by default; explicit opt-in for memory features |
Hallucination Management
Hallucinations — confident but false AI responses — are not fully preventable. PMs design systems that minimise harm when they occur:
- Scope containment: Limit the AI to topics where you have high-quality RAG documents
- Citation requirements: Prompt the AI to cite the source chunk for every claim
- Uncertainty surfacing: Prompt the AI to say "I'm not certain" rather than guess
- Human review for high-stakes answers: Refunds, legal info, billing disputes always go to human
- User reporting: Easy thumbs-down + reason helps you identify hallucination patterns quickly
Bias in AI Features
AI systems can perpetuate or amplify bias in ways that create real harm and regulatory exposure. Key bias risk areas for PMs:
- Training data bias: If the model was trained on non-representative data, outputs may systematically disadvantage certain groups
- Prioritisation bias: Recommendations or routing that consistently deprioritises certain demographics
- Language bias: Quality degradation for non-English or non-standard English users
- Feedback loop bias: When AI recommendations influence user behaviour, and that behaviour re-enters training data, bias compounds
Lesson 11.3 — AI Governance Framework for PMs
Governance is not a legal formality — it is the operational structure that makes AI features safe to ship and maintain.
The PM AI Governance Checklist
| Category | Question | Required before launch |
|---|---|---|
| Data | What data does this feature use? Is any of it PII? | Data flow diagram + PII classification |
| Consent | Do users know they are interacting with AI? | AI disclosure in UI |
| Accuracy | How do we measure and monitor output quality? | Accuracy baseline + alerting threshold |
| Escalation | What happens when AI is wrong or uncertain? | Escalation path documented and tested |
| Bias | Have we tested for differential performance across user groups? | Bias evaluation report |
| Audit trail | Can we reconstruct what the AI said and why? | Logging spec + retention policy |
| Override | Can humans override AI decisions? | Human-in-the-loop mechanism defined |
| Sunset | How do we retire this feature safely? | Deprecation plan |
Lab 11 — AI Support Feature Policy & Risk Audit
You will design the governance layer for a new FlowScale AI support feature: an AI chat assistant for billing queries.
FlowScale's AI billing assistant can handle: payment status queries, failed payment explanations, dunning schedule info, and invoice downloads. Use this prompt:
Map the data flow for the FlowScale AI billing assistant. Identify every point where PII could enter the system and what mitigation applies. Use the prompt:
Using the 8-category governance checklist from Lesson 11.3, complete each row for the FlowScale AI billing assistant. For each category, write a one-sentence answer and specify the deliverable that must exist before launch.
Deliverables
- Escalation trigger table: minimum 8 triggers covering all 5 categories
- PII data flow: step-by-step flow with risk and mitigation for each step
- Governance checklist: all 8 categories completed with pre-launch deliverable specified
How to Verify Completion
- Escalation table includes an explicit trigger for "user asks to speak to a human" with action "immediate human handoff, no AI retry"
- PII data flow identifies the LLM API call as a PII risk point and specifies masking or stripping as mitigation
- Governance checklist includes an AI disclosure requirement (users must know they're talking to AI)
- At least one topic is on the blocklist (e.g., legal disputes, account termination) that always routes to human
- Checklist includes an audit trail entry specifying what is logged and for how long
Module 11 Quiz
7 questions · click an option to answer · review all before checking your score
1. Which AI support architecture pattern carries the highest risk level?
2. A user types their full credit card number into your AI support chat. What mitigation should be in place?
3. What is the correct approach to AI hallucination as a PM?
4. Which escalation trigger must ALWAYS be honoured immediately?
5. What is a feedback loop bias in AI systems?
6. What must a PM ensure before launching any AI-facing customer feature?
7. When designing AI logging for a support system, what is the recommended approach?