Build new features using built-in AI in Chrome Google announced at I/O 2026 that developers can now build AI-powered features directly into web applications using Chrome's built-in AI APIs, eliminating cloud costs and keeping user data on-device. The new capabilities include automatic headline and meta description generation, image alt-text creation, content rewriting, and real-time translation, all running locally on the user's device. Chrome partnered with Build Awesome to release a blog template demonstrating these features, with companies like Drupal, Yahoo! Japan, and Trip.com already using the technology in production. Published: May 26, 2026 This post is a write-up of the talk given at Google I/O 2026 by Thomas Steiner. Imagine building a travel blog where the blog post editor doesn't just store the text, but where it actively supports you when writing. Meet Maya and Ashok, the creators of trAIlblazers . They use built-in AI in Chrome /docs/ai/built-in . By running models directly on the user's device, developers bypass expensive cloud costs and latency while keeping sensitive data local. We've collaborated with Build Awesome formerly known as Eleventy to release a blog template with all the AI features listed in the talk. Why built-in AI? Cost-efficient: No cloud inference cost, all computation happens on users' supporting devices. Privacy first: Sensitive data never leaves the browser. Offline functionality: Once the model is downloaded, AI features work without an internet connection. Performance: Hardware acceleration allows on-device models to rival and sometimes beat cloud speeds. Hybrid inference: Using polyfills and tools like Firebase AI Logic , you can fall back to the cloud on unsupported devices like mobile while staying native on desktop. AI features for modern web apps The Summarizer API The trAIlblazers editor uses the Summarizer API /docs/ai/summarizer-api to generate headlines and SEO-friendly meta descriptions automatically. Example: Generate a headline js const blogPost = document.querySelector '.article-body' .innerText; const summarizer = await Summarizer.create { type: 'headline', sharedContext: 'Write headlines that make people want to read the blog post', } ; for await const chunk of summarizer.summarizeStreaming blogPost { headline.append chunk ; } The Prompt API with structured output Need specific data? By using JSON Schema with the Prompt API /docs/ai/structured-output-for-prompt-api , you can make the AI return predictable formats. The trAIlblazers team uses this for the following: Tag Generation: Suggest categories like "Adventure" or "Beach" from a predefined list. Comment Moderation: Classify comments as "Safe" or "Harmful" before they are published. Media accessibility The editor automates the "hard parts" of Markdown. When you drop an image, the Prompt API with multimodal input https://developers.google.com/ml-kit/genai/prompt/android/get-started analyzes the pixels to generate accessible alt-text and informative captions. Writing and rewriting With the Writer /docs/ai/writer-api and , users can expand bullet points into complete paragraphs and change the tone of a paragraph to be "more casual" or "shorter" with a single click. /docs/ai/rewriter-api Rewriter APIs Seamless translation The Translator API /docs/ai/translator-api allows creators to draft content in English and instantly translate it for Spanish or Japanese readers, which native speakers can then refine. Real-world success stories Many partners are already shipping these APIs in production. Notable examples include the following: Drupal: Uses the Summarizer API for SEO tag generation within CKEditor. Yahoo Japan: Uses the Prompt API for community comment moderation. Trip.com: Helps shoppers navigate complex flight booking options with AI overviews. Resources from the talk Ready to build your own "trAIlblazers" experience? Check out these resources: Starter template: Build Awesome starter-extended-blog https://github.com/GoogleChrome/starter-extended-blog Includes all AI features mentioned in the talk. Documentation: Built-in AI on Chrome for Developers /docs/ai/built-in TypeScript support: Installon npm. @types/dom-chromium-ai Google I/O 2025 talk: Practical built-in AI with Gemini Nano in Chrome https://www.youtube.com/watch?v=CjpZCWYrSxM