Our new LangChain Academy course on Deep Agents is now live! Enroll for free.
OSS (v1-alpha)
LangChain and LangGraph
WikipediaQueryRun
import { WikipediaQueryRun } from "@langchain/community/tools/wikipedia_query_run"; const tool = new WikipediaQueryRun({ topKResults: 3, maxDocContentLength: 4000, }); const res = await tool.invoke("LangChain"); console.log(res);
Was this page helpful?