Skip to main content
1 credit per call

Method

services.ai.generateResearch(params);
Performs comprehensive web research on a topic using AI.

Input

query
string
required
Research query/topic

Output

content
string
Research report content

Example

const research = await services.ai.generateResearch({
  query: `What is ${ctx.thisRow.get(
    "Company"
  )}'s market position and recent news?`,
});

return research.content;