home.social

#builtinai — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #builtinai, aggregated by home.social.

  1. Is your AI feature a "Main Quest" helper or a high-friction detour?

    Most AI feels like a "Pull" handle on a door that should have a Push-bar. I deconstructed an AI Alt-Text demo using the built-in AI APIs to meet users where they already go.

    ✅ Follow The Momentum: Why Push-bars beat Pull handles.
    ✅ The Latency Tax: Hide the seams or quality won't matter.
    ✅ Temporal Illusions: Why "instant" AI can decrease trust.

    📖 exploractical.com/blog/2026/al
    🧪 exploractical.com/demos/alt-te

    #WebAI #UX #BuiltInAI

  2. In most enterprise environments, third party cloud-based STT is a non-starter. That usually leaves us with mediocre OS defaults.

    My colleague @paul 's "Utter" Chrome extension fixes this by keeping the intelligence loop local. It uses the WebSpeech and Prompt APIs to transcribe and polish your "train of thought" entirely on-device. 🛡️✨

    A productivity unlock for AI agent workflows without the data leakage.

    Give it a spin: chromewebstore.google.com/deta

    #WebAI #BuiltInAI

  3. Videos from the Web AI Summit coming soon!

    In the meantime, here's the deck for "Beyond the demo: building the WebAI playbook." Let's validate ideas & UX patterns, fill tooling gaps, and write this playbook together.

    docs.google.com/presentation/d

    #WebAI #BuiltinAI #WebDev #GeminiNano #ChromeAI

  4. Before any of the built-in AI APIs in Chrome can be used, the underlying AI model and any customizations (such as fine-tunings) must be downloaded from the network 🌐, the compressed data be extracted 🗜️, and finally be loaded into memory 🧠. My new guide documents some of the best practices for improving the user experience as they wait for this download: developer.chrome.com/docs/ai/i.

    There are two embedded demos that show:

    - Client-side only
    - Hybrid implementation

    #WebAI #BuiltInAI

  5. I have attendee codes for the Web AI Summit in Sunnyvale on Oct 17. The Chrome Web AI team wants to meet you for the hallway track. Share your Web AI projects & pain points for a chance to get a code & help us with critical context engineering.

    Agenda: rsvp.withgoogle.com/events/web

    Can't make it? No worries—the talks will be published a few weeks after the event.

    #WebAI #WebDev #AI #BuiltInAI

  6. On the Chrome team, we have an interesting new origin trial for you to try in your apps: the Proofreader API: developer.chrome.com/docs/ai/p.

    ❌ tyop → ✅ typo

    ```js
    const proofreader = await Proofreader.create({
    expectedInputLanguages: ['en'],
    });

    const proofreadResult = await proofreader.proofread(
    'PLease tryt his API and let us knwo how it foes!',
    );
    ```

    It's powered by Gemini Nano internally and part of Chrome's #BuiltInAI / #WebAI effort.

  7. Thrilled to see the #BuiltInAI Translator API used by jimakuChan, a popular web app for streamers to generate live subtitles with translations.

    This is exactly the vision: making powerful AI available directly in the browser. Users get fast, private, live translation for free—no complex setup needed.

    Another win for #WebAI !

    Link to jimakuChan: sayonari.github.io/jimakuChan/

    Link to built-in AI APIs:
    developer.chrome.com/docs/ai/b

  8. On the Chrome team, we have an interesting new origin trial for you to try in your apps: the Proofreader API: developer.chrome.com/docs/ai/p.

    ❌ tyop → ✅ typo

    ```js
    const proofreader = await Proofreader.create({
    expectedInputLanguages: ['en'],
    };

    const proofreadResult = await proofreader.proofread(
    'PLease tryt his API and let us knwo how it foes!',
    );
    ```

    It's powered by Gemini Nano internally and part of Chrome's #BuiltInAI / #WebAI effort.

  9. Built-in AI takes a field trip to Middle-earth 🗺️🧝‍♂️!

    I love seeing the unexpected things people create with the web platform.

    Tecendil uses the built-in AI Language Detector API to transliterate text into Tolkien's Tengwar script: tecendil.com/?q=Ten%C3%A9is%20

    This is the magic we live for! It shows how zero-cost, low-friction, client-side AI unlocks a new canvas for developers.

    What's the most creative use of a web API you've stumbled upon?
    #WebPlatform #BuiltinAI #WebAI #WebDev #Tolkien