Aggregate, filter, and curate content from across the web for newsletters, dashboards, and content hubs.
const articles = await client.search({
query: "AI startup funding round 2024",
maxResults: 50,
freshness: "week"
})
const curated = await client.summarize({
texts: articles.organic.map(a => a.snippet),
style: "newsletter",
maxLength: 200
})