Developer builds local AI research agent that creates podcasts from topics or YouTube links

A developer on r/LocalLLaMA built an autonomous research and podcast agent that runs entirely locally. What started as an attempt to avoid paying for TTS (text-to-speech) services evolved into a full system that can research topics and present information in human-like formats.
What the agent does
The system takes either a topic or a YouTube link as input and produces three outputs:
- A proper deep-dive report
- A conversational podcast-style script
- Generated audio for the podcast
How it works differently from fixed pipelines
The developer focused on making the agent behave less like a fixed pipeline and more like something that decides what to do next dynamically. Instead of step-by-step execution, it:
- Searches and pulls content
- Extracts insights (including from videos)
- Refines summaries in multiple passes
- Converts that into a natural back-and-forth conversation
Key challenges and solutions discovered during development
- Speed issues: Initial performance was rough, but parallelizing tasks made a significant difference
- Shallow summaries: Early summaries felt shallow, but implementing multi-step refinement helped substantially
- Robotic audio: The audio initially sounded robotic, but switching to a 2-speaker format made it much more natural
The developer noted that this project demonstrates how close we're getting to doing powerful AI work entirely on local machines, without relying on cloud services.
📖 Read the full source: r/LocalLLaMA
👀 See Also

Using a Smart Pixel Clock for Claude AI Completion Notifications
A Reddit user shares a method to display Claude AI completion notifications using a ULANZI TC001 Smart Pixel Clock with custom firmware and an HTTP endpoint.

Strale.io offers free IBAN and email validation API for AI agents with no signup
Strale.io provides a free API with five capabilities including IBAN validation, email validation, DNS lookup, URL-to-markdown conversion, and JSON repair. No signup or API key is required, and it includes an MCP server for Claude or Cursor integration.

AI Agent Embedded in Shell: Terminal Buffer & Overlay Extension
Open-source shell with embedded AI agent that reads terminal output and types commands via a floating overlay. Supports local and cloud models.
Needle: A 26M Parameter Tool-Calling Model Built Entirely Without FFNs
Needle is a 26M parameter function-calling model with no MLPs, achieving 6000 tok/s prefill and 1200 tok/s decode on consumer devices. It beats FunctionGemma-270M, Qwen-0.6B, Granite-350M, and LFM2.5-350M on single-shot tool calling.