Topic

Large Language Models (LLMs)

All digests tagged Large Language Models (LLMs)

How to go from your agent's traces to a fine-tuned model in one workflow thumbnail

· 9:01

How to go from your agent's traces to a fine-tuned model in one workflow

This walkthrough introduces LangSmith Fine-Tuning and the SmithTune CLI, providing a single, end-to-end workflow to convert agent traces (trajectories) into custom, fine-tuned models. The process involves dataset creation and preparation from LangSmith trajectories, training using providers like Fireworks or Baseten, and subsequent evaluation, all managed through the SmithTune CLI. The overall workflow is: Create $\rightarrow$ Prepare $\rightarrow$ Plan $\rightarrow$ Train $\rightarrow$ Evaluate $\rightarrow$ Deploy.

Key takeaways

  1. Supervised Fine-Tuning (SFT) Purpose

    SFT teaches a model desired behavior (e.g., tool selection, workflow adherence) using 'golden examples' derived from agent traces, improving task accuracy and tool reliability.

  2. Trajectory Format Importance 0:01

    The LangSmith trajectory format is critical because it provides a detailed reconstruction of the agent's context, including tools available at each turn, which is necessary for post-training jobs.

  3. SmithTune Workflow Overview 0:02

    The process starts by pulling trajectories from a LangSmith tracing project, defining a task-specific rubric, having a model council judge the traces, and then pushing the approved traces back to LangSmith to form a training dataset.

  4. Training and Evaluation 0:07

    After preparing the dataset (specifying provider, base model, and splits), the user runs `smithtune plan` to review settings, followed by `smithtune train` to execute the job. Evaluation compares the fine-tuned model against the base model on held-out test data.

  5. Deployment 0:08

    If results meet quality targets, `smithtune deploy` is used to serve the tuned model and connect it to the application. Otherwise, the process iterates by refining examples or training settings.

Watch on YouTube Full article

How AI Agents, LLMs & APIs Use Real-Time Data at the US Open thumbnail

· 9:46

How AI Agents, LLMs & APIs Use Real-Time Data at the US Open

This video details an AI-infused system at the US Open that analyzes tennis serves by combining specialized APIs with Large Language Models (LLMs) via AI Agents. The core architectural pattern involves specialized backend services handling massive, complex data processing (e.g., biomechanics and joint tracking) and returning structured, actionable scores. The LLM then uses these scores, rather than raw data, to perform high-level reasoning and generate human-readable insights for the user. This approach effectively divides labor between specialized computation and natural language reasoning.

Key takeaways

  1. The Limitation of Raw Data for LLMs

    LLMs, while excellent at general knowledge, struggle with raw, high-volume numerical crunching, such as processing 21 tracked joints at 50 times per second, which generates millions of position values. Raw data is too large and complex for effective reasoning.

  2. The Role of Specialized APIs

    APIs and specialized services are necessary to process raw data streams into structured, meaningful metrics. For the US Open, this process generates two key scores: **Efficiency** (biomechanics, joint separation) and **Effectiveness** (outcome stats like speed and placement).

  3. The AI Agent Workflow 0:07

    An AI Agent acts as an orchestrator, using a defined list of tools (APIs). When prompted, the agent outputs a structured request, which is executed by the API. The API returns the processed data, allowing the LLM to complete the reasoning cycle and answer the user's question.

Watch on YouTube Full article

You’re Not Thinking Big Enough: Rebuilding Food Systems with AI Agents — Cody Menefee, Firecrawl thumbnail

· 18:26

You’re Not Thinking Big Enough: Rebuilding Food Systems with AI Agents — Cody Menefee, Firecrawl

The speaker proposes using AI agents and Large Language Models (LLMs) to automate and optimize rotational grazing for grass-fed livestock. Currently, pasture management is limited by human labor and intuition. The proposed system requires integrating multiple data inputs—including GPS location, drought conditions, and grass height—to allow an LLM to suggest the optimal next paddock for the herd. Key technical blockers include building a comprehensive knowledge base (using tools like Firecrawl), developing a visualization layer for biomass and biodiversity, and achieving open, software-agnostic hardware (open collars).

