#promptapi — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #promptapi, aggregated by home.social.
-
So, how do we detect #PromptAPI support in #JavaScript? I want my website to display a big fat banner warning when it's available.
-
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.
https://groups.google.com/a/chromium.org/g/blink-dev/c/iR6R7-nQeHI/m/gN4iEGEdAQAJ
#chrome #webStandards #ChromeAI #ChromePromptAPI #PromptAPI -
#Development #Analyses
The duality of AI models in the browser · “I’m bullish, but also have concerns.” https://ilo.im/16cnmd_____
#Prompting #AI #LLMs #SLMs #Chrome #Browser #PromptAPI #APIs #WebDev #Frontend -
#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.
https://www.theregister.com/2026/04/30/mozilla_pushes_back_against_googles/ -
Mozilla's Opposition to Chrome's Prompt API
https://github.com/mozilla/standards-positions/issues/1213
#HackerNews #Mozilla #Chrome #PromptAPI #TechNews #WebStandards
-
📢 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: https://github.com/explainers-by-googlers/prompt-api/.
```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);
}
```