Skip to content

Summarize Page

Generates intelligent summaries of search result pages, helping users quickly understand large result sets without reading through every document. The system analyzes the content of all results on a given page and generates a detailed overview.

The summary system:

  • Identifies key themes and topics
  • Extracts important findings
  • Highlights document relationships
  • Provides content type distribution
import Raindrop from '@liquidmetal-ai/lm-raindrop';
const client = new Raindrop({
apiKey: process.env['RAINDROP_API_KEY'], // This is the default and can be omitted
});
async function main() {
const summarizePage = await client.summarizePage.create({ request_id: 'request_id' });
console.log(summarizePage.summary);
}
main();