Key takeaways

  1. The Problem: Labor Bottleneck in Grazing 7:21

    Currently, only 3% of cattle are raised on pasture, primarily because rotational grazing—which requires daily movement of animals, fences, and water—is extremely labor-intensive. Proper grazing requires constantly moving the herd to allow specific areas to rest and recover.

  2. The Solution: AI-Driven Grazing 10:28

    The goal is to replace the farmer's intuitive judgment by feeding an LLM multiple data inputs (GPS location, drought conditions, grass height) to suggest the next best paddock for the herd. This requires a multi-varied analysis, not a deterministic decision.

  3. System Components and Blockers

    Three main blockers must be solved: 1) Building a knowledge base (using Firecrawl to scrape YouTube and research papers into Open Pasture); 2) Creating a visualization layer to measure biomass and biodiversity; and 3) Developing open, non-proprietary GPS collars/APIs for software innovation.

Watch on YouTube Full article

Gemma 4 12B: The Encoder-Free Model Explained thumbnail

· 2:27

Gemma 4 12B: The Encoder-Free Model Explained

Gemma 4 12B is highlighted as a unique, encoder-free model within the Gemma 4 family, designed to process audio and image inputs without the traditional overhead of dedicated encoders. This architecture significantly improves efficiency by allowing the Large Language Model (LLM) to directly process sequential or embedded information, thereby reducing the time-to-first-token compared to models that rely on large, separate vision or audio encoders.

Key takeaways

  1. Encoder-Free Multimodal Processing

    Unlike other Gemma 4 models that use a vision encoder (up to 550M parameters) and an audio encoder (Conformer, 300M parameters), Gemma 4 12B processes audio and image inputs directly, eliminating the need for these large, separate encoders.

  2. Audio Input Streamlining

    For audio, Gemma 4 12B bypasses the Conformer by simply cutting audio segments to create sets of amplitude values, which are then projected directly to the LLM because they are considered sequential information.

  3. Image Input Optimization

    Image processing uses a small embedder (35M parameters) instead of a full encoder. This embedder processes the 3D pixels and adds crucial positional information (X and Y coordinates) before the LLM takes over the task of interpreting the image meaning.

Watch on YouTube Full article

How Lyft Increased Its Agent Resolution Rate by 16% with LangSmith and LangGraph thumbnail

· 3:41

How Lyft Increased Its Agent Resolution Rate by 16% with LangSmith and LangGraph

Lyft addressed the challenge of scaling its customer support agent stack by replacing brittle, deterministic agents with a meta-agent architecture built on LangGraph and LangSmith. This new self-serve platform allows non-engineering personnel (PMs and ops) to deploy new agents via simple configuration and prompting, drastically reducing agent build time from six months to one to two weeks. This accelerated iteration cycle resulted in a 16% increase in the customer resolution rate.

Key takeaways

  1. Shift to Self-Service Agent Platform 2:25

    The team created a platform enabling PMs and ops to build and ship agents using domain knowledge and natural language prompting, minimizing the need for code changes (merely a config change).

  2. Architectural Improvement via Meta-Agent 3:35

    The system utilizes a meta-agent where all sub-agents are registered dynamically as nodes in the meta-agent, simplifying the composition and deployment of new agents.

  3. Significant Operational Gains

    The agent build time was reduced from six months to one to two weeks, allowing engineers to focus on complex, foundational improvements while increasing the overall resolution rate by 16%.

Watch on YouTube Full article

Your Voice Agent is Just a Walkie Talkie — Neil Zeghidour, Gradium thumbnail

· 19:14

Your Voice Agent is Just a Walkie Talkie — Neil Zeghidour, Gradium

The talk analyzes the evolution of voice agents, arguing that current real-time voice models are fundamentally half-duplex (either listening or speaking). The core technical challenge is achieving full-duplex communication, which involves modeling overlapping speech (like backchanneling). The speaker, Neil Zeghidour, proposes that the most viable path forward is a hybrid architecture: coupling a small, highly natural, full-duplex speech-to-speech (S2S) interface with a powerful, asynchronous background text LLM to handle all complex reasoning and tool calling. This approach mitigates the inherent trade-off where improving naturalness sacrifices intelligence.

