| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| import logging |
| from abc import ABC |
| import wikipedia |
| import pandas as pd |
| from agent.component.base import ComponentBase, ComponentParamBase |
|
|
|
|
| class WikipediaParam(ComponentParamBase): |
| """ |
| Define the Wikipedia component parameters. |
| """ |
|
|
| def __init__(self): |
| super().__init__() |
| self.top_n = 10 |
| self.language = "en" |
|
|
| def check(self): |
| self.check_positive_integer(self.top_n, "Top N") |
| self.check_valid_value(self.language, "Wikipedia languages", |
| ['af', 'pl', 'ar', 'ast', 'az', 'bg', 'nan', 'bn', 'be', 'ca', 'cs', 'cy', 'da', 'de', |
| 'et', 'el', 'en', 'es', 'eo', 'eu', 'fa', 'fr', 'gl', 'ko', 'hy', 'hi', 'hr', 'id', |
| 'it', 'he', 'ka', 'lld', 'la', 'lv', 'lt', 'hu', 'mk', 'arz', 'ms', 'min', 'my', 'nl', |
| 'ja', 'nb', 'nn', 'ce', 'uz', 'pt', 'kk', 'ro', 'ru', 'ceb', 'sk', 'sl', 'sr', 'sh', |
| 'fi', 'sv', 'ta', 'tt', 'th', 'tg', 'azb', 'tr', 'uk', 'ur', 'vi', 'war', 'zh', 'yue']) |
|
|
|
|
| class Wikipedia(ComponentBase, ABC): |
| component_name = "Wikipedia" |
|
|
| def _run(self, history, **kwargs): |
| ans = self.get_input() |
| ans = " - ".join(ans["content"]) if "content" in ans else "" |
| if not ans: |
| return Wikipedia.be_output("") |
|
|
| try: |
| wiki_res = [] |
| wikipedia.set_lang(self._param.language) |
| wiki_engine = wikipedia |
| for wiki_key in wiki_engine.search(ans, results=self._param.top_n): |
| page = wiki_engine.page(title=wiki_key, auto_suggest=False) |
| wiki_res.append({"content": '<a href="' + page.url + '">' + page.title + '</a> ' + page.summary}) |
| except Exception as e: |
| return Wikipedia.be_output("**ERROR**: " + str(e)) |
|
|
| if not wiki_res: |
| return Wikipedia.be_output("") |
|
|
| df = pd.DataFrame(wiki_res) |
| logging.debug(f"df: {df}") |
| return df |
|
|