跳至主要内容

Google 地点工具

Google 地点工具允许您的代理使用 Google 地点 API 来查找地址、电话号码、网站等信息,这些信息来自 Google 地点上列出的有关位置的文本。

设置

您需要从 Google 这里 获取 API 密钥并 启用新的地点 API。然后,将您的 API 密钥设置为 process.env.GOOGLE_PLACES_API_KEY 或将其作为 apiKey 构造函数参数传递。

用法

npm install @langchain/openai @langchain/community @langchain/core
import { GooglePlacesAPI } from "@langchain/community/tools/google_places";
import { OpenAI } from "@langchain/openai";
import { initializeAgentExecutorWithOptions } from "langchain/agents";

export async function run() {
const model = new OpenAI({
temperature: 0,
});

const tools = [new GooglePlacesAPI()];

const executor = await initializeAgentExecutorWithOptions(tools, model, {
agentType: "zero-shot-react-description",
verbose: true,
});

const res = await executor.invoke({
input: "Where is the University of Toronto - Scarborough? ",
});

console.log(res.output);
}

API 参考


此页面是否有帮助?


您也可以在 GitHub 上留下详细的反馈 GitHub.