Automatic

Eric Lamanna

Podcast for Automatic.co and LLM.co, the AI automation specialists.

  1. 18h ago

    How Private LLMs Reduce Operational Risk for Finance Teams

    Operational risk in finance rarely announces itself with a dramatic failure — it hides in a four-cent ledger discrepancy, a Friday afternoon rubber-stamp, or a compliance policy sitting unread in a shared folder. This episode of Automatic breaks down how private large language models are giving finance teams a fundamentally different kind of control, drawing on this in-depth look at how private LLMs lower operational risk for finance teams. Rather than bolting more rules onto aging infrastructure, private LLMs work with the messy, unstructured reality of modern finance — and they do it entirely inside the firm's own walls. The episode covers the full arc of where and how this architecture makes a difference: The hidden shape of operational risk: Why most financial errors are quiet, contextual, and invisible to traditional rules-based controls — and why that gap has been widening as data environments grow more complex.What "private" actually means: A private LLM lives inside the firm's own infrastructure, keeping every query, output, and data reference behind the organization's encryption perimeter — a hard requirement under strict data residency rules, not just a preference.Faster, cleaner reconciliations: How private models cross-reference multi-system ledgers at speed, surface variances, and draft explanations for human review — shrinking the month-end close from an all-nighter to a routine afternoon task.Real-time compliance enforcement: Embedding current policies directly into the model means every request is scanned against live rules before anything moves forward, with audit evidence tagged and organized as it accumulates rather than assembled under pressure.Democratizing analytical access: Breaking the bottleneck that forces non-technical staff to queue behind specialists for risk and exposure data — so decision-makers get answers in plain English, in seconds, when it matters.A compounding feedback loop: Each human accept-or-reject interaction becomes a training signal, quietly improving the model's fit to a specific desk and workflow over time — without manual retraining cycles.The episode also examines how reducing third-party integrations trims the vendor attack surface, how logged exceptions and timed reconciliation tasks feed measurable key risk indicators, and why this shift represents a strategic edge rather than an incremental upgrade. For more on how machine learning models handle imperfect data, check out the earlier episode Synthetic Labels: Training Machine Learning Models Without the Truth. LLM

  2. 1d ago

    Synthetic Labels: Training Machine Learning Models Without the Truth

    Ground truth is expensive, slow, and often the single biggest bottleneck between a machine learning idea and a working model. This episode of Automatic explores a growing alternative: synthetic labels — algorithmically generated targets that stand in for human annotation, sometimes dramatically compressing the time and cost of getting a model into production. The approach is detailed in the source article on training without the truth, and this episode walks through the key ideas with enough depth to be immediately useful. The episode covers the three main flavors of synthetic labeling and the discipline required to make any of them work reliably: Pseudo-labeling — training a model on a small seed of human-labeled data, then using its highest-confidence predictions to expand the training set into a much larger unlabeled pool.Weak supervision — combining noisy programmatic labeling functions (rules, heuristics, keyword lists) through a label model that produces probabilistic targets a downstream classifier can learn from.Knowledge distillation — using a large teacher model's soft probability outputs as labels for a smaller student, preserving nuanced inter-class information that hard labels discard.The generator–filter–learner loop — the production architecture connecting label proposal, curation (confidence thresholds, diversity sampling, deduplication), and model training into an iterative cycle rather than a one-shot pipeline.Calibration and bias management — why overconfident generators bully student models into confident mistakes, and how techniques like temperature scaling and label smoothing reduce that risk; plus why evaluation slices across demographic and geographic groups are non-negotiable.When synthetic labels are and aren't appropriate — the episode is direct about the limits: moderate-stakes routing tasks are a strong fit; high-stakes clinical or legal decisions should lean hard on verified ground truth.A recurring theme is the "sacred holdout set" — a small, clean, human-verified test set that never touches training and gates every deployment decision. The episode also touches on how synthetic labeling pairs naturally with self-supervised learning and active learning, forming a practical toolkit for teams with more ambition than annotation budget. For more from the show, the episode Waking the Sleeping Giant: How LLMs Turn Legacy Databases Into Allies explores another angle on making AI work with imperfect, real-world data conditions. Automatic

  3. 2d ago

    Waking the Sleeping Giant: How LLMs Turn Legacy Databases Into Allies

    For most organizations, legacy databases are a paradox: they contain some of the most valuable institutional knowledge in the business, yet extracting anything useful from them demands specialized skills, undocumented workarounds, and a tolerance for friction that most modern teams simply don't have. This episode of Automatic digs into how that dynamic is shifting, drawing on this deep-dive on turning legacy databases into intelligent assistants — and what it means for the enterprises that have been quietly sitting on goldmines of inaccessible data. The episode walks through the full arc of what it takes to place a private large language model between business users and aging database infrastructure — from the unglamorous groundwork to the surprisingly far-reaching operational payoffs. Key points covered include: Why legacy databases resist access: Decades of accumulated complexity — cryptic field names, undocumented stored procedures, departed subject-matter experts, and brittle interdependencies — make even routine queries a high-stakes exercise.The conversational layer explained: A private LLM acts as a semantic bridge, translating plain-English questions into precise, optimized SQL without requiring the user to know table structures, join logic, or fiscal-quarter definitions.Schema preparation as a prerequisite: Before any assistant can be useful, teams must surface hidden assumptions, trace undocumented relationships, and formalize business definitions — work that pays dividends far beyond the AI implementation itself.Governance baked in from the start: Sensitive fields, access controls, output watermarking, and real-time policy enforcement aren't optional add-ons — they're what separates a genuinely useful deployment from a compliance liability.From reactive to proactive intelligence: A mature implementation doesn't just answer questions — it surfaces anomalies, flags performance patterns, and acts as an advisor with perfect recall and no political agenda.Measuring what matters: The episode emphasizes setting concrete success metrics before go-live — query turnaround time, manual exports eliminated, reconciliation hours saved — and connecting those numbers to leadership-level outcomes.The throughline is a reframe that's both practical and consequential: the problem was never the data itself, but the assumption that accessing it had to be painful. For teams curious about the architectural thinking behind real-time data pipelines, Message Brokers: Who's Actually in Charge Here? is a natural companion listen. More from the show can be found there. LLM

  4. 3d ago

    Message Brokers: Who's Actually in Charge Here?

    Messaging systems are everywhere in modern software, yet one fundamental question rarely gets a straight answer: does control live in the broker, or in the services that use it? This episode of Automatic works through the architecture of message brokers — exploring how responsibility is actually divided, where things go wrong, and what well-designed systems get right. It draws on the source article on message broker control vs. coordination to give teams a sharper mental model for building with brokers intentionally. Here's what the episode covers: Control vs. coordination: The broker owns how messages move; services own what those messages mean — and confusing the two is where architectures quietly unravel.Edges matter most: Producers shape message frequency and format; consumers govern back pressure and idempotency. The broker can surface symptoms of poor judgment at the edges, but it can't fix them.The temptation of broker features: When teams push business logic into routing rules or stateful broker filters, what feels like a shortcut becomes a maintenance maze — keeping the broker focused on transport protects long-term clarity.Message contracts as the real lever: A stable, well-versioned schema is more powerful than any broker capability. Additive changes, schema registries, and disciplined review processes reduce the broker to a fast, reliable pipe.Delivery guarantees and ordering myths: At-least-once delivery with idempotent consumers is the most practical foundation; chasing global ordering or exactly-once semantics often shifts hidden complexity rather than eliminating it.Governance, observability, and ownership: Topic naming conventions, lag dashboards, correlation identifiers, and clear stewardship aren't bureaucracy — they're the feedback loops that make control feel like confidence rather than guesswork.The episode closes with a straightforward verdict: messaging systems run on shared custody. Brokers set the rails; services decide where to go and what to carry. When that boundary is clear — backed by strong contracts, idempotent consumers, and honest observability — teams ship faster and sleep better. For more from the show, check out the episode Why Autonomous AI Agents Need On-Prem Isolation, which explores another dimension of infrastructure control in automated systems. Automatic

  5. 4d ago

    Why Autonomous AI Agents Need On-Prem Isolation

    Autonomous AI agents can browse documents, call APIs, spin up containers, and execute complex tasks without human intervention — but that same independence makes them a serious security liability when deployed carelessly. This episode of Automatic examines why on-prem isolation is essential for keeping autonomous agents secure, auditable, and compliant, challenging the outdated assumption that on-premises infrastructure is slow, cumbersome, or obsolete. The episode walks through the specific risks that cloud-default deployments introduce, then builds the case for a modern on-prem isolation strategy — covering architecture, governance, culture, and the regulatory horizon ahead. Key topics include: The hidden attack surface of autonomous agents: why the risk extends far beyond the model itself to every API, vector store, and tool the agent is permitted to call.Hardware roots of trust: how trusted platform module chips and secure boot chains establish security at the silicon level, before any agent workload ever executes.Air-gapped vector stores: keeping an agent's memory — its embeddings and retrieved knowledge — on internal infrastructure, with unidirectional data diodes as the only controlled pathway in or out.Latency and cost advantages: why co-locating the agent, vector database, and toolchain inside the same switch fabric often delivers faster performance than crossing cloud regions.Tiered release channels and rollback: how development, staging, and production environments enable safe experimentation and instant rollback without vendor dependencies.The human layer: why technical isolation must be paired with tabletop drills, clear ownership matrices, and a culture that rewards questioning tool permissions.The episode also looks ahead to the EU AI Act and expanding data-residency regulations, explaining how on-prem isolation positions organizations to answer granular data-lineage questions with confidence — and how federated learning offers a path to collaborative intelligence without sharing raw data. More from the show: listen to The Agent Phase: How AI Is Rewiring Logistics From the Inside Out for a complementary look at autonomous agents reshaping an entire industry in the real world. LLM

  6. 5d ago

    The Agent Phase: How AI Is Rewiring Logistics From the Inside Out

    Global logistics spending tops ten trillion dollars a year, yet most of the software managing that spend was built for a simpler, more predictable world. A new category of technology — agentic AI — is changing that, not by layering another dashboard on top of existing systems, but by acting on decisions in real time. This episode of Automatic explores the full logistics and supply chain market research report to explain why 2025 marks a genuine inflection point, and what it means for operators, investors, and the people doing the work. The episode traces the evolution from passive systems of record and predictive analytics to a third era defined by autonomous action — and unpacks the specific forces that made this shift possible right now. Here's what's covered: Three eras of logistics tech: How SaaS systems of record gave way to AI-native forecasting layers, and why neither era prepared the industry for fully autonomous decision-making.Why now: Two converging forces — large language models that can finally reason over messy, unstructured data, and enterprise infrastructure that now has the API connectivity and data pipelines to support real orchestration — explain the timing of this shift.Exception handling as the real ROI driver: Most AI investment started with forecasting, but the research points to exception resolution — rerouting shipments, managing customs delays, handling inventory mismatches — as the highest-value, highest-volume use case for agentic systems.The labor equation: With a U.S. driver shortage estimated at around 80,000 and wage inflation compressing margins industry-wide, companies aren't just chasing efficiency — they're seeking relief in knowledge work like dispatch, compliance, and supplier communication.Market sizing: The serviceable market for agentic logistics workflows sits between $10–18 billion today, with a realistic near-term opportunity of $2–5 billion concentrated in high-volume, measurable workflows — backed by McKinsey estimates suggesting 15% logistics cost reductions and up to 35% inventory level improvements are achievable.What separates winners from laggards: Data quality, workflow fit, and — critically — organizational trust. The companies advancing fastest are treating agent deployment as a change management effort, not just an IT rollout.The core argument of the episode is that the constraint is no longer the technology itself — it's the readiness of the organizations deploying it. Companies that built clean data infrastructure early are pulling ahead; those that didn't are finding that even capable AI produces poor results on fragmented inputs. The episode closes by reframing the human-in-the-loop versus human-on-the-loop distinction as one of the most consequential design choices logistics operators will make in the next few years. For more from the show, listen to The CIO's Playbook for Building an AI Center of Excellence, which examines how enterprise leaders are structuring AI governance and capability-building from the top down. Automatic

  7. 6d ago

    The CIO's Playbook for Building an AI Center of Excellence

    For technology leaders, the gap between a promising AI proof-of-concept and an enterprise capability that actually runs the business is where careers are made or stalled. This episode of Automatic unpacks a practical, end-to-end roadmap drawn from the CIO's guide to building an AI Center of Excellence — covering every layer of the journey, from writing the founding charter to embedding an AI-curious culture across the whole organization. Here's what the episode covers: Vision before infrastructure: Why anchoring your Center of Excellence in business language — revenue, risk, customer experience — unlocks executive buy-in faster than any technical pitch.The founding charter: How a clear governance document that defines project scope, ethical boundaries, and decision-making authority turns skeptical compliance teams into active allies.Talent strategy: The case for a roughly even split between seasoned insiders and fresh perspectives, organized into small cross-functional squads with real autonomy — and why rotating members regularly spreads institutional knowledge while guarding against burnout.Technical backbone: Building a data fabric with proper cataloging, lineage tracking, and open standards; treating automated bias and drift checks as production gates; and embedding the security team early so governance feels supportive rather than obstructive.Launching with pilots: Starting with single-quarter projects that produce visible, relatable wins — and presenting results as human stories rather than model metrics.Culture as the scaling engine: Using transparent post-mortems, internal hack days, and openly shared playbooks to make experimentation a company-wide habit rather than a team-specific quirk.The episode closes with a reminder that a Center of Excellence isn't a one-time build — it's a living framework that needs quarterly review as models evolve, regulations tighten, and markets shift. For more on how AI is reshaping entire industries, check out the episode How Agentic AI Is Rewiring Consumer and Retail. LLM

  8. Jul 17

    How Agentic AI Is Rewiring Consumer and Retail

    Retail has absorbed wave after wave of technology change, but something different is happening now. This episode of Automatic digs into the market research on agentic AI in consumer and retail to explain why industry analysts are calling this a structural shift — not an incremental upgrade — and what that actually means for the people running retail operations today. The episode unpacks the full picture, from market sizing to real production deployments, covering: What "agentic" really means — and why a chatbot or recommendation engine doesn't qualify; true agentic systems plan, act, monitor, and adapt across multiple tools without waiting for human prompts.The scale of the opportunity — McKinsey's $240–390B productivity estimate for retail and CPG, IDC's $300B+ global AI spending forecast by 2026, and a realistic near-term vendor market of $5–15B that's already in motion.Where early traction is showing up — Klarna's AI assistant handling two-thirds of customer service volume, Amazon-style dynamic pricing reaching mid-market retailers, and Walmart's AI-driven supply chain moving toward autonomous action rather than just forecasting.The four market segments — supply chain and inventory (≈35% share), customer operations, merchandising and pricing, and marketing and growth, each with distinct automation leverage points.The real bottleneck isn't the AI models — fragmented data, inconsistent formats, and siloed systems are slowing agentic deployments more than any limitation in the underlying technology; retailers who've modernized their data infrastructure already have a head start.The winning deployment pattern — not full autonomy, but partial autonomy with clear escalation paths, where humans supervise exceptions rather than approve every decision.The episode also identifies the competitive implication that's easiest to miss: the moat in agentic AI is shifting away from model sophistication and toward workflow design, proprietary operational data, and deep system integrations. For more on why the quality of your underlying data determines what AI can do for you, check out the Automatic episode Structure First: How Your Data Shapes Every LLM Result. The full market research, including detailed segment breakdowns and sizing methodology, is available at the source link above. Automatic

About

Podcast for Automatic.co and LLM.co, the AI automation specialists.