home.social

#builtinai — Public Fediverse posts

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

fetched live
  1. Built-in AI brings incredible structural upsides: zero marginal cost, shared on-device models, no API key friction, and permissionless innovation.

    Yet taking non-deterministic AI to production still requires observability to trace sessions and debug edge cases in the wild.

    Julien Bataillé (Rakuten) built an awesome PoC instrumenting the Prompt API with OpenInference + direct browser-side OTLP export to Langfuse/LangSmith!

    🔗 github.com/rakutenanalytics/we

    #BuiltInAI #WebAI #OpenTelemetry #WebDev

  2. I stumbled across Arcrawls (arcrawls.com/), a cute browser pet that reacts to the content in your tabs and gains XP as you surf. It also has AI smarts, because obviously it does ✨🚀 :)

    By using local Distilbert (via ONNX WASM) and the Prompt API, it side-steps 3 massive hurdles:
    1. No cloud API bills to pay.
    2. 100% privacy (no data leaves your machine).
    3. No friction (users don't have to paste an API key).

    Check out the code: github.com/fujiDevv/context-aw

    #WebDev #BuiltInAI #WebAI

  3. Per popular request, the LanguageDetector API will soon gain the ability to dissociate Simplified Chinese and Traditional Chinese.
    groups.google.com/a/chromium.o

    Documentation: developer.chrome.com/docs/ai/l

    #WebAI #BuiltinAI

  4. 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

  5. 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

  6. 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

  7. #JSConfMX 🌵 talk done (in bad Spanish 🫣). Demonstrated how to add built-in AI (Summarizer, Translator, Prompt API with multimodal input) to a conference webpage like tomayac.github.io/throw-aways/ (a clone of the real deal jsconfmx.org/speaker/W3Eio). Then walked through the code based on a broken down, step-by-step reduced version (googlechrome.github.io/samples). Learn more at developer.chrome.com/docs/ai/b! 🧠 #BuiltInAI

  8. Building the "Guess Who?" game with the Prompt API: developer.chrome.com/blog/ai-g. Cool new #BuiltInAI demo by @utilitybend.

    😃🥹🤩❌🧐

    Is your character holding back its tears?
    Does your character wear a a monocle?

  9. 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

  10. 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

  11. 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.

  12. 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

  13. 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.

  14. 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