Skip to main content

Tag

AI

29 articles tagged with AI.

← All articles
  1. Joining the Agentic AI Foundation as an ambassador

    I've been accepted into the Agentic AI Foundation's ambassador programme. Here's what the foundation is, why it matters that this work is happening in the open, and what I've actually signed up to do.

  2. Sparse vs Dense Retrieval: Why Your Search Doesn't Understand Synonyms

    If your retriever misses a relevant document because the user phrased their question differently than the document's author wrote the content, the LLM generates an answer with incomplete context. It doesn't hallucinate because it's confused, it hallucinates because it never saw the right information.

  3. AgentTool vs sub-agent delegation

    Two ways to give an agent help: a tool it calls and gets an answer back from, or a sub-agent it hands the whole turn to. Same data-agent, opposite control flow. When to reach for each, shown with a real NL2SQL-to-chart pipeline in Google ADK.

  4. What is Loop Engineering

    Everyone is quoting "design loops that prompt your agents" and few can say what a loop actually is. Here's the plain version, plus the part the hype skips: the loop is the easy bit. What's hard is that it makes your understanding optional, and nothing in it tells you when you've stopped understanding what ships.

  5. Kitsune: a local-first agent runtime

    I built a managed-agent runtime that runs entirely on one laptop. In this post I show you how you can set it up.

  6. Build Your Own Agent Harness

    What an agent harness is, how you build one, and why it is where the work now lives. I start from a bare loop, break it on real tasks, and walk the five places every harness ends up reaching for.

  7. Agent Experience (AX) and the Agent Experience Interface (AXI): a working demo

    A companion to my AX and AXI piece. I built one fictional CLI twice, once human-only and once agent-ready, pointed a small Google ADK agent at each, and watched what happened. With the interactive demo and the real numbers.

  8. Agent Experience (AX) and the Agent Experience Interface (AXI): a working guide

    What Agent Experience means, where AXI fits inside it, and what companies that take both seriously are actually changing about their products. With the official sources and the benchmark numbers.

  9. Content Credentials Hit Chrome: What Google's C2PA Expansion Actually Changes

    Google brought SynthID and C2PA verification into Chrome and Search at I/O 2036. A grounded look at what Content Credentials actually do, what they don't, and what changes now that verification lives in the browser.

  10. EU AI Act Article 4: A Practical Guide to the AI Literacy Obligation

    What Article 4 of the EU AI Act actually requires, who it applies to, and what your organisation needs to do before national enforcement begins on 2 August 2026.

  11. What is agentic AI? A working definition for 2026

    A direct definition of agentic AI, what's actually shipping in production today, what isn't, and the five things worth building first. With specifics, citations, and an honest list of what doesn't work yet.

  12. The Agent-as-Tool Pattern

    When reflection needs more than a fixed iteration count, let an LLM orchestrate. A Star Wars crew architect built with Google ADK that scouts, validates, and re-scouts until the crew holds up.

  13. The Coordinator Agent Pattern

    When the shape of the request decides the shape of the work, let an LLM dispatch. An agent coordinator built with Google ADK that routes requests to sequential, parallel, and single sub-agent teams on the fly.

  14. Harness - A Local Managed Agent in Four Planes

    Anthropic decoupled their agent into brain, hands, and session. I built a local TypeScript version in roughly 2,400 lines to see what the architecture actually feels like when you type it out.

  15. The Loop Agent Pattern

    When one pass is not enough, let agents iterate. A playlist curator built with Google ADK that generates songs, verifies them against MusicBrainz, and refines until every track checks out.

  16. The Sequential Agent Pattern

    Chaining multiple specialised agents into a pipeline where each one builds on the last. Illustrated with a TypeScript CLI that fetches a quote, researches its author, and writes an inspiration card.

  17. The Parallel Agent Pattern

    When agents do not depend on each other, run them at the same time. Illustrated with a TypeScript translation pipeline built with Google ADK that translates a phrase into three languages simultaneously, then aggregates the results with Gemini.

  18. The Single Agent Pattern

    A look at the simplest agentic AI pattern: one model, one tool, zero orchestration. Illustrated with a tiny TypeScript agent built with the Google Agent Development Kit (ADK) that uses Gemini and Google Maps to review any place by name.

  19. Watch the Past Move: Animating Historic Photos with Gemini and Veo

    What if you could take a dusty old black-and-white photograph and watch it come to life? In this post, I walk through a Node.js pipeline that colorises historic photos with Gemini and then animates them into video using Veo 3.1.

  20. Building a Historical Time Machine with Gemini and Google Maps

    Have you ever wondered what your favourite landmark looked like a hundred years ago? In this post, I walk you through a Node.js application that generates historically accurate photographs of any real-world location at any point in time, and even checks its own work for anachronisms.

  21. Why How You Split Your Documents Matters More Than You Think

    Before you reach for a more powerful embedding model or a larger context window, look at what you're actually feeding into a RAG pipeline. Sometimes the highest-leverage improvement isn't a better model but rather it's a better split.

  22. Filesystem as Context: Building an AI Detective with bash-tool

    Instead of stuffing documents into prompts, give your AI agent a filesystem and let it retrieve its own context. Here's how, using a murder mystery detective as the demo.

  23. Building AI Agents with Google ADK: A Practical Guide

    Learn how to build multi-agent systems with vector search, tool orchestration, and semantic understanding using Google's Agent Development Kit (JS/TS version).

  24. Detecting Hallucinations in Language Models with Natural Language Inference

    A practical look at why hallucinations occur in modern language models, why current evaluation methods make them persist, and how to detect them using Natural Language Inference in JavaScript.

  25. The Importance of Precise Function Declarations for LLMs

    This article explores how clearly defined functions enable large language models to make accurate tool calls, emphasising the importance of precision and developer intent in the function calling process.

  26. Creating an MCP Client: Connecting LLMs to the Real World

    In this article, we walk through the process of building a Model Context Protocol (MCP) client. Learn how to connect to servers, discover tools, and invoke them from your own app or LLM integration.

  27. MCP Servers - The Bridge Between LLMs and Real-World Tools

    Model Context Protocol (MCP) servers expose tools, resources, and prompts to LLMs in a unified, structured way. This post explores how they work, how to build one, and why they are a critical part of the future AI stack.

  28. Filling in the Blanks: Teaching AI to Inpaint

    A hands-on guide for exploring how to train a simple AI model using TensorFlow.js to inpaint missing parts of images - without needing large datasets or prior machine learning experience.

  29. How Transformers and LLMs Actually Work - A Developer's Guide with Code

    A hands-on walkthrough for web developers to demystify large language models by actually building a mini Transformer from scratch.