web api instance property
Summarizer: expectedInputLanguages property
Limited availabilitySecure context
The expectedInputLanguages read-only property of the Summarizer interface returns the languages the Summarizer should support.
Value
An array of strings specifying the languages the Summarizer should support.
The strings should be valid BCP 47 language tags.
Examples
const summarizer = await Summarizer.create({
expectedInputLanguages: ["en-US", "fr"],
// ...
});
// Logs "en-US"
console.log(summarizer.expectedInputLanguages[0]);
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