Skip to main content

Wikipedia tool

The WikipediaQueryRun tool connects your agents and chains to Wikipedia.

Usage

import { WikipediaQueryRun } from "langchain/tools";

const tool = new WikipediaQueryRun({
topKResults: 3,
maxDocContentLength: 4000,
});

const res = await tool.call("Langchain");

console.log(res);

API Reference: