Skip to content

@web-ai-sdk/proofreader

This package wraps the Web’s Built-in Proofreader API. It returns corrected text and an offset for each issue. It also provides session reuse and optional result caching.

Chrome labels Proofreader a Developer trial in its status table. The public origin trial for Chrome 141–145 has ended. For localhost, enable chrome://flags/#proofreader-api.

Edge provides a Canary/Dev preview from 142. Enable “Proofreader API for Phi mini.” Edge requires a High device-performance class or greater.

Without Proofreader, React reports "unavailable" and proofread() throws ProofreaderUnavailableError.

Terminal window
pnpm add @web-ai-sdk/proofreader
# or: npm i @web-ai-sdk/proofreader / bun add @web-ai-sdk/proofreader

The React adapter uses the /react subpath. react is an optional peer dependency.

import { proofread } from "@web-ai-sdk/proofreader";
const result = await proofread({
input: "I seen him yesterday at the store, and he bought two loafs of bread.",
expectedInputLanguages: ["en"],
});
console.log(result.output?.correctedInput);
for (const c of result.output?.corrections ?? []) {
console.log({
startIndex: c.startIndex,
endIndex: c.endIndex,
correction: c.correction,
});
}

result.output is null when the input is empty; otherwise correctedInput is the fully corrected text and corrections is the list of per-issue edits with offsets into the original input.

import { useProofreader } from "@web-ai-sdk/proofreader/react";
export function GrammarCheck({ text }: { text: string }) {
const { status, output } = useProofreader({ input: text });
if (status === "unavailable") return null;
if (status === "loading") return <p>Checking…</p>;
return <p>{output?.correctedInput}</p>;
}

State machine: idle | loading | done | unavailable. There is no streaming; proofread() resolves once. fromCache is true when the result came back without invoking the model.

proofread(options): Promise<ProofreadResult>

Section titled “proofread(options): Promise<ProofreadResult>”
interface ProofreadOptions {
input: string;
expectedInputLanguages?: readonly string[];
monitor?: (m: CreateMonitor) => void;
cache?: "session" | "local" | { get, set };
cacheKey?: string;
cacheTtl?: number; // built-in shortcut TTL in ms; default 1 hour
cacheRefresh?: boolean; // skip the cache read, write the fresh result
signal?: AbortSignal;
}
interface ProofreadCorrection {
startIndex: number; // inclusive offset into the original input
endIndex: number; // exclusive offset into the original input
correction: string; // suggested replacement
type?: string; // optional platform metadata
explanation?: string; // optional platform metadata
}
interface ProofreadOutput {
correctedInput: string;
corrections: ProofreadCorrection[];
}
interface ProofreadResult {
output: ProofreadOutput | null;
cached: boolean;
}

Feature-detect helper.

checkAvailability(options?): Promise<ProofreaderAvailability | null>

Section titled “checkAvailability(options?): Promise<ProofreaderAvailability | null>”

Forwards to the spec’s availability() call. Returns null if the global is missing or the call throws.

Drop every cached proofreader session. Sessions live for the tab lifetime by default.

configureProofreaderCache({ max }) bounds the internal warm Proofreader session cache (default 8). clearProofreaderSessions() drops every warm session, and clearProofreaderSession({ expectedInputLanguages }) drops one matching proofreader configuration. Clearing detaches sessions pinned by a lease or an in-flight call and destroys them when the last pin drops.

prepareProofreader(options?) starts native session creation when user intent is clear, before the input exists. It returns a ProofreaderLease:

interface ProofreaderLease {
ready: Promise<void>; // settles when native creation settles
release(): void; // idempotent
}
import { prepareProofreader, proofread } from "@web-ai-sdk/proofreader";
// User focused the editor; warm the session now.
const proofreaderModel = prepareProofreader({ expectedInputLanguages: ["en"] });
// The matching call reuses the prepared session with no second create.
const result = await proofread({
input: "I seen him yesterday at the store.",
expectedInputLanguages: ["en"],
});
// User left the editor.
proofreaderModel.release();
  • prepareProofreader never throws synchronously. Unavailability and creation failure reject ready with ProofreaderUnavailableError.
  • release() is idempotent. The final release destroys the session once no other lease or in-flight call uses it.
  • Releasing before creation settles destroys the session after creation succeeds.
  • Failed creation evicts the entry, so a later prepare retries.
  • Sessions with active leases never evict from the LRU cache.

Reuse requires the same session-affecting options as the proofread call. PrepareProofreaderOptions covers expectedInputLanguages. monitor observes creation only and never affects reuse.

Off by default; every call hits the model. Pass cache: "session" for sessionStorage, cache: "local" for localStorage, or any { get, set }-shaped object for a custom backend. The cache stores the serialized ProofreadOutput.

The built-in "session" / "local" shortcuts store each entry in a versioned envelope with an expiry time. Entries expire after one hour (DEFAULT_CACHE_TTL_MS) by default. Pass cacheTtl (milliseconds) to override the TTL per call. Expired entries, legacy raw strings, and malformed envelopes count as misses and are removed.

Pass cacheRefresh: true to force a fresh inference. The call skips the cache read, runs the model, and replaces the cached value after a successful run. Failed and aborted runs leave the cached value in place.

Custom { get, set } caches own their expiry policy. cacheTtl does not apply to them; cacheRefresh still bypasses their read and updates them after success.

// Cache for five minutes instead of one hour.
proofread({ input: text, cache: "local", cacheTtl: 5 * 60 * 1000 });
// Force a fresh inference; later calls reuse the new value.
proofread({ input: text, cache: "local", cacheRefresh: true });

The corrections offsets index into the original input, so you can highlight each error in place by slicing between offsets:

let cursor = 0;
const spans: Array<{ text: string; error: boolean }> = [];
for (const c of output.corrections) {
if (c.startIndex > cursor)
spans.push({ text: input.slice(cursor, c.startIndex), error: false });
spans.push({ text: input.slice(c.startIndex, c.endIndex), error: true });
cursor = c.endIndex;
}
if (cursor < input.length)
spans.push({ text: input.slice(cursor), error: false });

MIT © Beto Muniz