Key takeaways

  1. Evolution of Voice Agents 0:10

    Voice agent technology has progressed through constrained, closed-ended dialogue (Siri, 2011) to open-ended conversational models (OpenAI Voice Mode), and finally to agentic systems capable of real actions (e.g., ordering food).

  2. The Full-Duplex Challenge 12:28

    Human conversation is full-duplex, allowing for overlapping speech and backchanneling (e.g., 'Mhm, yeah'). Current S2S models, even with low latency, are limited by fundamental turn-taking mechanisms, making them feel unnatural.

  3. The Intelligence vs. Naturalness Trade-off 18:20

    There is a fundamental tension: every gain in naturalness (e.g., moving from cascaded STT/LLM/TTS to S2S) requires dedicating model capacity (weights) to audio modalities, which reduces the model's overall intelligence and reasoning capability.

  4. The Hybrid Solution 18:40

    The recommended approach is to split the system: use a small, on-device, full-duplex S2S model for natural conversation flow, while delegating all complex reasoning, tool calling, and agentic capabilities to a separate, powerful background text LLM.

Watch on YouTube Full article

Speech-to-Speech Model Research at Google DeepMind — Valeria Wu Fon & Tom Ouyang, Google DeepMind thumbnail

· 16:42

Speech-to-Speech Model Research at Google DeepMind — Valeria Wu Fon & Tom Ouyang, Google DeepMind

Google DeepMind presented research on Speech-to-Speech models, positioning them as the foundation for the 'agentic future' of voice interaction. The core argument is that modern models must move beyond simple Automatic Speech Recognition (ASR) and Text-to-Speech (TTS) chains. By leveraging natively multimodal pre-training (audio, video, text), these models achieve a 'trifecta' of conversational fluency, high intelligence (task completion/reasoning), and multimodality (handling video, screen shares, and documents). This enables complex, real-time applications like live multilingual translation and proactive, low-latency conversational agents.

Key takeaways

  1. The Shift from Cascaded to Unified Models 2:31

    Historically, speech processing required multiple hand-built components (feature extraction, acoustic modeling, language modeling, rescoring). Modern LLMs, trained on interleaved multimodal examples, collapse this chain, allowing a single model to understand and transition between audio, video, and text inputs.

  2. The Three Pillars of Speech-to-Speech Models 10:01

    A robust model must balance three vectors: 1) Conversational (low latency/snappy); 2) Intelligent (task completion, instruction following); and 3) Multimodal (accepting video, screen shares, and documents). Improving one vector often degrades the others (e.g., increasing intelligence can decrease time to first audio).

  3. Real-Time Multilingual Translation 5:27

    The model can perform streaming, real-time translation across multiple speakers and languages (e.g., English, Spanish, Italian, Chinese) with quality comparable to offline systems, a capability difficult for cascaded systems.

  4. Proactive Audio and Multimodal Output 13:57

    Advanced features include 'proactive audio,' where the model knows when to respond despite background noise or when another speaker is talking. Furthermore, the model can generate multimodal output, including customized real-time avatars with low-latency lip-syncing.

Watch on YouTube Full article

Build A Reasoning Model Scratch 3: The Verifier for Evaluation and RL with Verifiable Rewards thumbnail

· 1:26:47

Build A Reasoning Model Scratch 3: The Verifier for Evaluation and RL with Verifiable Rewards

This video details the implementation of a robust verifier pipeline for evaluating Large Language Models (LLMs) on mathematical benchmarks, specifically using the MATH-500 dataset. The verifier is crucial for establishing a baseline performance metric, which will later be used in Reinforcement Learning with Verifiable Rewards (RLVR) training. The process involves eight key steps: generating text, extracting the final answer (ideally from a boxed format), normalizing the answer to a canonical form, mathematically verifying its equivalence to a ground truth using `sympy`, and finally grading the answer to compute overall model accuracy.

