Summarizer: length property
Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The length
read-only property of the Summarizer
interface returns the relative length of the generated summaries.
Value
An enumerated value specifying the relative length of the generated summaries, the exact nature of which depends on the Summarizer
type
value.
Possible values are:
short
-
A "short" summary
- For
type
tl;dr
andteaser
, the summary should fit into one sentence. - For
type
key-points
, the summary should be no more than three bullet points. - For
type
headline
, the summary should be no more than 12 words.
- For
medium
-
A "medium" summary
- For
type
tl;dr
andteaser
, the summary should fit into one short paragraph. - For
type
key-points
, the summary should be no more than five bullet points. - For
type
headline
, the summary should be no more than 17 words.
- For
long
-
A "long" summary
- For
type
tl;dr
andteaser
, the summary should fit into one paragraph. - For
type
key-points
, the summary should be no more than seven bullet points. - For
type
headline
, the summary should be no more than 22 words.
- For
Examples
js
const summarizer = await Summarizer.create({
length: "medium",
// ...
});
// Logs "medium"
console.log(summarizer.length);
Specifications
Specification |
---|
Writing Assistance APIs # dom-summarizer-length |
Browser compatibility
See also
- Using the Summarizer API
- Web AI demos on chrome.dev.