Our new LangChain Academy Course Deep Research with LangGraph is now live! Enroll for free.
OSS (v1-alpha)
LangChain and LangGraph
appid
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);