Key takeaways

  1. LLM Evaluation Methodologies 2:01

    Model evaluation can be categorized into Multiple Choice, Verifier-based, Leaderboard-based, and LLM Judge methods. The verifier approach is preferred here because it provides an objective evaluation with a hard ground truth answer, which is necessary for RLVR training.

  2. The Verifier Pipeline 19:13

    The evaluation pipeline is complex, requiring steps to extract the final answer, normalize the format (e.g., removing LaTeX fluff), verify mathematical equivalence, and grade the result. This robustness is critical for reliable benchmarking.

  3. Model Performance Comparison 27:13

    The base model's accuracy (e.g., 15.6% on MATH-500) is significantly lower than the reasoning model's accuracy (e.g., 50.8%). This highlights the value of specialized reasoning techniques and training.

  4. Reproducibility Caveats 20:15

    Model evaluation results can vary based on the computing device (CPU, MPS, CUDA) and due to floating-point math, necessitating running evaluations multiple times and averaging the results for robustness.

Watch on YouTube Full article

Ask the Experts: Inside Nemotron Post-Training | Nemotron Labs thumbnail

· 51:07

Ask the Experts: Inside Nemotron Post-Training | Nemotron Labs

This session details the advanced post-training pipeline used by NVIDIA AI researchers to build state-of-the-art (SOTA) models like Nemotron, focusing on enhancing intelligence and enabling agentic capabilities. Post-training is presented as an evolution from traditional task-specific training, utilizing structured data, chat templates, and specialized frameworks like NeMo Gym and NeMo RL. Key strategies discussed include performing ablation studies on data subsets, employing Mixture of Experts (MoE) for capability generalization, and establishing robust feedback loops using real-world user data to prevent model degradation.

Key takeaways

  1. Post-Training Evolution 3:58

    Post-training builds upon pre-training (which uses massive, diverse, unstructured data for causal language modeling) by focusing on structured data. This teaches the model to follow instructions, use chat templates, and emit tool calls, moving beyond simple task-specific or multi-task training.

  2. Structured Data for Capabilities 7:29

    To narrow model focus, post-training emphasizes structured data (e.g., tool responses, user prompts, tool sets) over unstructured text. This allows the model to learn specific formats, such as JSON or XML, for tool interaction.

  3. Mitigating Capability Degradation 13:54

    To specialize a model (e.g., for software engineering) without losing general capabilities, techniques include including general chat data in the blend and using algorithmic approaches like multi-teacher on-policy distillation (MOPD).

  4. Data Bias and Profiling 19:20

    Data quality is paramount. Researchers must analyze data statistics (e.g., trajectory length, tool call diversity) and perform ablation studies to identify and address biases (e.g., over-reliance on a single tool) that could cause model failure in real-world use.

  5. Starting the Pipeline 25:12

    For developers, the process involves defining the model's 'soul' (core capabilities), quantifying these goals via benchmarks, setting quantitative milestones, and iterating through the post-training pipeline. Starting resources include Nemotron 3.5 Lightning.

Watch on YouTube Full article

MCP Apps: Give the Model Data, Give the User a UI — Dustin Mihalik, Indeed thumbnail

· 15:34

MCP Apps: Give the Model Data, Give the User a UI — Dustin Mihalik, Indeed

This talk details the architectural challenges of building Model-Composable Platform (MCP) applications for large language models (LLMs) like Claude and ChatGPT. The core thesis is that for a UI widget to function effectively, it must be treated as a data layer, not just a visual display. The speaker outlines three critical rules for developers: all displayed information must be provided as data to the model; the tool description must explicitly state that a UI exists; and, most importantly, data processing must be strictly separated from UI rendering to maintain model context and reasoning capability.

