WebInfer

Checking…

Try WebInfer live

AI that runs through your browser.

Install the WebInfer extension to try it live
WebInfer lets any website use AI that runs through your browser — no keys shipped to the site, no data sent to us.

Your keys & models stay yours

API keys and local models live in the extension, never in the page.

Sites get AI without shipping keys

Developers call navigator.llm; you stay in control.

Chrome will ask for permission the first time each site uses WebInfer — like the camera or location prompts you already know.

Text generation
One prompt in, generated text out.

Checking availability…

Streaming
Tokens render live as the model produces them.

Checking availability…

Structured output
Get typed JSON back that matches a schema you define.

Checking availability…

Translation
Translate text — uses Chrome's built-in translator when available, else an LLM.

Checking availability…

For developers

Same three lines, running against whatever provider the visitor configured:

Snippet
npm i webinfer

import { generateText, checkAvailability } from 'webinfer'

const { available } = await checkAvailability()
if (available) {
  const { text } = await generateText({ prompt: 'Hello world' })
}