Skip to content
Aakash GuptaAakash Gupta

Stop Applying to AI PM Jobs Until You Watch This

Jyothi Nookula has 13.5 years in AI, 12 patents, and has been an AIPM at Amazon (SageMaker), Meta (PyTorch), Netflix (Developer Platform), and Etsy. In this masterclass episode, she breaks down the two types of AIPM roles, the three layers of the AI stack, when AI makes sense versus when heuristics win, how to pick between ML, deep learning, and Gen AI, and builds AI agents and RAG systems live. Full Writeup: https://www.news.aakashg.com/p/jyothi-nookula-podcast Transcript: https://www.aakashg.com/jyothi-nookula-podcast/ --- Timestamps: 0:00 - Intro 1:43 - Is AI PM actually real or is it BS? 4:22 - The roadmap to becoming an AIPM 7:11 - 5 core concepts every AIPM needs to know 10:06 - What differentiates a PM from an AIPM 11:50 - Ads 15:20 - When to use AI and when not to use AI 20:42 - How to select the right AI technique 26:32 - AI agents: building blocks, workflows vs agents 31:03 - Ads 33:26 - Building a workflow vs an agent in N8N 43:40 - Prompt engineering and context engineering 48:15 - RAG systems explained and built in Langflow 58:57 - The AIPM career playbook and portfolio strategy 1:02:00 - How PM cultures differ at Amazon, Meta, and Netflix 1:07:15 - Why Jyothi left Netflix 1:11:15 - Outro --- 🏆 Thanks to our sponsors: 1. Product Faculty: Get $550 off their #1 AI PM Certification with my link - https://maven.com/product-faculty/ai-product-management-certification?promoCode=AAKASH550C7 2. Amplitude: The most accurate mobile session replays with no performance hit - https://amplitude.com/session-replay?utm_campaign=session-replay-launch-2025&utm_source=linkedin&utm_medium=organic-social&utm_content=productgrowthpodcast 3. Pendo: Measure your AI agent performance with Pendo Agent Analytics - http://www.pendo.io/aakash 4. NayaOne: Airgapped cloud-agnostic sandbox to validate AI tools faster - https://nayaone.com/aakash/ 5. Kameleoon: Prompt-based experimentation that turns days of dev time into minutes - http://www.kameleoon.com/ --- Key Takeaways: 1. Two types of AIPM roles exist - 80% are traditional PM roles with AI features added on, where the core product existed before AI. 20% are AI native roles where the product IS AI and the value proposition is impossible without it. Know which type before you apply. 2. The AI PM stack has three layers - Application PMs own user experience (60% of roles, easiest entry point). Platform PMs build tools for other builders (30%). Infra PMs build foundational systems like vector databases and GPU orchestration (10%). 3. 19 out of 20 AI pilots fail from wrong problem selection - AI makes sense for complex pattern recognition, prediction from historical data, and personalization at scale. If explainability is non-negotiable, rules exist, data is limited, or speed is critical, start with heuristics. 4. Most teams overcomplicate their AI technique choice - If you can put the problem in a spreadsheet with inputs and an output to predict, traditional ML is the answer. Perception problems need deep learning. Natural language reasoning needs Gen AI. These are not competitors, they are tools in your toolkit. 5. AI products are fundamentally probabilistic - The same input can produce different outputs. AIPMs must think in quality distributions and acceptable error rates, not binary success vs failure. Data is a first-class citizen, not a nice-to-have. 6. Agents decide, workflows follow steps - Workflows have predetermined sequences with deterministic outcomes. Agents receive goals and independently decide which tools to use. The live N8N demo showed identical tools producing completely different execution patterns. 7. Context engineering is the real production skill - Claude Sonnet has a 200K token context window but that fills fast with knowledge bases, conversation history, and real-time data. Every token costs money. Managing what to load and when directly impacts both quality and cost. 8. Follow the hierarchy before fine tuning - Prompt optimisation first, then context engineering, then RAG. 80% of use cases get solved with RAG. Fine tuning should only be considered after exhausting all three. 9. Build products not projects - Launch your AI work, get real users, encounter real breakage. That gives you richer interview material than any course certificate. Build an agent, build a RAG system, and build an app that solves a real problem. --- 👨‍💻 Where to find Jyothi Nookula: LinkedIn: https://www.linkedin.com/in/jyothinookula/ NextGen Product Manager: https://enterprisereadyaipmroadmap.com/ 👨‍💻 Where to find Aakash: Twitter: https://www.x.com/aakashg0 LinkedIn: https://www.linkedin.com/in/aakashgupta/ Newsletter: https://www.news.aakashg.com #aipm #aiproductmanagement --- 🧠 About Product Growth: The world's largest podcast focused solely on product + growth, with over 200K+ listeners. 🔔 Subscribe and turn on notifications to get more videos like this.