Key takeaways

  1. Data-First Design Principle

    When building MCP apps, developers must focus on defining the data the model needs to process before considering the UI. The UI should be viewed as a side effect or result of the model exploring the underlying data.

  2. Rule 1: Show the Model Everything 5:13

    Any information displayed to the user via the UI must also be provided as structured data to the model. Failing to do so creates a 'black box' that prevents the model from answering follow-up questions about the displayed content.

  3. Rule 2: Declare the UI in the Description 8:26

    The tool description must explicitly state that a UI exists. Otherwise, the model will attempt to narrate the results underneath the widget, leading to redundant and confusing output.

  4. Rule 3: Separate Data Processing from UI Rendering 13:39

    This rule supersedes the others. The architecture must split the job into two distinct tools: one for pure data retrieval (e.g., `search_jobs`) and a separate, dedicated tool for rendering the results (e.g., `render_jobs`). This allows the model to perform complex data exploration without being limited by the UI's single call.

Watch on YouTube Full article

500 Skills, Zero Fine-Tuning: LinkedIn's Playbook for AI Agents — Ajay Prakash, LinkedIn thumbnail

· 20:25

500 Skills, Zero Fine-Tuning: LinkedIn's Playbook for AI Agents — Ajay Prakash, LinkedIn

LinkedIn addressed the challenge of coding agents (LLMs) lacking context within massive, proprietary enterprise codebases. The solution involves 'contextual agent playbooks and tools' managed by an internal MCP (Model Context Platform) server. Instead of feeding all tools into the context, the system uses three meta-tools—Search, Get Schema, and Execute—to scale to thousands of tools and playbooks. Playbooks provide self-contained, structured instructions, enabling agents to perform complex, multi-step tasks reliably, and incorporating a self-improving loop where agents update stale documentation.

Key takeaways

  1. Focus on Reliability and Quality from Day One 20:00

    The system's success was predicated on prioritizing quality and reliability over mere productivity, ensuring the infrastructure does not degrade as the organization scales its use of AI agents.

  2. Build Dedicated Infrastructure for Agents 20:10

    In a large enterprise, simply providing the latest AI models and tools is insufficient; a dedicated, robust infrastructure is required to manage and guide agent operations within the internal system context.

Watch on YouTube Full article

Build A Reasoning Model Scratch 2: Loading a Base Model, Text Generation, and KV Caching thumbnail

· 1:36:42

Build A Reasoning Model Scratch 2: Loading a Base Model, Text Generation, and KV Caching

This session provides an in-depth, hands-on guide to working with Large Language Models (LLMs) from scratch using PyTorch. The process covers loading pre-trained models (e.g., Qwen3), understanding the tokenization and autoregressive text generation process, and critically, implementing advanced optimization techniques. Key focus areas include utilizing KV caching to drastically reduce inference latency and applying `torch.compile` for graph optimization, which are essential skills for deploying high-performance LLM services.

Key takeaways

  1. LLMs Generate Text Autoregressively 57:00

    Text generation is not a single step; the model generates one token at a time (autoregressive process). The output of each step is appended to the input context for the next iteration. This iterative nature makes text generation computationally expensive.

  2. Greedy Decoding and Token Selection 1:22:01

    The basic method for selecting the next token involves Greedy Decoding, which selects the token with the highest score (using `torch.argmax`) from the model's output logits. The process relies on the tokenizer to convert these IDs back into readable text.

  3. KV Caching for Inference Optimization

    To improve performance, KV caching stores intermediate Key and Value tensors computed during attention mechanisms. Instead of recomputing these values in every step, they are retrieved from the cache, significantly reducing computational overhead and improving throughput (e.g., from 4 to 28 tokens/second).

  4. Model Compilation with `torch.compile`

    The `torch.compile()` feature optimizes the PyTorch computation graph by fusing operations, reducing overhead and improving execution speed. This is a powerful optimization technique for deployment but requires careful handling due to potential compatibility issues.

Watch on YouTube Full article

AI Simplified: 6 Concepts You Need to Know About Modern AI thumbnail

· 8:49

AI Simplified: 6 Concepts You Need to Know About Modern AI

The video simplifies modern AI by detailing six essential concepts: Large Language Models (LLMs), Model Training/Tuning, Retrieval Augmented Generation (RAG), AI Agents, Model Context Protocol (MCP), and System Prompts. The explanation uses human analogies to show how these components—from the core 'brain' (LLM) to the 'central nervous system' (MCP)—are integrated to create sophisticated systems capable of reasoning, accessing external knowledge, and taking autonomous actions.

