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();
import osfrom lm_raindrop import Raindrop
client = Raindrop( api_key=os.environ.get("RAINDROP_API_KEY"), # This is the default and can be omitted)summarize_page = client.summarize_page.create( request_id="request_id",)print(summarize_page.summary)
package main
import ( "context" "fmt"
"github.com/LiquidMetal-AI/raindrop-go-sdk" "github.com/LiquidMetal-AI/raindrop-go-sdk/option")
func main() { client := raindrop.NewClient( option.WithAPIKey("My API Key"), // defaults to os.LookupEnv("RAINDROP_API_KEY") ) summarizePage, err := client.SummarizePage.New(context.TODO(), raindrop.SummarizePageNewParams{ RequestID: raindrop.F("request_id"), }) if err != nil { panic(err.Error()) } fmt.Printf("%+v\n", summarizePage.Summary)}
package com.raindrop.api.example;
import com.raindrop.api.client.RaindropClient;import com.raindrop.api.client.okhttp.RaindropOkHttpClient;import com.raindrop.api.models.summarizepage.SummarizePageCreateParams;import com.raindrop.api.models.summarizepage.SummarizePageCreateResponse;
public final class Main { private Main() {}
public static void main(String[] args) { // Configures using the `RAINDROP_API_KEY` environment variable RaindropClient client = RaindropOkHttpClient.fromEnv();
SummarizePageCreateParams params = SummarizePageCreateParams.builder() .requestId("request_id") .build(); SummarizePageCreateResponse summarizePage = client.summarizePage().create(params); }}