Jyothi NookulaguestAakash Guptahost
Mar 23, 20261h 12mWatch on YouTube ↗

CHAPTERS

  1. Why you should pause AI PM applications and learn the fundamentals first

    Aakash frames the episode as an AI PM “masterclass,” and Jyothi sets the tone: stop applying until you truly understand AI fundamentals. They establish credibility (Jyothi’s experience across Meta/Amazon/Netflix) and outline what the conversation will cover.

  2. Is “AI Product Manager” real? Two types of AIPM roles (AI features vs AI-native)

    Jyothi gives a data-driven breakdown of what companies label as “AI PM.” Most roles are traditional PM jobs with AI features added, while a smaller share are truly AI-native products where AI is the product itself.

  3. Roadmap to becoming an AIPM: where roles sit in the stack (Application vs Platform vs Infra)

    They map AIPM roles across the stack, from end-user experiences to developer platforms to infrastructure. The deeper you go, the more technical depth you need, and the role distribution skews heavily toward Application PM.

  4. What makes an AIPM different from a PM: probabilistic systems, data as product, and new constraints

    Jyothi defines classic PM responsibilities, then explains what uniquely changes with AI. AI products are probabilistic and iterative, data quality becomes central to UX, economics vary with usage, and responsible AI/guardrails become core product work.

  5. When to use AI vs rules/heuristics: choosing the right problems

    They emphasize that many AI pilots fail because teams choose the wrong problems. Jyothi gives patterns where AI shines (complex pattern recognition, prediction, personalization) and where rules-based approaches are better (explainability, clear rules, low data, urgent speed).

  6. Picking the right AI technique: traditional ML vs deep learning vs GenAI

    Jyothi introduces a practical decision framework: don’t jump straight to LLMs. Choose the technique based on data type, task type, constraints (cost, explainability), and user interaction patterns.

  7. AI agents fundamentals: definition, building blocks, and workflow vs agent decision

    They define agentic AI as goal-oriented systems that choose actions to achieve outcomes. Jyothi contrasts deterministic workflows (predefined steps) with agents (dynamic tool use), and explains agent architecture components.

  8. Hands-on build in n8n: create a deterministic workflow (weather → format → email)

    Jyothi demonstrates a simple automation workflow in n8n using a manual trigger, a weather API call, light transformation via a code node, and a Gmail send step. The focus is understanding workflow structure and how low-code tools help build intuition.

  9. Hands-on build in n8n: convert it to an agent (model + memory + tools)

    They rebuild the same use case as an agentic system: the agent decides when to call the weather tool and when to send email. This demonstrates the key difference—tool selection and sequencing is driven by intent and context, not a fixed pipeline.

  10. Prompt engineering and context engineering: production reliability, cost, and context windows

    Jyothi explains system vs user prompts and why few-shot examples are powerful in production. She expands to context engineering—managing what information is loaded into the model within context window limits while controlling cost.

  11. RAG explained: retrieve the right knowledge before you fine-tune

    They position RAG (Retrieval Augmented Generation) as the default enterprise approach for grounding LLMs in company knowledge. Jyothi presents a practical hierarchy: prompt optimization → context optimization → RAG → only then consider fine-tuning.

  12. Build a RAG system in Langflow: ingest, embed, store, retrieve, and answer

    Jyothi live-builds a two-part Langflow setup: a load/ingest flow to chunk and store embeddings in a vector database, and a retriever flow to embed queries, fetch relevant chunks, and pass them into an LLM via a prompt template.

  13. AIPM career playbook: products-not-projects, portfolios, and certifications

    They shift from building blocks to career strategy: the best portfolio items are real products with users, not isolated demos. Jyothi recommends showcasing agents and RAG systems, and using certifications as credible signals—without relying on them alone.

  14. How PM cultures differ at Amazon, Meta, and Netflix—and why Jyothi left Netflix

    Jyothi compares three distinct PM operating systems: Amazon’s document rigor, Meta’s experimentation, and Netflix’s autonomy via context. She explains leaving a dream role to go full-time into teaching and consulting, motivated by impact and the AI wave.

Get more out of YouTube videos.

High quality summaries for YouTube videos. Accurate transcripts to search & find moments. Powered by ChatGPT & Claude AI.

Add to Chrome