Key takeaways

  1. Artificial Intelligence (AI)

    A subfield of computer science focused on matching or exceeding human intelligence in a machine. The core function is generating content using probabilities to predict output based on input, described as 'autocomplete on steroids.'

  2. Large Language Models (LLMs)

    The foundational component or 'brain' of the AI system where core intelligence and reasoning capabilities reside. It is responsible for generative AI outputs (words, images, sounds).

  3. RAG (Retrieval Augmented Generation) 3:35

    A method to extend the LLM's knowledge base by integrating trusted external sources (e.g., research papers or product documentation). This process helps reduce 'hallucinations'—confident errors made by the AI.

  4. AI Agents 5:20

    An advanced system where a model autonomously uses external tools (e.g., writing code, searching the web, reading/writing databases) to achieve specific goals, giving the AI 'hands and feet.'

  5. Model Context Protocol (MCP) 6:20

    The orchestration layer that acts as the central nervous system for an AI agent. MCP connects the model's reasoning to the external tools, coordinating actions.

  6. System Prompts 7:30

    A set of guiding principles or constraints given to the model that dictates its behavior and ethical boundaries. This prevents misuse (like prompt injections) without requiring constant, expensive retraining.

Watch on YouTube Full article

Build A Reasoning Model Scratch 2: Loading a Base Model, Text Generation, and KV Caching thumbnail

· 1:36:42

Build A Reasoning Model Scratch 2: Loading a Base Model, Text Generation, and KV Caching

This session details the foundational steps for building and optimizing reasoning models using pre-trained Large Language Models (LLMs). The process involves loading a base model (e.g., Qwen3), understanding text generation as an iterative, token-by-token prediction loop, and implementing critical performance enhancements. Key techniques covered include KV caching to drastically reduce redundant computation during inference, and utilizing `torch.compile` for overall PyTorch graph optimization.

Key takeaways

  1. LLM Text Generation Mechanism 57:12

    LLMs generate text sequentially (one token at a time). The process involves feeding the current context into the model, which predicts the next token. This iterative nature makes standard generation computationally expensive because the entire input must be processed in every step.

  2. KV Caching for Efficiency

    KV caching stores intermediate Key and Value vectors from the attention mechanism for previously generated tokens. By retrieving these cached values instead of recomputing them, it significantly reduces redundant computation, improving inference speed (e.g., increasing throughput from 4 to 28+ tokens/second).

  3. Model Compilation with torch.compile

    `torch.compile` optimizes the PyTorch computation graph by fusing operations (like matrix multiplications) into single, more efficient kernels. While beneficial for performance, it can introduce a noticeable warm-up time during the first run.

Watch on YouTube Full article

Why AI Agents Need Million-Token Context — Thomas Wolf & Olive Song, MiniMax thumbnail

· 20:48

Why AI Agents Need Million-Token Context — Thomas Wolf & Olive Song, MiniMax

The discussion details MiniMax M3, a frontier open-source model featuring a functional one-million-token context window and native multimodality (text, image, video). The efficiency of this long context is achieved through the proprietary Minimax Sparse Attention (MSA) architecture. Furthermore, the conversation highlights advanced research practices at MiniMax, including using intern contributions for architectural improvements and training models from the very first step to ensure optimal multimodal performance.

Key takeaways

  1. MiniMax M3 Capabilities 4:53

    M3 is a highly capable open-source model (400B total parameters, 20B activated) that combines coding proficiency, agentic capabilities, and multimodal understanding across text, images, and video. It features a functional one-million-token context window.

  2. Long Context Necessity for Agents 6:30

    The need for extremely long context windows is driven by complex agentic tasks, which require processing multi-round conversations and accumulating tool responses from an entire environment, making shorter contexts insufficient.

  3. Sparse Attention Architecture (MSA) 7:30

    The Minimax Sparse Attention (MSA) architecture is designed to efficiently scale context length. It uses an index branch to select relevant context blocks, followed by a sparse attention branch for calculation, allowing scalability in both length and model size.

  4. Native Multimodality Training 17:25

    MiniMax trains M3 from the very first step as a multimodal model (native multimodality), rather than adding vision capabilities after text pre-training. This approach prevents performance degradation in text understanding and ensures better scalability.

  5. Internal Research Culture 13:49

    MiniMax utilizes an open research culture where external community members (including interns) can propose projects, find model weaknesses through evaluations, and contribute code/improvements that are integrated into final training runs.

