Anlie Arnaudy, Daniel Herbera and Guillaume Fournier

AI Odyssey

AI Odyssey is your journey through the vast and evolving world of artificial intelligence. Powered by AI, this podcast breaks down both the foundational concepts and the cutting-edge developments in the field. Whether you're just starting to explore the role of AI in our world or you're a seasoned expert looking for deeper insights, AI Odyssey offers something for everyone. From AI ethics to machine learning intricacies, each episode is crafted to inspire curiosity and spark discussion on how artificial intelligence is shaping our future.

Autor

Anlie Arnaudy, Daniel Herbera and Guillaume Fournier

Kategorie

Technology

Podcast-Website

podcasters.spotify.com

Neueste Folge

6. Jul 2026

Wo hören?

Podcasts in der App Replaio Radio Bald verfügbar

Podcasts kommen bald in die App. Installiere sie jetzt und erlebe als Erster einen ganz neuen Blick auf Podcasts

Bei Google Play herunterladen Kostenlos installieren Android 5 Mio.+ Downloads · Bewertung 4,8 iOS bald

Folgen

Prompting Is Dead. Loops Are the New Interface. 06.07.2026

The next frontier in AI is not better prompts. It is systems that trigger, act, observe, judge, and stop on their own. This episode explores loop engineering: the shift from manual chat with an AI to autonomous workflows that can test software, review documentation, simulate users, inspect screenshots, fix errors, and open pull requests while humans sleep. But autonomy has a cost. Without hard sto...

AI Agents Are Not Agents Yet 27.06.2026

What if today’s “AI agents” are mostly automation pipelines wearing a more ambitious label? This episode explores Critique of Agent Model , a paper that draws a sharp line between agentic systems , which look autonomous because engineers scaffold workflows around them, and agentive systems , where goals, identity, decisions, self-regulation, and learning are internal to the system itself. The auth...

The End of Shared Memory for AI Agents? 15.06.2026

What if the best way for AI agents to learn together is to stop forcing them to share the same memory? This paper introduces DecentMem, a framework where each agent keeps its own adaptive memory instead of relying on one central repository. The result is striking: better accuracy, lower token use, and less risk of every agent collapsing into the same behaviour. For enterprises building agent teams...

Your Best Colleague Is Now a Skill 07.06.2026

What if an AI agent could preserve a colleague’s judgment without pretending to become that person? COLLEAGUE.SKILL turns chats, documents, emails, screenshots, and other traces into inspectable agent skills: portable folders of instructions, examples, metadata, and correction history. The key idea is expert knowledge distillation : the extraction of useful human expertise into a bounded technical...

AI Agents Just Learned to Train Their Own Skills 31.05.2026

What if the next leap in AI agents is not a bigger model, but a skill document that learns from failure? SkillOpt treats agent skills as trainable external memory: a separate optimizer edits a compact procedure, then keeps only changes that improve held-out validation, meaning tests not used for the edit. Across 52 model, benchmark, and harness settings, the method is best or tied every time, with...

AI Agents Fail the Spreadsheet Test 25.05.2026

What happens when AI agents are asked to build the spreadsheets finance teams actually use? WorkstreamBench, a benchmark for end-to-end financial spreadsheet work, exposes the gap between impressive demos and professional deliverables. It tests complete multi-sheet workbooks, not single formulas or table questions. The benchmark scores accuracy, formula quality, and formatting, because in finance...

Hermes Agent and the Rise of Agentic Operating Systems 16.05.2026

Every forty years, the way we touch a computer changes shape. The command line gave way to the mouse. The mouse gave way to the touchscreen. And now, quietly, the screen itself is starting to disappear. In this episode, we follow Hermes, an open-source agentic operating system that hit number one on OpenRouter in ninety days, processing 224 billion tokens a day. Persistent memory, self-written ski...

The Agent Question Nobody Asked: When Should AI Interrupt You? 14.05.2026

Most people assume an AI agent should ask for clarification as early as possible. This paper shows that the truth is more subtle. For long-horizon agents — AI systems that execute many steps over time — the value of a clarification depends on what is missing : goal, input, constraint, or context. Some answers lose value almost immediately. Others remain useful much later. For enterprises, this is...

AI Agents Have a Coordination Problem 10.05.2026

What if multi-agent AI systems fail less because the models are weak, and more because the agents are badly coordinated? This paper treats coordination as an architectural layer : who talks to whom, who decides, how outputs are merged, and how failures are handled. The authors test five coordination patterns on prediction markets and find a sharp result for builders : more agents and more debate d...

AI Agents Are Becoming Companies 03.05.2026

What if the next leap in AI agents is not a smarter worker, but a better organisation? This paper introduces OneManCompany, a framework that turns scattered agents, tools, skills, and runtime configurations into managed “Talents” that can be hired, reviewed, replaced, and improved over time. Its Explore-Execute-Review loop decomposes work, assigns accountability, checks outputs, and learns from fa...

AI Agents Just Learned to Remember 27.04.2026

What if the real bottleneck for AI agents is not reasoning,but memory? StructMem argues that long-term agents should not storeconversations as isolated facts or expensive knowledge graphs. Instead, they should remember temporally grounded events: what happened, who was involved, and how one event connects to another. On the LoCoMo benchmark, thisstructure-enriched memory reaches the best overall s...

The Protocol That Lets Agents Rewrite Themselves 18.04.2026

What if the missing layer in agent design isn't communication, but version control? In this episode, we unpack Autogenesis, a two-layer protocol that treats prompts, tools, and memory as first-class resources with explicit lifecycle, versioning, and rollback. The core insight is striking: connectivity standards like MCP and A2A tell agents how to reach tools, but stay silent on what happens wh...

