home.social

#promptapi — Public Fediverse posts

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

fetched live
  1. So, how do we detect #PromptAPI support in #JavaScript? I want my website to display a big fat banner warning when it's available.

  2. So, how do we detect #PromptAPI support in #JavaScript? I want my website to display a big fat banner warning when it's available.

  3. What *really* worries me with the new Chrome Prompt API is not that it shipped regardless of the strong negative sentiment, that it gives websites and extensions free access to your local compute or that it can easily turn into a white-gloved botnet. What worries me is that the Intent document doesn't mention privacy or security even once, nor does it address these concerns in a direct way.
    groups.google.com/a/chromium.o
    #chrome #webStandards #ChromeAI #ChromePromptAPI #PromptAPI

  4. What *really* worries me with the new Chrome Prompt API is not that it shipped regardless of the strong negative sentiment, that it gives websites and extensions free access to your local compute or that it can easily turn into a white-gloved botnet. What worries me is that the Intent document doesn't mention privacy or security even once, nor does it address these concerns in a direct way.
    groups.google.com/a/chromium.o
    #chrome #webStandards #ChromeAI #ChromePromptAPI #PromptAPI

  5. #Firefox maker torches #Google for building Prompt #API into #webbrowser
    #Mozilla fears wiring an #AI API into #Chrome will make the web less open
    #PromptAPI, is already being tested in Chrome and #MicrosoftEdge.
    Jake Archibald, Mozilla web developer relations lead, articulated the org’s concerns in a GitHub discussion of the API, which provides a standard way to send and receive prompts and responses from a local machine learning model.
    theregister.com/2026/04/30/moz

  6. #Firefox maker torches #Google for building Prompt #API into #webbrowser
    #Mozilla fears wiring an #AI API into #Chrome will make the web less open
    #PromptAPI, is already being tested in Chrome and #MicrosoftEdge.
    Jake Archibald, Mozilla web developer relations lead, articulated the org’s concerns in a GitHub discussion of the API, which provides a standard way to send and receive prompts and responses from a local machine learning model.
    theregister.com/2026/04/30/moz

  7. "I want it that way…" 🎶

    Back from 3 weeks of traveling! Here are some conf highlights: I was honored to speak at my 4th NG-DE. My talk was about what’s new in #WebAI—with updates on #WebNN, #PromptAPI & lots of Karaoke.

    ➡️ Slides: thinktecture.com/contributions

    #ngde #Angular

  8. On my way to the @wearedevs World Congress 2025 in #Berlin! Meet me at the venue and join my talks on Friday, July 11:

    ➡️ 10:10 “Hello, AI?!” — Real-time interactions with Gemini Live at the Google Cloud booth

    ➡️ 15:00 #PromptAPI & #WebNN: The AI Revolution Right in Your Browser at Stage 7

    #wearedevs #RealtimeAI #WebAI

  9. Check out my three-part article series about the benefits of on-device large language models and learn how to add AI capabilities to your web apps: web.dev/articles/ai-llms-benef #GenAI #WebLLM #PromptAPI

  10. I’m hosting a free webinar tomorrow (in German) about the experimental Built-in AI APIs that the Web Machine Learning Community Group is working on. These APIs are all secure and privacy-preserving, as they perform all the computations on your device. Come and join me! #webml #builtinai #promptapi lnk.thinktecture.cloud/webinar

  11. Just wrapped up an incredible @wearedevs World Congress! 🚀 Excited to share my presentation on cutting-edge web technologies:

    🌐 WebGPU
    🧠 WebNN
    🆕 Chrome’s Prompt API

    Slides available here: thinktecture.com/contributions

    #wearedevs #wwc24 #genai #webgpu #webnn #promptapi

  12. 📢 On the Chrome team, we've published an Explainer for the planned Prompt API that gives developers access to a (small) language model (shipping with the browser or the operating system) from JavaScript: github.com/explainers-by-googl.

    ```js
    const session = await ai.createTextSession();

    // Prompt the model and stream the result:
    const stream = await session.promptStreaming("Write me an extra-long poem.");

    for await (const chunk of stream) {
    console.log(chunk);
    }
    ```

    🔮 #AI #PromptAPI

  13. 📢 On the Chrome team, we've published an Explainer for the planned Prompt API that gives developers access to a (small) language model (shipping with the browser or the operating system) from JavaScript: github.com/explainers-by-googl.

    ```js
    const session = await ai.createTextSession();

    // Prompt the model and stream the result:
    const stream = await session.promptStreaming("Write me an extra-long poem.");

    for await (const chunk of stream) {
    console.log(chunk);
    }
    ```

    🔮 #AI #PromptAPI