Watch on YouTube Full article

Agents' next frontier: agent-to-agent and network effects — Jean-Denis Greze, Town thumbnail

· 21:17

Agents' next frontier: agent-to-agent and network effects — Jean-Denis Greze, Town

The talk reframes multi-agent systems not as 'agent-to-agent' interactions, but fundamentally as a search problem: ensuring that an LLM's context window contains the optimal information for a tool call. The primary technical barrier to achieving this ideal state—a single agent with access to all world information—is not context length, but privacy and security. Greze outlines five strategies (Shared Trust Boundaries, Custom Tools, Shared Silos, Human Conduit, Black Box) that attempt to approximate the optimal outcome while managing data leakage risks.

Key takeaways

  1. Reframing Agents as Search Problems 2:00

    Most LLM systems are best viewed as search problems. The goal is engineering the system so that the context window contains the precise information needed before a tool call, maximizing the LLM's ability to return the best result.

  2. The Privacy Constraint (Coase Theorem) 5:24

    The ideal state is one agent with access to all world information. However, privacy acts as a transaction cost, preventing this perfect data aggregation, which the Coase theorem highlights.

  3. Shared Silos and Sweeper Agents 13:59

    A promising approach is creating shared silos (e.g., wikis) where a 'sweeper AI' automatically identifies and moves information from private spaces into public, company-wide knowledge bases.

  4. The Black Box Approach

    This advanced method allows an LLM (in a 'black box' agent) to query multiple silos without pinging every human. It only asks the data owners for approval at the final moment of information sharing.

  5. The Future: Auto Mode

    The frontier is 'auto mode,' where LLMs are trusted to automatically determine if a disclosure is low-sensitivity and can be shared without explicit human approval, scaling with model capacity.

Watch on YouTube Full article

Koray Kavukcuoglu on frontier models, coding agents, and building AGI thumbnail

· 26:47

Koray Kavukcuoglu on frontier models, coding agents, and building AGI

Google DeepMind SVP Koray Kavukcuoglu discusses the ambitious journey toward Artificial General Intelligence (AGI), emphasizing that success relies on moving models from simple coding capabilities to full software engineering and agentic workflows. The discussion highlights the continuous progress of the Gemini model family (e.g., 3.7, Flash) through parallel research tracks and stresses that real-world user interaction is critical for guiding development toward AGI.

Key takeaways

  1. AGI lacks a definitive test or benchmark 14:53

    There is no single standardized test to determine if an AI has reached AGI; progress is measured by the overall journey and capability build-up, not a sudden threshold. (08:53)

  2. The focus shifted from coding to software engineering 2:48

    A major breakthrough in model development was understanding that true intelligence requires more than just writing code; it involves mastering the full scope of 'software engineering,' including working with tools and functions, effectively turning the model into an agent. (02:48)

  3. Gemini 4 is positioned as a major research milestone 3:17

    The team announced Gemini 4 as the most ambitious pre-training run to date, representing a significant step in combining multiple learnings and architectural improvements into one model. (03:17)

  4. User interaction is the guide for AGI development 11:59

    The path to building AGI depends heavily on continuous user interaction and feedback, whether users are performing daily tasks (e.g., emails) or conducting advanced scientific research. This usage spectrum guides problem-solving efforts. (11:39)

Watch on YouTube Full article

Build A Reasoning Model Scratch 1: Motivation & Code Setup thumbnail

· 43:27

Build A Reasoning Model Scratch 1: Motivation & Code Setup

