langchain.utilities.wikipedia.WikipediaAPIWrapper¶
- class langchain.utilities.wikipedia.WikipediaAPIWrapper(*, wiki_client: Any = None, top_k_results: int = 3, lang: str = 'en', load_all_available_meta: bool = False, doc_content_chars_max: int = 4000)[source]¶
Bases:
BaseModelWrapper around WikipediaAPI.
To use, you should have the
wikipediapython 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¶