WikipediaAPIWrapper#

class langchain_community.utilities.wikipedia.WikipediaAPIWrapper[source]#

Bases: BaseModel

Wrapper around WikipediaAPI.

To use, you should have the wikipedia python package installed. This wrapper will use the Wikipedia API to conduct searches and fetch page summaries. By default, it will return the page summaries of the top-k results. It limits the Document content by doc_content_chars_max.

Create a new model by parsing and validating input data from keyword arguments.

Raises ValidationError if the input data cannot be parsed to form a valid model.

param doc_content_chars_max: int = 4000#
param lang: str = 'en'#
param load_all_available_meta: bool = False#
param top_k_results: int = 3#
lazy_load(query: str) Iterator[Document][source]#

Run Wikipedia search and get the article text plus the meta information. See

Returns: a list of documents.

Parameters:

query (str) –

Return type:

Iterator[Document]

load(query: str) List[Document][source]#

Run Wikipedia search and get the article text plus the meta information. See

Returns: a list of documents.

Parameters:

query (str) –

Return type:

List[Document]

run(query: str) str[source]#

Run Wikipedia search and get page summaries.

Parameters:

query (str) –

Return type:

str

Examples using WikipediaAPIWrapper