This video introduces the concept of reasoning models, detailing their evolution from conventional LLMs and how they are utilized within agent harnesses. The core focus is on the educational value of implementing these complex systems 'from scratch' to gain a deep understanding of underlying mechanisms (e.g., reinforcement learning, distillation). Practical steps include setting up the development environment using `uv` for dependency management and PyTorch/JupyterLab for coding.

Key takeaways

  1. LLM Evolution 2:00

    The progression moves from conventional LLMs to reasoning models, which are modified versions of regular LLMs. These reasoning models form the 'engine' used by modern agent harnesses (e.g., OpenAIs Code Agent) [1:16].

  2. Value of From Scratch Learning 8:23

    Implementing models from scratch provides unambiguous, precise code examples that are highly valuable for deep learning understanding, serving as a 'proof' beyond mere conceptual images [8:23].

  3. Setup Workflow 20:40

    The recommended setup involves cloning the GitHub repository and using `uv` (a fast dependency manager) to sync dependencies within an isolated virtual environment before running code in JupyterLab or VS Code [20:40].

Watch on YouTube Full article

NVIDIA Dynamo in 5 Minutes: What Is It and Why Now? thumbnail

· 6:03

NVIDIA Dynamo in 5 Minutes: What Is It and Why Now?

NVIDIA Dynamo is a distributed serving layer designed to complement existing LLM inference engines (like SGLang, TensorRT-LLM, or vLLM). It addresses the complex challenges of scaling large language model inference across multi-GPU and multi-node clusters. Instead of being an inference engine itself, Dynamo coordinates workers, manages request routing, ensures fault tolerance, optimizes resource utilization through KV cache reuse, and provides a modular architecture for building complex production serving stacks.

Key takeaways

  1. Dynamo's Role in Scaling

    Dynamo acts as a distributed serving layer *around* inference engines. It coordinates the system to achieve multi-GPU and multi-node performance that single engines cannot provide alone. (0:32)

  2. Disaggregated Serving Efficiency 3:40

    It helps coordinate prefill (input prompt processing) and decode (token generation) phases across worker pools, which can have different resource needs, improving efficiency. (2:20)

  3. System Reliability and Scaling 5:05

    Dynamo provides crucial capabilities for production environments, including advanced request routing based on capacity/worker state, fault tolerance against node failures, and composability to connect various system components. (3:05)

Watch on YouTube Full article

IBM’s mainframe chip collab, NVIDIA’s Poolside deal & Ox Alpha’s reveal thumbnail

· 30:59

IBM’s mainframe chip collab, NVIDIA’s Poolside deal & Ox Alpha’s reveal

The discussion covered major developments in AI infrastructure, focusing on IBM's new dual-architecture mainframe processor combining z/OS and Arm. This aims to bring modern AI workloads closer to mission-critical data residing on mainframes. Furthermore, NVIDIA's strategy was analyzed through its $6 billion deal with Poolside and the acquisition of Hugging Face, positioning NVIDIA as a central player in the open-source AI ecosystem by controlling key software standards. Finally, the reveal of Z.ai’s GLM-5.3-Flash model highlighted the trend toward stealth model releases.

Key takeaways

  1. IBM's Dual-Architecture Mainframe Processor 21:50

    IBM unveiled a new dual processor architecture at Hot Chips that combines IBM Z (mainframe workload) with Arm. This allows systems to run Arm-native Linux workloads alongside z/OS, addressing the challenge of integrating modern AI software into mission-critical mainframe environments.

  2. NVIDIA's Open Ecosystem Strategy 2:00

    NVIDIA is making a strategic play to be the center of open-source AI by acquiring Hugging Face (the cornerstone of open AI software) and securing a $6 billion license deal with Poolside. This solidifies their position in hardware while maintaining an open model ecosystem.

  3. LLM Model Release Tactics 24:30

    The anonymous 'Ox Alpha' model was revealed to be Z.ai’s GLM-5.3-Flash, an open-source LLM built with sparse and linear attention techniques. The discussion noted that stealth launches are a highly effective marketing strategy for generating hype and speculation.

Watch on YouTube Full article