When Agents Learn to Forget: The Memory Revolution in AI Research 12.04.2026

What if the biggest bottleneck in AI agents wasn't reasoning power, but memory management? In this episode, we explore a fascinating new framework called MIA, the Memory Intelligence Agent, which reimagines how AI research agents store, compress, and reuse their past experiences. Instead of hoarding every search trace into an ever-growing context window, MIA separates memory into a Manager, a...

The Web is a Minefield: How AI Agents Get Trapped 06.04.2026

What if the biggest threat to AI agents isn't a flaw in the model, but the internet itself? A new paper from Google DeepMind introduces the first systematic framework for "AI Agent Traps": adversarial content hidden in websites, documents, and digital resources, engineered to manipulate autonomous agents. From invisible HTML instructions that hijack summaries, to poisoned memory stor...

🎧 AI That Rewrites Its Own Brain: Meet the HyperAgent 29.03.2026

What happens when you give an AI system the ability to modify not just its answers, but the very process it uses to improve itself? In this episode, we explore HyperAgents, a new framework from Meta and UBC that enables AI systems to recursively improve their own learning mechanisms. Unlike previous approaches where the improvement strategy was fixed by human engineers, HyperAgents can rewrite the...

When Agents Remember Their Mistakes: The End of AI Amnesia 22.03.2026

What if an AI agent could learn from every single failure, every clumsy workaround, every brilliant recovery, and feed that experience back into its own future performance? Today’s LLM-powered agents suffer from a fundamental flaw: amnesia. They repeat the same mistakes, miss the same shortcuts, and rediscover the same solutions over and over. A new framework from IBM Research changes that by mini...

Agents That Teach Themselves 14.03.2026

What if AI agents could diagnose their own mistakes and build the exact skills they need to fix them, with no human intervention? In this episode, we explore EvoSkill, a self-evolving framework where coding agents automatically discover and refine reusable skills through iterative failure analysis. Instead of optimizing prompts or fine-tuning models, EvoSkill lets agents build structured skill lib...

Your AI Agent is Flying Blind: The Skills Gap No One is Talking About 02.03.2026

What if the biggest bottleneck in AI agent performance isn’t the model itself—but what it doesn’t know how to do? In this episode, we explore SkillsBench, the first benchmark that systematically measures how structured procedural knowledge—called Agent Skills—impacts AI agent performance across real-world tasks. The results are striking: curated Skills boost agent success rates by 16 percentage po...

Your AI Assistant Doesn't Know You Yet. But It's Learning. 22.02.2026

What if your AI assistant could actually remember you — not just your name, but how your preferences evolve over time? Researchers from Meta have introduced PAHF — Personalized Agents from Human Feedback — a framework that lets AI agents learn who you are in real time, through the natural back-and-forth of interaction. Before acting, the agent asks targeted questions to avoid costly mistakes. Afte...

🎧 Deep Agents Are Here: The End of AI Assistants as We Know Them 08.02.2026

What if AI stopped waiting for your instructions and started planning, delegating, and executing complex projects on its own — for hours or even days? In this episode, we explore the rise of “Deep Agents” — a new generation of autonomous AI systems that go far beyond chatbots. These agents can decompose complex goals into sub-tasks, delegate work to specialized AI teammates, maintain persistent me...

🎧 OpenClaw: The Lobster That Wants to Run Your Life 31.01.2026

Remember when Siri was supposed to change everything? This might actually be it. OpenClaw is the Jarvis we were promised—an AI assistant that actually does things. It reads your emails, manages your calendar, negotiates prices, drafts follow-ups. Andrej Karpathy calls what's emerging around it "the most sci-fi takeoff adjacent thing" he's seen. Fair warning: it still makes plenty...

🎧 Judging the Judges: Why AI Now Needs AI Agents to Grade AI 24.01.2026

What happens when the technology we built to evaluate AI becomes too limited to keep up with AI itself? In this episode, we explore a fundamental shift in how we assess artificial intelligence. For years, we relied on large language models to judge other models—a paradigm known as LLM-as-a-Judge. But as AI systems tackle increasingly complex, multi-step tasks, this approach is breaking down. The s...

Skills: The Secret Weapon That Makes AI Agents 50% Faster 11.01.2026

What if you could get all the benefits of multi-agent AI systems—at half the cost and twice the speed? In this episode, we explore a powerful new paradigm for building AI agents: replacing expensive multi-agent coordination with single agents equipped with skill libraries. The results are striking—54% fewer tokens, 50% lower latency, and accuracy that matches or beats traditional approaches. But t...

AI Memory Crisis: The Answer Was in Biology All Along 02.01.2026

Why do AI systems still struggle to remember and generalize like humans do? In this episode, we dive into one of AI's most pressing challenges: memory. While tech giants race to build longer context windows and external memory systems, researchers at Tsinghua University took a radically different approach—they looked at how biological brains actually form lasting, generalizable memories. Their...

The CFA Exam is Solved: AI Scores 97% 13.12.2025

What if artificial intelligence could outperform seasoned financial analysts on the world’s toughest investment exams? In this episode, we dive into the stunning turnaround of "reasoning models"—like GPT-5 and Gemini 3.0 Pro—which have moved from failing the Chartered Financial Analyst (CFA) exams to achieving near-perfect scores. We explore how these models have mastered complex portfol...

Höre den Podcast AI Odyssey in Replaio

Radio und Podcasts in einer App - kostenlos und ohne Anmeldung. Installiere sie noch heute und verpasse den Start nicht

Bei Google Play herunterladen

Replaio ist kein Herausgeber von Podcasts; die Namen der Sendungen, Cover und Audioinhalte gehören ihren Autoren und werden über öffentliche RSS-Feeds verbreitet