Skip to main content
Google 趋势工具允许您的代理使用 SerpApi 的 Google 趋势 API 来检索和分析搜索兴趣数据。 这对于理解趋势主题、区域搜索兴趣以及搜索词的历史流行度非常有用。 有关 API 详细信息,请参阅 Google 趋势 API 文档 SerpApi 会缓存查询,因此第一次查询会较慢,而后续相同的查询会很快。 有时,相关查询可能无法工作,而随时间变化的兴趣数据则正常。您可以在 SerpApi 操练场检查您的查询

设置

要使用此工具,您需要配置对 SerpApi 的 Google 趋势 API 的访问权限。 SerpApi 获取 API 密钥。 然后,将您的 API 密钥设置为 process.env.SERPAPI_API_KEY 或将其作为 apiKey 构造函数参数传入。

用法

npm
npm install @langchain/openai @langchain/community @langchain/core
import { SERPGoogleTrendsTool } from "@langchain/community/tools/google_trends";

export async function run() {
  const tool = new SERPGoogleTrendsTool();

  const res = await tool.invoke("Monster");

  console.log(res);
}

相关内容