web api instance property
Summarizer: outputLanguage property
Limited availabilitySecure context
The outputLanguage read-only property of the Summarizer interface returns the language the summary should be generated in.
Value
A string specifying the language the summary should be generated in.
The string should be a valid BCP 47 language tag.
Examples
const summarizer = await Summarizer.create({
outputLanguage: "en-US",
// ...
});
// Logs "en-US"
console.log(summarizer.outputLanguage);
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.
See also
- Using the Summarizer API
- Web AI demos on chrome.dev