Discover
Breaktime Tech Talks
Breaktime Tech Talks
Author: jmhreif
Subscribed: 0Played: 8Subscribe
Share
© Copyright 2024 All rights reserved.
Description
A bite-sized tech podcast for busy developers where we’ll briefly cover technical topics, new snippets, and more in short time blocks. Your host, Jennifer Reif, is an avid developer and problem-solver with special interest in data, learning, and all things technology.
72 Episodes
Reverse
My recap of virtual presentations, live streams, and workshop support — sharing wins, lessons from a humbling live coding session, and a fascinating article on solving long-running LLM memory problems.
Highlights:
Delivered a virtual meetup for the San Francisco ACM on building knowledge graphs with the Neo4j GraphRAG Python package (code repository)
Helped as a TA during a Road to Nodes AI workshop covering MCP server integrations with Neo4j.
Attempted a live stream refactoring Postgres to Neo4j using OGM — ran into challenges that revealed documentation gaps and learning opportunities
Progress on the AI Java book with a productive working session
Shared a blog post by James Dunham: "Long Running LLM Conversations Need Working Memory, Not Just More Context" — which mirrors issues encountered in a prior RPG project where LLMs lost story continuity over time
Upcoming: Road to Nodes AI workshop on long-term memory & agentic workflows (free, virtual)
Upcoming: NODES AI virtual conference — April 15th (free)
This week, I share hard-won lessons from building a GraphRAG application with Neo4j in Python, plus standout tips from Lize Raes's Devoxx Belgium talk on taking Langchain4j apps to production.
GraphRAG with Neo4j
Built a Python GraphRAG app using the Neo4j GraphRAG package — knowledge graph construction, retrievers (vector, graph, text-to-cypher), and agentic orchestration
Key lesson: don't let the LLM decide your entire data model. Providing node types, relationship types, and patterns as boundaries dramatically improves results
Expect iteration — retrieval testing will send you back to refine your KG construction
Github code: Neo4j GraphRAG Python package
Langchain4j for Production (Lize Raes, Devoxx Belgium)
Wrap RAG as an agent tool for multi-call retrieval instead of single-shot pipelines
Filter available tools programmatically by domain to keep agents focused
Wire sub-agents as @Tool for clean multi-agent orchestration
Use immediate responses to skip the LLM summarization hop — saves tokens and latency
13-step walkthrough for production-grade agentic systems
YouTube link: Level Up Your Langchain4j Apps for Production (Lize Raes, Devoxx Belgium 2025)
Hear my recent experience at the Devnexus conference in Atlanta, where I delivered two sessions and connected with so many amazing people!
Devnexus session 1: "Agents, Tools, and MCP, Oh My! Next Level AI Concepts for Developers" — a redesigned solo talk breaking down AI building blocks (agents, tool calls, context management, memory, and MCP) so developers can mix and match components for their own stack.
Key takeaway: AI systems are much more than just the LLM — developers play a critical role in designing the surrounding architecture.
Devnexus session 2: "Supercharging Applications with Java, Graphs, and a Touch of AI" (code repo 1, code repo 2) — a joint session with Erin Schnabel building an LLM-powered role-playing game using Langchain4j, Quarkus, and Neo4j.
Multiple approaches: plain LLM chat, prompt engineering, and RAG with Neo4j as the vector/graph store, chunking documents while preserving structure via graph relationships.
Our "Three Cs" challenge: Continuity (maintaining storyline), Context (growing context window), and Creativity (keeping the LLM on track without going off the rails).
Splitting responsibilities between the LLM and a deterministic engine significantly improved results — a pattern developers should consider for complex AI apps.
App redesign with an agentic architecture: dice roll, narration, suggestion, checkpoint, and recap agents — with the last three running concurrently for better performance.
Markdown file (in one app) for agentic memory, enabling easy edits, rollbacks, and incremental indexing during live gameplay.
Content spotlight: "No Keys, No LLM — Building a Wikidata Definition API with Embabel" — an article showcasing an agentic Java application that uses zero LLM. Embabel (a Java agentic framework) handles planning and execution with structured inputs/outputs, no external or local model required.
Could the no-LLM agent pattern see broader adoption, or is it a niche experiment?
New episodes will now use platform-agnostic Podfollow links.
New blog post on jmhreif.com about Cypher AI procedures.
Jennifer shares highlights from a week full of spontaneity and preparation.
Highlights:
The Bootiful Podcast (Coffee + Software) with Josh Long
Impromptu livestream with Josh on building a Spring + Neo4j application with just 10 minutes prep
Participated in an X Space panel on the rise of agentic AI with experts from AWS, Nvidia, and Brokk
Final preparations for two Devnexus sessions and other activities
The reality of setting boundaries as a developer advocate
Content highlights: Brock AI-native coding platform and DICE knowledge graph library for Java
Key Themes: Growth through unexpected challenges, maintaining quality over quantity, and leaning into spontaneous opportunities
Links:
The Bootiful Podcast episode
Coffee + Software livestream with Josh recording
X Space recording on The Rise of Agentic AI
Brokk YouTube video
Embabel DICE GitHub project
Next Week: Devnexus in Atlanta! Visit the Neo4j booth.
In this episode, hear my reflections on eight years as a Developer Advocate at Neo4j - learning in public, teaching before feeling “ready”, and navigating the constant balance between deep technical work and community engagement. Get updates on what I'm currently focused on: upcoming events, writing a more complex chapter of the Java book, sharpening Cypher skills, and exploring an article that challenges the default use of Object Graph Mappers (OGMs) in graph applications.
Highlights
8 Years in Advocacy
Learning fast by presenting and teaching
Balancing deep work, travel, and ad hoc collaboration
Adapting to the accelerating pace of tech and AI
Current Projects
Preparing for Devnexus and upcoming virtual events
Contributing to Road to NODES AI workshops
Writing a more advanced Java book chapter (avoiding the editing loop)
Intentionally improving Cypher skills through deeper practice
Rethinking OGMs
Exploring the article “The Very Slowly Ticking Time Bomb, Your Graph Persistent Stack”
Questioning whether OGMs add unnecessary translation layers in graph apps
Considering alternatives
Expanding the toolbox — no one-size-fits-all solution
Events
Devnexus (Atlanta, GA)
San Francisco Bay ACM (Virtual Event)
Road to NODES AI Workshops (Free, virtual)
Fresh back from Jfokus in Stockholm! This week, I'm sharing highlights from the conference and diving into advanced Cypher techniques that make graph databases shine.
Highlights:
Jfokus 2025 recap: Viking themes, inspiring community, and lots of content
Book writing updates and upcoming March events
Combination of outlining and writing in my process
Joint session prep is stretching my application development skills
Content: 10 things that are easier in Cypher than in SQL
Why aggregation without GROUP BY changed everything for me
Pattern comprehension, map projections, and where to level up
Key takeaway: Graph databases excel at path patterns and relationships.
Resources mentioned:
"10 Things You Can Do With Cypher That Are Hard With SQL" by Michael Hunger
Hear about my hard-won lessons from loading a large-scale book dataset into Neo4j with Ollama embeddings, plus a preview of exciting new vector search features.
Highlights:
Data Loading Battle Stories
Fixing Ollama OpenAI endpoint issues (drop the /v1 suffix!)
Choosing embedding models with adequate context windows (nomic-embed-text: 8,192 tokens)
Optimizing batch sizes and memory configuration
Using EXPLAIN to identify and eliminate Cypher eager operations
Error handling with ON ERROR CONTINUE for partial loads (achieved 83% coverage)
Neo4j 2026.01 Preview: Vector Search with Filters Three new approaches that combine vector search with Cypher filtering in a single query:
Vector Search + Keyword Filters
Cypher After Vector (post-filtering GraphRAG)
Cypher Before Vector (pre-filtering on subgraphs)
No more two-step application logic for Graph RAG!
Context Graph demo app:
Level of detail and perspectives you can view of the context graph and interactions with agents
Event
I will be at Jfokus in Stockholm next week!
This week has been a whirlwind. From starting a new RAG project to getting involved in other community events, there is so much to learn and do. This week had the following highlights:
🎤 Glasgow Meetup Adventures Navigating venue challenges, DJ booth speaking setups, and live coding without a mic stand—lessons in developer advocacy resilience.
🔍 RAG Experimentation Working with Quarkus to ingest unstructured data into Neo4j. Exploring filtering strategies and data model alignment for better retrieval.
💡 Live Interaction Tracer Combining naive RAG with a graph-based interaction tracer—early progress on a promising approach.
🧠 Context Graphs Deep Dive Why context graphs matter for AI: documenting the "how" and "why" behind data decisions, not just snapshots in time. Perfect for providing business logic and tacit knowledge to AI systems.
Resources
Hands-on with Context Graphs and Neo4j by William Lyon
William Lyon's podcast episode (previous month)
Context Graphs demo application
Lots of 2026 projects kicking off—stay tuned for updates on RAG experiments, context graph implementations, and upcoming events!
Welcome back to Breaktime Tech Talks for 2026! In this episode, dive into the technical challenges I faced with GenAI procedure migrations, and the workarounds needed for Ollama embeddings. Then, explore the evolving landscape in the age of AI, including new terms like AEO (Answer Engine Optimization) that are changing how we think about discoverability.
Highlights:
Neo4j Vector Migration: Understanding the shift from list-based storage to the new vector data type in Neo4j
GenAI Procedures Evolution: Navigating multiple versions of GenAI procedures and their current limitations (v2025.11.2)
Ollama Workarounds: Using APOC library procedures when bleeding-edge syntax doesn't support your use case
Large-Scale Data Loading: Loading 2+ million books from the Goodreads dataset
Learning vs. Creating: Finding balance between content consumption and production in a rapidly evolving tech landscape
Lenny's Podcast: "The Leadership Skill AI Can't Replace" with Molly Graham
Lenny's Podcast: "The Ultimate Guide to AEO: How to Get ChatGPT to Recommend Your Product" with Ethan Smith
Welcome to Breaktime Tech Talks! In this episode, get my latest breakthroughs and insights with Quarkus and Langchain4j, a new vector data type in Neo4j, and details on other projects and events I'm working on.
Highlights:
MCP Integration Success. Integrating MCP with Quarkus and Langchain4j (Github project). I overcame dependency issues and implemented custom wrapper methods for RAG tools.
Advancing Semantic Search. Dive into the new native vector data type in Neo4j, as introduced in a recent developer blog post. One benefit of this new data type for vector search includes data integrity, plus it includes nice migration from the old list format.
AI-First Java Book. Hear about my upcoming book, "AI First Java," co-written to help newcomers learn Java with an AI-first approach. I share my perspective on teaching foundational programming concepts in the age of AI-powered tools.
Upcoming Events. Preview my speaking engagements for early 2026, including the Glasgow meetup, Jfokus, and Devnexus.
Podcast Updates: Hear my thoughts on future guests and feel free to add your thoughts in the BTT feedback form.
In this episode, hear my latest adventures in the world of Java development, focusing on integrating Langchain4j with Quarkus, tackling dependency management, and exploring the evolving landscape of generative AI in production systems. Plus, I highlight upcoming community events and must-watch videos for developers.
Highlights:
Langchain4j + Quarkus: Read-Only Database Success & Dependency Challenges - progress on a read-only Neo4j database with Langchain4j and Quarkus, caveats around configuration, and the "dependency hell" encountered when adding the MCP server for text-to-Cypher capabilities.
Project link: Langchain4j Quarkus Graph RAG app
Upcoming Events
O'Reilly Graph RAG Fundamentals workshop (virtual, Dec 18)
Global Big Data Conference (virtual, Dec 15th)
Recommended Videos
"Gen AI Grows Up: Building Production Ready Agents on the JVM" by Rod Johnson (GOTO Chicago 2025)
Focus: Integrating generative AI into existing Java business solutions, and the new open source project Embabel.
"Spring in Autumn with Neo4j" by Gerrit Meier (NODES 2025)
Focus: Spring projects and frameworks for integrating with Neo4j, plus tips for other tech stacks.
For the first time ever, Jennifer welcomes a guest to the show! William Lyon gives us a deep dive into the evolving world of AI agents, knowledge graphs, and the concept of memory in artificial intelligence.
Episode highlights:
William’s career journey: from Neo4j to startups and back again
The role of knowledge graphs in agentic memory and reasoning
Types of memory in AI agents: episodic, procedural, and more
How knowledge graphs can model both user-facing and operational memory
The importance of domain-specific data modeling for AI memory systems
William’s AI Memory Landscape project: cataloging tools, frameworks, and services in the AI agent memory space
Contributions to the project are open, so submit a PR or request!
Advice for developers architecting AI agents with memory
Other referenced links:
GraphStuff.FM podcast
AI Memory Landscape project: https://ai-memory-landscape.netlify.app/
Connect with William Lyon:
Website: https://lyonwj.com/
Welcome to Breaktime Tech Talks! In this episode, dive into the latest updates and challenges in the world of developer tools, AI, and graph databases.
Episode Highlights:
Overcoming technical hurdles with Langchain4j and Neo4j, including the new support for read-only Neo4j databases in vector indexing (Github feature pull request).
Navigating versioning headaches and framework differences between Spring AI and Quarkus for AI-powered applications.
Lessons learned from hands-on work with Neo4j GraphAcademy courses (GraphAcademy GenAI Fundamentals), including AI and knowledge graphs.
Key takeaways from the Andrej Karpathy interview (YouTube interview link), including:
The strengths and limitations of large language models (LLMs) for developers.
The concept of the “decade of agents” and how agents are shaping the future tech stack.
The importance of teaching as a way to deepen technical understanding.
Upcoming events and workshops:
Neo4j Fundamentals & GenAI hands-on workshop (learn more about workshop) – December 11th, virtual and free.
GraphRAG Fundamentals course on O’Reilly (course details) – December 18th.
NODES 2025 conference session recordings now available (full YouTube playlist).
In this episode:
Recap of NODES 2025 and standout sessions
How AI and music graphs are shaping new tech (featuring Luanne Misquitta’s talk)
Exploring RushDB: open source tools for graph data
Developer advocacy in the classroom: inspiring the next generation
Updates on Spring AI, Langchain4j, and upcoming workshops
Blog post on new Aura Fundamentals course
Solving tough graph problems with Cypher 25
Resources Mentioned:
NODES 2025 playlist (only keynotes at this time)
Luanne Misquitta’s Music Graph session
RushDB session by Artemiy Vereshchinskiy
Langchain4j read only db issue (solved!)
Neo4j Graph Academy Aura Fundamentals blog post
Solve Hard Problems with Cypher 25 blog post
Advent of Code (2025)
Thanks for listening!
In this episode of Breaktime Tech Talks, dive into the real-world challenges and discoveries from my recent work with Langchain4j, Quarkus, and Neo4j. If you’re a developer navigating the evolving landscape of AI, vector search, and graph databases, this episode is packed with practical insights and lessons learned.
Highlights:
Struggles with configuring hybrid search (vector + graph retrieval) in Langchain4j and Quarkus
Pain of setting up Neo4j vector stores, especially for read-only databases
Data importer docs difference (standalone vs Aura)
Why current frameworks make it hard to customize retrieval workflows
Discovery of Neo4j’s MCP Cypher server for vector search as a tool
Blog post on implementing GraphRAG retrievers as an MCP server for reusable, agentic applications
Updates on the GraphRAG Fundamentals online course and the upcoming NODES 2025 conference
My new new Java book project
Tune in for practical advice, honest roadblocks, and new ideas for building smarter, more flexible developer tools!
In this episode of Breaktime Tech Talks, I share an inside look into developer advocacy, discuss the highs and lows of the role, and review new features in the Cypher query language.
Highlights:
🔎What it’s really like to be a developer advocate: the good, the bad, and the “meh”
🧗🏼♀️Common challenges: overwhelm, travel fatigue, balancing diverse responsibilities, and learning to say “no”
🏢Why developer advocacy is often a “departmental orphan” and how that brings unique value
🏆The rewarding aspects: variety, constant learning, connecting with the developer community, playing to your strengths, and prioritizing high-impact work
👩🏽💻Updates on Jennifer’s current projects, including work on Spring AI Advisors and an upcoming conference appearance
⚙️A deep dive into Christoffer Bergman’s blog post on Cypher Conditional Queries
🎊What’s new in Cypher 25: the WHEN THEN ELSE syntax and how it improves query readability and maintenance
Every tech role has its ups and downs, but I've found my place. Don’t miss my insights on Cypher’s latest features and stay tuned for more updates on my projects and events. Thanks for listening, and happy coding!
In this episode of Breaktime Tech Talks, we focus on frameworks, libraries, and integrations that streamline workflows and enable more powerful applications.
Key Technical Topics Covered:
Releases! Java 25 and Langchain4j 1.5
Spring Initializr Java version default from 17 to 21
New blog post! Spring AI with MCP text-to-cypher
Generating Ollama embeddings for Neo4j (Cypher vs APOC)
Spring AI advisors (QA advisor and RAG advisor)
NODES 2025 - free, online technical event!
Content: Integrating Neo4j with Langchain4j for GraphRAG Vector Stores and Retrievers - GraphRAG with Langchain4j and Neo4j in a Spring app
Explore the latest challenge with Neo4j vector indexes, demystify Model Context Protocol (MCP), and hear insights on vibe coding and Retrieval-Augmented Generation (RAG).
What's Inside:
Confusion around Neo4j vector indexes - models and dimensions
Why knowing the embedding model matters for vector similarity search
The limitations of current Neo4j vector index metadata
What is Model Context Protocol (MCP) and why it matters for generative AI
Real-world analogies for understanding MCP (microservices, snack choices, Docker containers)
The power of MCP servers for secure, modular data access
Article highlight: “From Gimmick to Game Changer – Vibe Coding Myths Debunked”
How AI coding tools and generative AI are lowering barriers for developers and business users
Risk mitigation vs. risk avoidance in adopting new technologies
YouTube livestream: “RAG Was Fine, Until It Wasn’t” – lessons from Neo4j Graph Academy’s evolution
The importance of focusing on goals over syntax in development
Links & Resources:
Neo4j vector index documentation
Neo4j MCP server information
From Gimmick to Game Changer – Vibe Coding Myths Debunked (article by Michael Hunger)
RAG Was Fine, Until It Wasn’t (YouTube livestream)
Thanks for listening! If you enjoyed this episode, please subscribe, share, and leave a review. Happy coding!
Hear my latest hands-on experiences and lessons learned from the world of AI, graph databases, and developer tooling.
What’s Inside:
The difference between sparse and dense vectors, and how Neo4j handles them in real-world scenarios.
First impressions and practical tips on integrating Spring AI MCP with Neo4j’s MCP servers—including what worked, what didn’t, and how to piece together documentation from multiple sources.
Working with Pinecone and Neo4j for vector RAG (Retrieval-Augmented Generation) and graph RAG, plus the challenges of mapping results back to Java entities.
Reflections on the limitations of keyword search versus the power of contextual, conversational AI queries—using a book recommendation system demo.
Highlights from the article “Your RAG Pipeline is Lying with Confidence—Here’s How I Gave It a Brain with Neo4j”, including strategies for smarter chunking, avoiding semantic drift, and improving retrieval accuracy.
Links & Resources:
Neo4j MCP Cypher server repository
Spring AI MCP client
Your RAG Pipeline is Lying with Confidence
Jennifer’s Goodreads demo app
Thanks for listening! If you enjoyed this episode, please subscribe, share, and leave a review. Happy coding!
In this episode of Breaktime Tech Talks, I delve into my recent experiences with Model Context Protocol (MCP) and Large Language Models, specifically Claude. First, I share my experiment using an LLM to clean up flat files. Then, my journey with MCP began integrating a Neo4j MCP server with Claude, highlighting the practical benefits and challenges faced with an anecdote on one particular incident where the LLM blended facts. It's also crucial to have clean data sets, but this is rather challenging. To round us out, I summarize an article about the recently released Neo4j data modeling MCP server and its functionality. Join me as I navigates these intriguing tech explorations and sift out the practical takeaways.
00:00 Introduction to Breaktime Tech Talks
00:48 Exploring Large Language Models for Flat File Cleanup
03:01 Diving into MCP Exploration
05:02 Challenges with Large Language Models
08:33 Data Set Challenges and Solutions
10:05 Highlight: Neo4j Data Modeling MCP Server
12:11 Conclusion and Future Directions



