Skip to main content

WolframAlpha 工具

¥WolframAlpha Tool

WolframAlpha 工具将你的代理和链连接到 WolframAlpha 最先进的计算智能引擎。

¥The WolframAlpha tool connects your agents and chains to WolframAlpha's state-of-the-art computational intelligence engine.

设置

¥Setup

你需要从 WolframAlpha 门户 创建一个应用并获取 appid

¥You'll need to create an app from the WolframAlpha portal and obtain an appid.

用法

¥Usage

import { WolframAlphaTool } from "@langchain/community/tools/wolframalpha";

const tool = new WolframAlphaTool({
appid: "YOUR_APP_ID",
});

const res = await tool.invoke("What is 2 * 2?");

console.log(res);

API Reference:

¥Related